From f977292be768ed6c2e17c3cbbcdebc0cb306025f Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Thu, 21 Jun 2018 13:33:46 -0300 Subject: [PATCH] Bug 20978: (follow-up) Another use case from C4::Circulation --- Koha/Account.pm | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/Koha/Account.pm b/Koha/Account.pm index f5a13f8433..7838dcfa02 100644 --- a/Koha/Account.pm +++ b/Koha/Account.pm @@ -457,10 +457,11 @@ sub non_issues_charges { =cut our $offset_type = { - 'credit' => 'Payment', - 'forgiven' => 'Writeoff', - 'payment' => 'Payment', - 'writeoff' => 'Writeoff' + 'credit' => 'Payment', + 'forgiven' => 'Writeoff', + 'lost_item_return' => 'Lost Item Return', + 'payment' => 'Payment', + 'writeoff' => 'Writeoff' }; =head3 $account_type @@ -468,10 +469,11 @@ our $offset_type = { =cut our $account_type = { - 'credit' => 'C', - 'forgiven' => 'FOR', - 'payment' => 'Pay', - 'writeoff' => 'W' + 'credit' => 'C', + 'forgiven' => 'FOR', + 'lost_item_return' => 'CR', + 'payment' => 'Pay', + 'writeoff' => 'W' }; =head1 AUTHOR -- 2.18.0