Summary: | quick slip: renewals do not appear on quick slips | ||
---|---|---|---|
Product: | Koha | Reporter: | Liz Rea <wizzyrea> |
Component: | Circulation | Assignee: | Bugs List <koha-bugs> |
Status: | CLOSED FIXED | QA Contact: | Jonathan Druart <jonathan.druart> |
Severity: | normal | ||
Priority: | P5 - low | CC: | chris, gmcharlt, jonathan.druart, kyle.m.hall, kyle, liz |
Version: | 3.8 | ||
Hardware: | All | ||
OS: | All | ||
GIT URL: | Change sponsored?: | --- | |
Patch complexity: | Trivial patch | Documentation contact: | |
Documentation submission: | Text to go in the release notes: | ||
Version(s) released in: | Circulation function: | ||
Attachments: |
Bug 8682 - Renewals do not appear on quick slips
[SIGNED-OFF] Bug 8682 - Renewals do not appear on quick slips Bug 8682 - Renewals do not appear on quick slips |
Description
Liz Rea
2012-08-23 18:57:49 UTC
Created attachment 14968 [details] [review] Bug 8682 - Renewals do not appear on quick slips To test: Issue two books to a patron. Do a renewal on one of them. update the issuedate on the item that has been renewed to something before today (renewals on the same day will work even without this patch) I did: select * from issues; update issues set issuedate="2013-01-25 14:00:00" where itemnumber = 948; (itemnumber is variable depending on your test data.) Print a quick slip before the patch - the renewal will not show up as one of today's issues. Print a quick slip after the patch - the renewal will show up as one of today's issues. If you need reasoning as to why a renewal should show up on the quick slip, think of it as a record of everything a borrower did today, without the hassle of overdues. Created attachment 15003 [details] [review] [SIGNED-OFF] Bug 8682 - Renewals do not appear on quick slips To test: Issue two books to a patron. Do a renewal on one of them. update the issuedate on the item that has been renewed to something before today (renewals on the same day will work even without this patch) I did: select * from issues; update issues set issuedate="2013-01-25 14:00:00" where itemnumber = 948; (itemnumber is variable depending on your test data.) Print a quick slip before the patch - the renewal will not show up as one of today's issues. Print a quick slip after the patch - the renewal will show up as one of today's issues. If you need reasoning as to why a renewal should show up on the quick slip, think of it as a record of everything a borrower did today, without the hassle of overdues. Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> QA comment: Simple patch. With the patch renewals appears on quick slips. Marked as Passed QA. Created attachment 15551 [details] [review] Bug 8682 - Renewals do not appear on quick slips To test: Issue two books to a patron. Do a renewal on one of them. update the issuedate on the item that has been renewed to something before today (renewals on the same day will work even without this patch) I did: select * from issues; update issues set issuedate="2013-01-25 14:00:00" where itemnumber = 948; (itemnumber is variable depending on your test data.) Print a quick slip before the patch - the renewal will not show up as one of today's issues. Print a quick slip after the patch - the renewal will show up as one of today's issues. If you need reasoning as to why a renewal should show up on the quick slip, think of it as a record of everything a borrower did today, without the hassle of overdues. Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> Signed-off-by: Jonathan Druart <jonathan.druart@biblibre.com> This patch has been pushed to master. Pushed to 3.10.x and 3.8.x will be 3.10.4 and 3.8.11 |