Summary: | Koha::Account->pay() does not exit specific fine loop when balance is used up | ||
---|---|---|---|
Product: | Koha | Reporter: | Nick Clemens (kidclamp) <nick> |
Component: | Fines and fees | Assignee: | Bugs List <koha-bugs> |
Status: | RESOLVED FIXED | QA Contact: | Testopia <testopia> |
Severity: | enhancement | ||
Priority: | P5 - low | CC: | jonathan.druart, martin.renvoize, tomascohen |
Version: | Main | ||
Hardware: | All | ||
OS: | All | ||
Change sponsored?: | --- | Patch complexity: | --- |
Documentation contact: | Documentation submission: | ||
Text to go in the release notes: | Version(s) released in: | ||
Circulation function: | |||
Bug Depends on: | |||
Bug Blocks: | 14825 |
Description
Nick Clemens (kidclamp)
2017-12-22 15:10:41 UTC
To recreate: 1 - Create a manual fine for a patron (or find one with fines) 2 - Check out an item to this patron 3 - Ensure the item has a lost charge 4 - Mark the item lost via a method that will not check it in (MarkLostItemsAsReturned syspref) 5 - Note the item is checked out to patron and they are charged 6 - From patron go to Accounting->Make a payment, select all, 'Pay selected' 7 - Enter an amount less than the value of the first fine and pay 8 - Payments are calculated correctly, however, the item is now checked in 9 - View the item on the 'items' tab of the biblio 10 - The 'Paid for?' section notes the item has been paid for 11 - Pay a partial amount again 12 - Paid for now has doubled info This could be solved by replacing ->pay for ->add_credit + ->apply (they were designed for that). I'll take a look! Hi Tomas, do you plan to work on this one? (In reply to Jonathan Druart from comment #3) > Hi Tomas, do you plan to work on this one? Not in a short term. Ask Martin, as he was working on replacement methods. In the described case, the API for adding credits against a list of debit lines could be used, and it wouldn't suffer from this. UX question.. currently, we just work through the selected items in the order they're sent to the routine I believe.. should there be a precedence for what types of charges are paid off first? The bug here was inadvertently fixed by bug 22982 in which a check on amountoutstanding was introduced. We should still short-circuit the loop at some point to prevent needless processing, but at this point that change is now an architectural enhancement rather a major bug. |