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