View | Details | Raw Unified | Return to bug 20978
Collapse All | Expand All

(-)a/Koha/Account.pm (-9 / +10 lines)
Lines 476-485 sub non_issues_charges { Link Here
476
=cut
476
=cut
477
477
478
our $offset_type = {
478
our $offset_type = {
479
    'credit'   => 'Payment',
479
    'credit'           => 'Payment',
480
    'forgiven' => 'Writeoff',
480
    'forgiven'         => 'Writeoff',
481
    'payment'  => 'Payment',
481
    'lost_item_return' => 'Lost Item Return',
482
    'writeoff' => 'Writeoff'
482
    'payment'          => 'Payment',
483
    'writeoff'         => 'Writeoff'
483
};
484
};
484
485
485
=head3 $account_type
486
=head3 $account_type
Lines 487-496 our $offset_type = { Link Here
487
=cut
488
=cut
488
489
489
our $account_type = {
490
our $account_type = {
490
    'credit'   => 'C',
491
    'credit'           => 'C',
491
    'forgiven' => 'FOR',
492
    'forgiven'         => 'FOR',
492
    'payment'  => 'Pay',
493
    'lost_item_return' => 'CR',
493
    'writeoff' => 'W'
494
    'payment'          => 'Pay',
495
    'writeoff'         => 'W'
494
};
496
};
495
497
496
=head1 AUTHOR
498
=head1 AUTHOR
497
- 

Return to bug 20978