Lines 242-247
if ( $step == 5 ) {
Link Here
|
242 |
my $lengthunit = $input->param('lengthunit'); |
242 |
my $lengthunit = $input->param('lengthunit'); |
243 |
my $renewalsallowed = $input->param('renewalsallowed'); |
243 |
my $renewalsallowed = $input->param('renewalsallowed'); |
244 |
my $renewalperiod = $input->param('renewalperiod'); |
244 |
my $renewalperiod = $input->param('renewalperiod'); |
|
|
245 |
my $reservesallowed = $input->param('reservesallowed'); |
246 |
my $holds_per_day = $input->param('holds_per_day'); |
247 |
my $holds_per_record = $input->param('holds_per_record'); |
245 |
my $onshelfholds = $input->param('onshelfholds') || 0; |
248 |
my $onshelfholds = $input->param('onshelfholds') || 0; |
246 |
$maxissueqty =~ s/\s//g; |
249 |
$maxissueqty =~ s/\s//g; |
247 |
$maxissueqty = undef if $maxissueqty !~ /^\d+/; |
250 |
$maxissueqty = undef if $maxissueqty !~ /^\d+/; |
Lines 267-274
if ( $step == 5 ) {
Link Here
|
267 |
firstremind => 0, |
270 |
firstremind => 0, |
268 |
hardduedate => "", |
271 |
hardduedate => "", |
269 |
hardduedatecompare => -1, |
272 |
hardduedatecompare => -1, |
270 |
holds_per_day => undef, |
273 |
holds_per_day => $holds_per_day, |
271 |
holds_per_record => 1, |
274 |
holds_per_record => $holds_per_record, |
272 |
maxissueqty => "", |
275 |
maxissueqty => "", |
273 |
maxonsiteissueqty => "", |
276 |
maxonsiteissueqty => "", |
274 |
maxsuspensiondays => "", |
277 |
maxsuspensiondays => "", |
Lines 278-284
if ( $step == 5 ) {
Link Here
|
278 |
opacitemholds => "N", |
281 |
opacitemholds => "N", |
279 |
overduefinescap => "", |
282 |
overduefinescap => "", |
280 |
rentaldiscount => 0, |
283 |
rentaldiscount => 0, |
281 |
reservesallowed => 0, |
284 |
reservesallowed => $reservesallowed, |
282 |
suspension_chargeperiod => undef, |
285 |
suspension_chargeperiod => undef, |
283 |
} |
286 |
} |
284 |
}; |
287 |
}; |