@@ -, +, @@ --- Koha/Account.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- a/Koha/Account.pm +++ a/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', --