From 472fc990ad000864df81c6ea068771a6ee9991d3 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 Management Fee` mapping Required for add_enrolement_fee_if_needed within Koha::Patron Signed-off-by: Martin Renvoize --- Koha/Account.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Koha/Account.pm b/Koha/Account.pm index 2bcd062d7d..c8f63807b0 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 Management 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.20.1