pantry-track/application/receipts/sql/insertReceiptItemsTuple.sql
Jadowyne Ulve bc23730394 fixed an issue where adding a sku to receipts
wasn't passing the item_uuid properly.
2025-08-09 14:58:00 -05:00

4 lines
167 B
SQL

INSERT INTO %%site_name%%_receipt_items
(type, receipt_id, barcode, item_uuid, name, qty, uom, data, status)
VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s)
RETURNING *;