http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10490 Bug ID: 10490 Summary: Overdue fines cap (amount) in circulation rules rounds Classification: Unclassified Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: major Priority: P5 - low Component: Circulation Assignee: koha-bugs@lists.koha-community.org Reporter: katrin.fischer@bsz-bw.de CC: gmcharlt@gmail.com, kyle.m.hall@gmail.com To test: 1) Add a new circulation rule, give 4.50 for overdue fines cap.
Verify the system saves it to be 5.00
2) Edit an existing circulation rule, give 3.40 for overdue fines cap.
Verify the system saves it to be 3.00
Obviously, that's not good and especially bad because most of our libraries have standardized on 4.50. Maybe there is a problem with the datatype definition in the kohastructure.sql? We have: overduefinescap decimal default NULL, -- the maximum amount of an overdue fine In opposite to: reservecharge decimal(28,6) default NULL, I couldn't test it, but the definition is the same for kohastructure and update database. So a bit worried that we might change the data here on update instead of copying it correctly from the system preference into issuingrules. The feature was added with bug 7420. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.