request_items
This data as json
0 records
CREATE TABLE request_items (
id INTEGER PRIMARY KEY AUTOINCREMENT,
request_id INTEGER NOT NULL REFERENCES requests(id),
sku TEXT NOT NULL,
name TEXT NOT NULL,
unit TEXT,
qty REAL NOT NULL, -- บวก=เพิ่ม ลบ=ลด
direction TEXT NOT NULL, -- in | out
adjust_reason TEXT, -- สาเหตุ (สำหรับ adjust type)
adjust_reason_note TEXT -- หมายเหตุเพิ่มเติม (กรณีอื่นๆ)
);