From d51aeb7f9b498ba80470655161e654cc385c1062 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Fri, 11 Oct 2019 09:07:14 -0700 Subject: [PATCH] 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 Signed-off-by: Sean McGarvey Signed-off-by: Jonathan Druart Signed-off-by: Martin Renvoize --- members/pay.pl | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/members/pay.pl b/members/pay.pl index 32c8c36..5094a5f 100755 --- a/members/pay.pl +++ b/members/pay.pl @@ -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) ], -- 1.7.2.5