From 741b77aa2dfd740235e0347764792c8a376dd983 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bla=C5=BE=20Bregar?= Date: Tue, 7 Apr 2026 19:45:16 +0200 Subject: [PATCH] Add `print` query parameter to stock POST request --- src/api/stock.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/stock.js b/src/api/stock.js index df934cf..4cd276f 100644 --- a/src/api/stock.js +++ b/src/api/stock.js @@ -58,7 +58,7 @@ export async function createStockEntry(store, body) { method: 'POST', body, includeKitchen: false, - query: { label: 1 }, + query: { label: 1, print: 1 }, }); return unwrapEntryPayload(payload); }