From 9835496bd667a9fee3783ab339fd9e9d5060490e Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Thu, 18 Mar 2021 10:23:57 +0000 Subject: [PATCH] Bug 22435: Fix CREATE offset amounts Updateing the tests highlighted a mistake in the original code.. the offsets for the cancel and reduce creation lines were incorrectly signed. --- Koha/Account/Line.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Koha/Account/Line.pm b/Koha/Account/Line.pm index b23b3b3b42..97a30888b0 100644 --- a/Koha/Account/Line.pm +++ b/Koha/Account/Line.pm @@ -417,7 +417,7 @@ sub cancel { { credit_id => $cancellation->accountlines_id, type => 'CREATE', - amount => $self->amount + amount => 0 - $self->amount } )->store(); @@ -536,7 +536,7 @@ sub reduce { { credit_id => $reduction->accountlines_id, type => 'CREATE', - amount => $params->{amount} + amount => 0 - $params->{amount} } )->store(); -- 2.20.1