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

(-)a/Koha/Account.pm (-9 / +10 lines)
Lines 451-460 sub non_issues_charges { Link Here
451
=cut
451
=cut
452
452
453
our $offset_type = {
453
our $offset_type = {
454
    'credit'   => 'Payment',
454
    'credit'           => 'Payment',
455
    'forgiven' => 'Writeoff',
455
    'forgiven'         => 'Writeoff',
456
    'payment'  => 'Payment',
456
    'lost_item_return' => 'Lost Item Return',
457
    'writeoff' => 'Writeoff'
457
    'payment'          => 'Payment',
458
    'writeoff'         => 'Writeoff'
458
};
459
};
459
460
460
=head3 $account_type
461
=head3 $account_type
Lines 462-471 our $offset_type = { Link Here
462
=cut
463
=cut
463
464
464
our $account_type = {
465
our $account_type = {
465
    'credit'   => 'C',
466
    'credit'           => 'C',
466
    'forgiven' => 'FOR',
467
    'forgiven'         => 'FOR',
467
    'payment'  => 'Pay',
468
    'lost_item_return' => 'CR',
468
    'writeoff' => 'W'
469
    'payment'          => 'Pay',
470
    'writeoff'         => 'W'
469
};
471
};
470
472
471
=head1 AUTHOR
473
=head1 AUTHOR
472
- 

Return to bug 20978