Summary: | When staging records we always default item processing to 'always_add' if we check for embedded items and don't apply matching | ||
---|---|---|---|
Product: | Koha | Reporter: | Nick Clemens (kidclamp) <nick> |
Component: | Tools | Assignee: | Bugs List <koha-bugs> |
Status: | NEW --- | QA Contact: | Testopia <testopia> |
Severity: | normal | ||
Priority: | P5 - low | ||
Version: | Main | ||
Hardware: | All | ||
OS: | All | ||
Change sponsored?: | --- | Patch complexity: | --- |
Documentation contact: | Documentation submission: | ||
Text to go in the release notes: | Version(s) released in: | ||
Circulation function: |
Description
Nick Clemens (kidclamp)
2022-08-17 13:20:40 UTC
From C4/ImportBatch.pm sub BatchStageMarcRecords { ... 346 if ($parse_items) { 347 SetImportBatchItemAction($batch_id, 'always_add'); 348 } else { 349 SetImportBatchItemAction($batch_id, 'ignore'); 350 } |