Lines 190-198
if ( $query->param('place_reserve') ) {
Link Here
|
190 |
foreach my $biblioNum (@biblionumbers) { |
190 |
foreach my $biblioNum (@biblionumbers) { |
191 |
my $itemNum = $query->param("checkitem_$biblioNum"); |
191 |
my $itemNum = $query->param("checkitem_$biblioNum"); |
192 |
my @itemnumbers = $query->param("checkitem_$biblioNum"); |
192 |
my @itemnumbers = $query->param("checkitem_$biblioNum"); |
193 |
my $branch = $query->param("branch_$biblioNum"); |
193 |
my $branch = $query->param("branch"); |
194 |
my $reqtype = $query->param("reqtype_$biblioNum"); |
194 |
my $reqtype = $query->param("reqtype_$biblioNum"); |
195 |
warn $biblioNum; |
|
|
196 |
if (!$reqtype) { |
195 |
if (!$reqtype) { |
197 |
#If no $reqtype value has been passed from the form this means both reqany and reqspecific radio buttons are disabled because a hold has been placed on this biblio previously and so a forced_hold_level exists. |
196 |
#If no $reqtype value has been passed from the form this means both reqany and reqspecific radio buttons are disabled because a hold has been placed on this biblio previously and so a forced_hold_level exists. |
198 |
# Determine what the forced_hold_level is. |
197 |
# Determine what the forced_hold_level is. |
199 |
- |
|
|