From 573c5e469fcb35aa3ef137c7cdff61f604bdd4db Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Fri, 22 Feb 2019 09:29:49 +0000 Subject: [PATCH] Bug 21756: (QA follow-up) Add `Account Fee` mapping Required for add_enrolement_fee_if_needed within Koha::Patron Signed-off-by: Martin Renvoize Signed-off-by: Kyle M Hall --- Koha/Account.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Koha/Account.pm b/Koha/Account.pm index 2bcd062d7d..ef8a20f4eb 100644 --- a/Koha/Account.pm +++ b/Koha/Account.pm @@ -692,6 +692,7 @@ our $offset_type = { 'lost_item_return' => 'Lost Item', 'payment' => 'Payment', 'writeoff' => 'Writeoff', + 'account' => 'Account Fee', 'reserve' => 'Reserve Fee', 'processing' => 'Processing Fee', 'lost_item' => 'Lost Item', @@ -718,10 +719,10 @@ our $account_type_credit = { =cut our $account_type_debit = { + 'account' => 'A', 'fine' => 'FU', 'lost_item' => 'L', 'new_card' => 'N', - 'account' => 'A', 'sundry' => 'M', 'processing' => 'PF', 'rent' => 'Rent', -- 2.17.2 (Apple Git-113)