|
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 199-205
my @items_with_problems;
Link Here
|
| 199 |
if ( $markseen or $op ) { |
201 |
if ( $markseen or $op ) { |
| 200 |
# retrieve all items in this range. |
202 |
# retrieve all items in this range. |
| 201 |
my $totalrecords; |
203 |
my $totalrecords; |
| 202 |
($inventorylist, $totalrecords) = GetItemsForInventory($minlocation, $maxlocation, $location, $itemtype, $ignoreissued, '', $branchcode, $branch, 0, undef , $staton); |
204 |
($inventorylist, $totalrecords) = GetItemsForInventory($minlocation, $maxlocation, $location, $itemtype, $ignoreissued, $ignore_holds_waiting, '', $branchcode, $branch, 0, undef , $staton); |
| 203 |
} |
205 |
} |
| 204 |
|
206 |
|
| 205 |
# If "compare barcodes list to results" has been checked, we want to alert for missing items |
207 |
# If "compare barcodes list to results" has been checked, we want to alert for missing items |
| 206 |
- |
|
|