Finish getting POs working

This commit is contained in:
2025-01-26 17:34:46 -05:00
parent 48f09095c4
commit 5cbc2152a1
2 changed files with 73 additions and 47 deletions

View File

@@ -137,6 +137,7 @@ CREATE TABLE purchase_orders (
cost_price DECIMAL(10, 3) NOT NULL,
status VARCHAR(20) DEFAULT 'pending' COMMENT 'canceled,created,electronically_ready_send,ordered,preordered,electronically_sent,receiving_started,closed',
notes TEXT,
long_note TEXT,
ordered INT NOT NULL,
received INT DEFAULT 0,
received_date DATE,