Lines 769-775
sub BatchCommitItems {
Link Here
|
769 |
$num_items_replaced++; |
769 |
$num_items_replaced++; |
770 |
} elsif ($duplicate_barcode) { |
770 |
} elsif ($duplicate_barcode) { |
771 |
$updsth->bind_param( 1, 'error' ); |
771 |
$updsth->bind_param( 1, 'error' ); |
772 |
$updsth->bind_param( 2, 'duplicate item barcode' ); |
772 |
$updsth->bind_param( 2, undef ); |
773 |
$updsth->bind_param( 3, $row->{'import_items_id'} ); |
773 |
$updsth->bind_param( 3, $row->{'import_items_id'} ); |
774 |
$updsth->execute(); |
774 |
$updsth->execute(); |
775 |
$num_items_errored++; |
775 |
$num_items_errored++; |
776 |
- |
|
|