Lines 46-51
$maxlocation=$minlocation.'Z' unless ( $maxlocation || ! $minlocation );
Link Here
|
46 |
my $location=$input->param('location') || ''; |
46 |
my $location=$input->param('location') || ''; |
47 |
my $itemtype=$input->param('itemtype'); # FIXME note, template does not currently supply this |
47 |
my $itemtype=$input->param('itemtype'); # FIXME note, template does not currently supply this |
48 |
my $ignoreissued=$input->param('ignoreissued'); |
48 |
my $ignoreissued=$input->param('ignoreissued'); |
|
|
49 |
my $ignore_holds_waiting = $input->param('ignore_holds_waiting'); |
49 |
my $datelastseen = $input->param('datelastseen'); |
50 |
my $datelastseen = $input->param('datelastseen'); |
50 |
my $markseen = $input->param('markseen'); |
51 |
my $markseen = $input->param('markseen'); |
51 |
my $branchcode = $input->param('branchcode') || ''; |
52 |
my $branchcode = $input->param('branchcode') || ''; |
Lines 135-140
$template->param(
Link Here
|
135 |
maxlocation => $maxlocation, |
136 |
maxlocation => $maxlocation, |
136 |
location => $location, |
137 |
location => $location, |
137 |
ignoreissued => $ignoreissued, |
138 |
ignoreissued => $ignoreissued, |
|
|
139 |
ignore_holds_waiting => $ignore_holds_waiting, |
138 |
branchcode => $branchcode, |
140 |
branchcode => $branchcode, |
139 |
branch => $branch, |
141 |
branch => $branch, |
140 |
datelastseen => $datelastseen, |
142 |
datelastseen => $datelastseen, |
Lines 231-237
my @items_with_problems;
Link Here
|
231 |
if ( $markseen or $op ) { |
233 |
if ( $markseen or $op ) { |
232 |
# retrieve all items in this range. |
234 |
# retrieve all items in this range. |
233 |
my $totalrecords; |
235 |
my $totalrecords; |
234 |
($inventorylist, $totalrecords) = GetItemsForInventory($minlocation, $maxlocation, $location, $itemtype, $ignoreissued, '', $branchcode, $branch, 0, undef , $staton); |
236 |
($inventorylist, $totalrecords) = GetItemsForInventory($minlocation, $maxlocation, $location, $itemtype, $ignoreissued, $ignore_holds_waiting, '', $branchcode, $branch, 0, undef , $staton); |
235 |
} |
237 |
} |
236 |
|
238 |
|
237 |
# If "compare barcodes list to results" has been checked, we want to alert for missing items |
239 |
# If "compare barcodes list to results" has been checked, we want to alert for missing items |
238 |
- |
|
|