From 85e397726d229859c702b8ede389efb36d766eff Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Thu, 17 Jan 2013 08:43:37 -0500 Subject: [PATCH] [SIGNED-OFF] Bug 9380 - branch not recording right on writeoff Test Plan: 1) Write off fines as various branches 2) Observe the stats lines include the wrong branchcode 3) Apply patch 4) Repeate step 1 5) Observe the stats lines include the correct branchcode Signed-off-by: Nicole C. Engard Also tested by changing branch and writing off again - all tests pass. Signed-off-by: Owen Leonard Signed-off-by: Katrin Fischer Checked individual and complete write off for different branches. Write offs were always recorded correctly for the logged in branch. All tests and QA script pas. --- members/pay.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/members/pay.pl b/members/pay.pl index 7580daf..a08e372 100755 --- a/members/pay.pl +++ b/members/pay.pl @@ -89,7 +89,7 @@ if ($writeoff_all) { my $itemno = $input->param('itemnumber'); my $account_type = $input->param('accounttype'); my $amount = $input->param('amountoutstanding'); - WriteOffFee( $borrowernumber, $accountlines_id, $itemno, $account_type, $amount, $branch ); + WriteOffFee( $borrowernumber, $accountlines_id, $itemno, $account_type, $amount ); } for (@names) { @@ -205,7 +205,7 @@ sub writeoff_all { my $amount = $input->param("amountoutstanding$value"); my $accountno = $input->param("accountno$value"); my $accountlines_id = $input->param("accountlines_id$value"); - WriteOffFee( $borrowernumber, $accountlines_id, $itemno, $accounttype, $amount, $branch ); + WriteOffFee( $borrowernumber, $accountlines_id, $itemno, $accounttype, $amount ); } } -- 1.7.9.5