Skip to content
Snippets Groups Projects
Commit cc376cb2 authored by Paul Hoffman's avatar Paul Hoffman Committed by Robert Lange
Browse files

FOLIO driver - start copy numbers with 1, not 0 (#1588)

parent b8a9728c
Branches
Tags
No related merge requests found
......@@ -442,7 +442,7 @@ class Folio extends AbstractAPI implements
'id' => $bibId,
'item_id' => $itemBody->items[$j]->id,
'holding_id' => $holding->id,
'number' => count($items),
'number' => count($items) + 1,
'barcode' => $item->barcode ?? '',
'status' => $item->status->name,
'availability' => $item->status->name == 'Available',
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment