https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=39233
David Nind <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the| |This fixes the release notes| |misc/cronjobs/update_patron | |s_category.pl script so | |that non-patron guarantor | |information is removed when | |the patron category is | |changed (for example, from | |a child to an adult | |patron). | | | |This now matches | |what happens when changing | |the patron category when a | |patron has patron | |guarantors (that is, the | |guarantor information is | |removed). CC| |[email protected] --- Comment #3 from David Nind <[email protected]> --- Testing notes (using KTD): 1. If I try to update the patron's age in the staff interface, I get this message: The following fields are wrong. Please fix them. - Patron's age is incorrect for their category. Ages allowed are 5-17. 2. You can't save the patron until you fix the category. 3. Instead, I updated in the database: update borrowers set dateofbirth="2000-05-01" where borrowernumber="37"; 4. After the patch is applied, update the patron again using the database to set the patron category back to "K": update borrowers set categorycode="K" where borrowernumber="37"; -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ 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/
