@@ -, +, @@ Change the barcode fields to unused barcodes Use the settings: Record matching rule: ISBN Action if matching record found: ignore Action if no match found: ignore Item processing: always_add Check for embedded item record data?: Yes How to process items: Always add items --- C4/ImportBatch.pm | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) --- a/C4/ImportBatch.pm +++ a/C4/ImportBatch.pm @@ -652,6 +652,7 @@ sub BatchCommitRecords { SetImportRecordStatus($rowref->{'import_record_id'}, 'imported'); } elsif ($record_result eq 'ignore') { $num_ignored++; + $recordid = $record_match; if ($record_type eq 'biblio' and defined $recordid and $item_result eq 'create_new') { my ($bib_items_added, $bib_items_errored) = BatchCommitItems($rowref->{'import_record_id'}, $recordid); $num_items_added += $bib_items_added; --