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

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

Return to bug 20978