Lines 791-797
sub BatchCommitItems {
Link Here
|
791 |
$num_items_replaced++; |
791 |
$num_items_replaced++; |
792 |
} elsif ($duplicate_barcode) { |
792 |
} elsif ($duplicate_barcode) { |
793 |
$updsth->bind_param( 1, 'error' ); |
793 |
$updsth->bind_param( 1, 'error' ); |
794 |
$updsth->bind_param( 2, 'duplicate item barcode' ); |
794 |
$updsth->bind_param( 2, undef ); |
795 |
$updsth->bind_param( 3, $row->{'import_items_id'} ); |
795 |
$updsth->bind_param( 3, $row->{'import_items_id'} ); |
796 |
$updsth->execute(); |
796 |
$updsth->execute(); |
797 |
$num_items_errored++; |
797 |
$num_items_errored++; |
798 |
- |
|
|