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

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

Return to bug 20978