From 66dc044a0a3a943a80e219ef3f993faebde7f480 Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Tue, 13 Aug 2024 21:01:51 +0000 Subject: [PATCH] Bug 37639: Add items.stack to items endpoint To test: 1. Apply patch and restart_all, and yarn api:bundle 2. Check the items endpoint for items.stack ( http://localhost:8081/api/v1/items/144 ) 3. The data is there, and correct. Signed-off-by: Paul Derscheid --- Koha/Item.pm | 2 +- api/v1/swagger/definitions/item.yaml | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/Koha/Item.pm b/Koha/Item.pm index b9e35ae352..ac06dd9dc0 100644 --- a/Koha/Item.pm +++ b/Koha/Item.pm @@ -1770,7 +1770,7 @@ sub to_api_mapping { replacementpricedate => 'replacement_price_date', datelastborrowed => 'last_checkout_date', datelastseen => 'last_seen_date', - stack => undef, + stack => 'stack', notforloan => 'not_for_loan_status', damaged => 'damaged_status', damaged_on => 'damaged_date', diff --git a/api/v1/swagger/definitions/item.yaml b/api/v1/swagger/definitions/item.yaml index ba1a8a890e..4c44343376 100644 --- a/api/v1/swagger/definitions/item.yaml +++ b/api/v1/swagger/definitions/item.yaml @@ -184,6 +184,11 @@ properties: - string - "null" description: Materials specified + stack: + type: + - number + - "null" + description: Shelving control number uri: type: - string -- 2.46.0