Lines 151-157
my @errorloop;
Link Here
|
151 |
if ( $uploadbarcodes && length($uploadbarcodes) > 0 ) { |
151 |
if ( $uploadbarcodes && length($uploadbarcodes) > 0 ) { |
152 |
my $dbh = C4::Context->dbh; |
152 |
my $dbh = C4::Context->dbh; |
153 |
my $date = dt_from_string( $input->param('setdate') ); |
153 |
my $date = dt_from_string( $input->param('setdate') ); |
154 |
$date = output_pref( $date, 'iso' ); |
154 |
$date = output_pref ( { dt => $date, dateformat => 'iso' } ); |
155 |
|
155 |
|
156 |
my $strsth = "select * from issues, items where items.itemnumber=issues.itemnumber and items.barcode =?"; |
156 |
my $strsth = "select * from issues, items where items.itemnumber=issues.itemnumber and items.barcode =?"; |
157 |
my $qonloan = $dbh->prepare($strsth); |
157 |
my $qonloan = $dbh->prepare($strsth); |
158 |
- |
|
|