Add print query parameter to stock POST request

This commit is contained in:
2026-04-07 19:45:16 +02:00
parent 385cd95aaf
commit 741b77aa2d
+1 -1
View File
@@ -58,7 +58,7 @@ export async function createStockEntry(store, body) {
method: 'POST', method: 'POST',
body, body,
includeKitchen: false, includeKitchen: false,
query: { label: 1 }, query: { label: 1, print: 1 },
}); });
return unwrapEntryPayload(payload); return unwrapEntryPayload(payload);
} }