Lines 191-199
if ( $query->param('place_reserve') ) {
Link Here
|
191 |
foreach my $biblioNum (@biblionumbers) { |
191 |
foreach my $biblioNum (@biblionumbers) { |
192 |
my $itemNum = $query->param("checkitem_$biblioNum"); |
192 |
my $itemNum = $query->param("checkitem_$biblioNum"); |
193 |
my @itemnumbers = $query->param("checkitem_$biblioNum"); |
193 |
my @itemnumbers = $query->param("checkitem_$biblioNum"); |
194 |
my $branch = $query->param("branch_$biblioNum"); |
194 |
my $branch = $query->param("branch"); |
195 |
my $reqtype = $query->param("reqtype_$biblioNum"); |
195 |
my $reqtype = $query->param("reqtype_$biblioNum"); |
196 |
warn $biblioNum; |
|
|
197 |
if (!$reqtype) { |
196 |
if (!$reqtype) { |
198 |
#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. |
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. |
199 |
# Determine what the forced_hold_level is. |
198 |
# Determine what the forced_hold_level is. |
200 |
- |
|
|