Lines 415-422
elsif ($op eq "add-branch-cat") {
Link Here
|
415 |
my $patron_maxonsiteissueqty = $input->param('patron_maxonsiteissueqty'); |
415 |
my $patron_maxonsiteissueqty = $input->param('patron_maxonsiteissueqty'); |
416 |
$patron_maxonsiteissueqty = strip_non_numeric($patron_maxonsiteissueqty); |
416 |
$patron_maxonsiteissueqty = strip_non_numeric($patron_maxonsiteissueqty); |
417 |
my $max_holds = $input->param('max_holds'); |
417 |
my $max_holds = $input->param('max_holds'); |
418 |
$max_holds =~ s/\s//g; |
418 |
$max_holds = strip_non_numeric($max_holds); |
419 |
$max_holds = undef if $max_holds !~ /^\d+/; |
|
|
420 |
|
419 |
|
421 |
if ($branch eq "*") { |
420 |
if ($branch eq "*") { |
422 |
if ($categorycode eq "*") { |
421 |
if ($categorycode eq "*") { |
423 |
- |
|
|