https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=37188
--- Comment #5 from Nick Clemens (kidclamp) <[email protected]> --- Created attachment 169612 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=169612&action=edit Bug 37188: Allow batch modification of borrowers from reports with cardnumber or borrowernumber Some libraries do not use cardnumbers for their patrons, but would still like to be able to batch modify patrons from reports. Borrowernumber is going to be authoritative - every borrower will have one - so if this column is included in the results we should offer batch modification. If we have cardnumber, we can use that. If we have both, we should use borrowernumber To test: 1 - Write a report like: SELECT cardnumber FROM borrowers ORDER BY rand() LIMIT 35 2 - Run report 3 - Click "Batch operations.." -> "Batch patron modification" 4 - Confirm it works 5 - Edit report: SELECT borrowernumber FROM borrowers ORDER BY rand() LIMIT 35 6 - Run report 7 - No option for batch modifying patrons 8 - Apply patch 9 - Run report 10 - The option for batch modificatoin now shows 11 - Confirm both batch operation types work from report 12 - Edit report: SELECT cardnumber,borrowernumber FROM borrowers ORDER BY rand() LIMIT 35 13 - Run report 14 - Confirm both batch operations work -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. _______________________________________________ Koha-bugs mailing list [email protected] https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
