From 848b9c08cde726e6980db5f41336c75a2c7b4afa 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 89398a58c4..b7490cab53 100644 --- a/Koha/Account.pm +++ b/Koha/Account.pm @@ -452,10 +452,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 @@ -463,10 +464,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.17.1