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 241-277
if ( $markseen or $op ) {
Link Here
|
241 |
|
243 |
|
242 |
# We use datelastseen only when comparing the results to the barcode file. |
244 |
# We use datelastseen only when comparing the results to the barcode file. |
243 |
my $paramdatelastseen = ($compareinv2barcd) ? $datelastseen : ''; |
245 |
my $paramdatelastseen = ($compareinv2barcd) ? $datelastseen : ''; |
244 |
($inventorylist, $totalrecords) = GetItemsForInventory( { |
246 |
( $inventorylist, $totalrecords ) = GetItemsForInventory( |
245 |
minlocation => $minlocation, |
247 |
{ |
246 |
maxlocation => $maxlocation, |
248 |
minlocation => $minlocation, |
247 |
location => $location, |
249 |
maxlocation => $maxlocation, |
248 |
itemtype => $itemtype, |
250 |
location => $location, |
249 |
ignoreissued => $ignoreissued, |
251 |
itemtype => $itemtype, |
250 |
datelastseen => $paramdatelastseen, |
252 |
ignoreissued => $ignoreissued, |
251 |
branchcode => $branchcode, |
253 |
datelastseen => $paramdatelastseen, |
252 |
branch => $branch, |
254 |
branchcode => $branchcode, |
253 |
offset => 0, |
255 |
branch => $branch, |
254 |
size => undef, |
256 |
offset => 0, |
255 |
statushash => $staton, |
257 |
size => undef, |
256 |
interface => 'staff', |
258 |
statushash => $staton, |
257 |
} ); |
259 |
interface => 'staff', |
|
|
260 |
ignore_holds_waiting => $ignore_holds_waiting, |
261 |
} |
262 |
); |
258 |
|
263 |
|
259 |
# For the items that may be marked as "wrong place", we only check the location (callnumbers, location and branch) |
264 |
# For the items that may be marked as "wrong place", we only check the location (callnumbers, location and branch) |
260 |
($wrongplacelist, $totalrecords) = GetItemsForInventory( { |
265 |
( $wrongplacelist, $totalrecords ) = GetItemsForInventory( |
261 |
minlocation => $minlocation, |
266 |
{ |
262 |
maxlocation => $maxlocation, |
267 |
minlocation => $minlocation, |
263 |
location => $location, |
268 |
maxlocation => $maxlocation, |
264 |
itemtype => undef, |
269 |
location => $location, |
265 |
ignoreissued => undef, |
270 |
itemtype => undef, |
266 |
datelastseen => undef, |
271 |
ignoreissued => undef, |
267 |
branchcode => $branchcode, |
272 |
datelastseen => undef, |
268 |
branch => $branch, |
273 |
branchcode => $branchcode, |
269 |
offset => 0, |
274 |
branch => $branch, |
270 |
size => undef, |
275 |
offset => 0, |
271 |
statushash => undef, |
276 |
size => undef, |
272 |
interface => 'staff', |
277 |
statushash => undef, |
273 |
} ); |
278 |
interface => 'staff', |
274 |
|
279 |
ignore_holds_waiting => $ignore_holds_waiting, |
|
|
280 |
} |
281 |
); |
275 |
} |
282 |
} |
276 |
|
283 |
|
277 |
# If "compare barcodes list to results" has been checked, we want to alert for missing items |
284 |
# If "compare barcodes list to results" has been checked, we want to alert for missing items |
278 |
- |
|
|