Lines 456-462
$debit_type can be any of:
Link Here
|
456 |
- rent_daily |
456 |
- rent_daily |
457 |
- rent_renew |
457 |
- rent_renew |
458 |
- rent_daily_renew |
458 |
- rent_daily_renew |
459 |
- reserve |
459 |
- RESERVE |
460 |
- manual_debit |
460 |
- manual_debit |
461 |
|
461 |
|
462 |
=cut |
462 |
=cut |
Lines 632-638
sub non_issues_charges {
Link Here
|
632 |
#NOTE: With bug 23049 these preferences could be moved to being attached |
632 |
#NOTE: With bug 23049 these preferences could be moved to being attached |
633 |
#to individual debit types to give more flexability and specificity. |
633 |
#to individual debit types to give more flexability and specificity. |
634 |
my @not_fines; |
634 |
my @not_fines; |
635 |
push @not_fines, 'Res' |
635 |
push @not_fines, 'RESERVE' |
636 |
unless C4::Context->preference('HoldsInNoissuesCharge'); |
636 |
unless C4::Context->preference('HoldsInNoissuesCharge'); |
637 |
push @not_fines, ( 'RENT', 'RENT_DAILY', 'RENT_RENEW', 'RENT_DAILY_RENEW' ) |
637 |
push @not_fines, ( 'RENT', 'RENT_DAILY', 'RENT_RENEW', 'RENT_DAILY_RENEW' ) |
638 |
unless C4::Context->preference('RentalsInNoissuesCharge'); |
638 |
unless C4::Context->preference('RentalsInNoissuesCharge'); |
Lines 711-717
our $offset_type = {
Link Here
|
711 |
'writeoff' => 'Writeoff', |
711 |
'writeoff' => 'Writeoff', |
712 |
'account' => 'Account Fee', |
712 |
'account' => 'Account Fee', |
713 |
'account_renew' => 'Account Fee', |
713 |
'account_renew' => 'Account Fee', |
714 |
'reserve' => 'Reserve Fee', |
714 |
'RESERVE' => 'Reserve Fee', |
715 |
'processing' => 'Processing Fee', |
715 |
'processing' => 'Processing Fee', |
716 |
'lost_item' => 'Lost Item', |
716 |
'lost_item' => 'Lost Item', |
717 |
'rent' => 'Rental Fee', |
717 |
'rent' => 'Rental Fee', |
Lines 752-758
our $account_type_debit = {
Link Here
|
752 |
'rent_daily' => 'RENT_DAILY', |
752 |
'rent_daily' => 'RENT_DAILY', |
753 |
'rent_renew' => 'RENT_RENEW', |
753 |
'rent_renew' => 'RENT_RENEW', |
754 |
'rent_daily_renew' => 'RENT_DAILY_RENEW', |
754 |
'rent_daily_renew' => 'RENT_DAILY_RENEW', |
755 |
'reserve' => 'Res', |
755 |
'RESERVE' => 'RESERVE', |
756 |
'manual_debit' => 'M' |
756 |
'manual_debit' => 'M' |
757 |
}; |
757 |
}; |
758 |
|
758 |
|