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

Nick Clemens <n...@bywatersolutions.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |n...@bywatersolutions.com

--- Comment #1 from Nick Clemens <n...@bywatersolutions.com> ---
The issue appears to be from incorrectly assigned 'accountno' in
Koha::Account->pay

 88     # We should remove accountno, it is no longer needed
 89     my $last = $self->lines->search(
 90         {},
 91         { order_by => 'accountno' } )->next();
 92     my $accountno = $last ? $last->accountno + 1 : 1;


The default order is ASC, so we end up assigning the lowest here

Then in C4::Circulation->_FixAccountForLostAndReturned

2387     # check for charge made for lost book
2388     my $accountlines = Koha::Account::Lines->search(
2389         {
2390             itemnumber  => $itemnumber,
2391             accounttype => { -in => [ 'L', 'Rep', 'W' ] },
2392         },
2393         {
2394             order_by => { -desc => [ 'date', 'accountno' ] }
2395         }
2396     );

We order the lines by accountno to get the most recent, however, the numbers
are wrong so we don't get the most recent payment or write off.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
_______________________________________________
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://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