Lines 275-281
if ( $markseen or $op ) {
Link Here
|
275 |
|
275 |
|
276 |
# If "compare barcodes list to results" has been checked, we want to alert for missing items |
276 |
# If "compare barcodes list to results" has been checked, we want to alert for missing items |
277 |
if ( $compareinv2barcd ) { |
277 |
if ( $compareinv2barcd ) { |
278 |
# set "missing" flags for all items with a datelastseen (dls) before the choosen datelastseen (cdls) |
278 |
# set "missing" flags for all items with a datelastseen (dls) before the chosen datelastseen (cdls) |
279 |
my $dls = output_pref( { dt => dt_from_string( $datelastseen ), |
279 |
my $dls = output_pref( { dt => dt_from_string( $datelastseen ), |
280 |
dateformat => 'iso' } ); |
280 |
dateformat => 'iso' } ); |
281 |
foreach my $item ( @$inventorylist ) { |
281 |
foreach my $item ( @$inventorylist ) { |
Lines 292-298
if ( $compareinv2barcd ) {
Link Here
|
292 |
|
292 |
|
293 |
|
293 |
|
294 |
# insert "wrongplace" to all scanned items that are not supposed to be in this range |
294 |
# insert "wrongplace" to all scanned items that are not supposed to be in this range |
295 |
# note this list is always displayed, whatever the librarian has choosen for comparison |
295 |
# note this list is always displayed, whatever the librarian has chosen for comparison |
296 |
my $moddatecount = 0; |
296 |
my $moddatecount = 0; |
297 |
foreach my $item ( @scanned_items ) { |
297 |
foreach my $item ( @scanned_items ) { |
298 |
|
298 |
|