Bug 23806: FinePaymentAutoPopup does not trigger pop-up for writeoff by "Write off" button

Test Plan:
1) Enable reciept popups for payments and writeoffs
2) Test the "Write off" button, no popup
3) Apply this patch
4) Restart all the things!
5) Test again, you should get the popup!

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Signed-off-by: Sean McGarvey <seanm@pascolibraries.org>
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
This commit is contained in:
Kyle Hall 2019-10-11 09:07:14 -07:00 committed by Martin Renvoize
parent 119347c76e
commit d51aeb7f9b
Signed by: martin.renvoize
GPG key ID: 422B469130441A0F

View file

@ -112,7 +112,7 @@ elsif ( $input->param('confirm_writeoff') ) {
. "&error_over=1" );
} else {
Koha::Account->new( { patron_id => $borrowernumber } )->pay(
$payment_id = Koha::Account->new( { patron_id => $borrowernumber } )->pay(
{
amount => $amount,
lines => [ scalar Koha::Account::Lines->find($accountlines_id) ],