home / stock_adj

request_items

2 rows where request_id = 38

✎ View and edit SQL

This data as json, CSV (advanced)

id ▼ request_id sku name unit qty direction adjust_reason adjust_reason_note
45 38 38 MONGA Mono soft น้ำยาปรับผ้านุ่ม 3800 ml แกลลอน 1.0 out อื่นๆ  
46 38 38 COLBO Color white ผงขจัดคราบ 450 ml กระปุก 1.0 out อื่นๆ  

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

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                 -- หมายเหตุเพิ่มเติม (กรณีอื่นๆ)
            );
Powered by Datasette · Queries took 48.217ms