Lines 812-818
sub CancelExpiredReserves {
Link Here
|
812 |
next if !$cancel_on_holidays && $calendar->is_holiday( $today ); |
812 |
next if !$cancel_on_holidays && $calendar->is_holiday( $today ); |
813 |
|
813 |
|
814 |
my $cancel_params = {}; |
814 |
my $cancel_params = {}; |
815 |
if ( $holds->found eq 'W' ) { |
815 |
if ( $hold->found eq 'W' ) { |
816 |
$cancel_params->{charge_cancel_fee} = 1; |
816 |
$cancel_params->{charge_cancel_fee} = 1; |
817 |
} |
817 |
} |
818 |
$hold->cancel( $cancel_params ); |
818 |
$hold->cancel( $cancel_params ); |
819 |
- |
|
|