https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38477

David Nind <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |release-notes-needed

--- Comment #10 from David Nind <[email protected]> ---
Thanks Andrew!

Testing notes (using KTD):
1. Rule that charges fines:
   - Edit the All All rule
   - Fine amount: 1.00
   - Fine charging interval: 5
2. Scroll down to the heading "Default lost item fee refund on return policy"
and change:
   - "Refund lost item charge" to "Refund lost item charge and charge new
overdue fine"
3. I used Programming Perl (item 39999000011418):
   - Set 952$v - Cost, replacement price to 50.00
   - First check out to Mary Burton - set due date to 1 May 2025
   - Second check out to Lisa Charles - set due date to 
4. Running the fines cronjob:  misc/cronjobs/fines.pl -v
   Output:
     Fines assessment -- 2025-05-22T21:47:57
     Number of Overdue Items:
        counted 1
       reported 1
        updated 1
5. SQL (using the above patron and item number):
   - UPDATE old_issues SET old_issues.date_due='2025-01-01 12:00:00' WHERE
old_issues.borrowernumber=37 AND old_issues.itemnumber=578;
6. After the patch:
   - I used CGI programming with Perl (item 39999000000498), set 952$v - Cost,
replacement price to 25.00
   - SQL = UPDATE old_issues SET old_issues.date_due='2025-01-01 12:00:00'
WHERE old_issues.borrowernumber=37 AND old_issues.itemnumber=32;
7. Run the tests, these should pass: prove t/db_dependent/Circulation.t

-- 
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/

Reply via email to