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

(-)a/Koha/Account.pm (-9 / +10 lines)
Lines 489-498 sub non_issues_charges { Link Here
489
=cut
489
=cut
490
490
491
our $offset_type = {
491
our $offset_type = {
492
    'credit'   => 'Payment',
492
    'credit'           => 'Payment',
493
    'forgiven' => 'Writeoff',
493
    'forgiven'         => 'Writeoff',
494
    'payment'  => 'Payment',
494
    'lost_item_return' => 'Lost Item Return',
495
    'writeoff' => 'Writeoff'
495
    'payment'          => 'Payment',
496
    'writeoff'         => 'Writeoff'
496
};
497
};
497
498
498
=head3 $account_type
499
=head3 $account_type
Lines 500-509 our $offset_type = { Link Here
500
=cut
501
=cut
501
502
502
our $account_type = {
503
our $account_type = {
503
    'credit'   => 'C',
504
    'credit'           => 'C',
504
    'forgiven' => 'FOR',
505
    'forgiven'         => 'FOR',
505
    'payment'  => 'Pay',
506
    'lost_item_return' => 'CR',
506
    'writeoff' => 'W'
507
    'payment'          => 'Pay',
508
    'writeoff'         => 'W'
507
};
509
};
508
510
509
=head1 AUTHOR
511
=head1 AUTHOR
510
- 

Return to bug 20978