From 88fc178523dfd30c151f9d2e49366faf49fed802 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 Signed-off-by: Josef Moravec Signed-off-by: Kyle M Hall --- Koha/Account.pm | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/Koha/Account.pm b/Koha/Account.pm index 6fe1a84d02..607d55287e 100644 --- a/Koha/Account.pm +++ b/Koha/Account.pm @@ -476,10 +476,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 @@ -487,10 +488,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