|
Lines 162-168
for my $barcode ( @$barcodes ) {
Link Here
|
| 162 |
|
162 |
|
| 163 |
my $stickyduedate = $query->param('stickyduedate') || $session->param('stickyduedate'); |
163 |
my $stickyduedate = $query->param('stickyduedate') || $session->param('stickyduedate'); |
| 164 |
my $duedatespec = $query->param('duedatespec') || $session->param('stickyduedate'); |
164 |
my $duedatespec = $query->param('duedatespec') || $session->param('stickyduedate'); |
| 165 |
$duedatespec = eval { output_pref( { dt => dt_from_string( $duedatespec ), dateformat => 'iso' }); } |
165 |
$duedatespec = eval { output_pref( { dt => dt_from_string( $duedatespec ), dateformat => 'iso', timeformat => '24hr' }); } |
| 166 |
if ( $duedatespec ); |
166 |
if ( $duedatespec ); |
| 167 |
my $restoreduedatespec = $query->param('restoreduedatespec') || $session->param('stickyduedate') || $duedatespec; |
167 |
my $restoreduedatespec = $query->param('restoreduedatespec') || $session->param('stickyduedate') || $duedatespec; |
| 168 |
if ( $restoreduedatespec && $restoreduedatespec eq "highholds_empty" ) { |
168 |
if ( $restoreduedatespec && $restoreduedatespec eq "highholds_empty" ) { |
| 169 |
- |
|
|