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

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

Return to bug 20978