VbzCart/docs/tables/rstk req item: Difference between revisions
Jump to navigation
Jump to search
imported>Woozle (removed some fields which belong elsewhere) |
imported>Woozle (→SQL: syntax fixes) |
||
Line 11: | Line 11: | ||
`Descr` VARCHAR(255) DEFAULT NULL COMMENT "Item description as given at time of shopping", | `Descr` VARCHAR(255) DEFAULT NULL COMMENT "Item description as given at time of shopping", | ||
/* timestamps */ | /* timestamps */ | ||
`WhenCreated` DATETIME DEFAULT NULL "when this line was added", | `WhenCreated` DATETIME DEFAULT NULL COMMENT "when this line was added", | ||
`WhenVoided` DATETIME DEFAULT NULL "when this line was voided; not NULL = ignore this line", | `WhenVoided` DATETIME DEFAULT NULL COMMENT "when this line was voided; not NULL = ignore this line", | ||
/* quantities - data from creation of restock */ | /* quantities - data from creation of restock */ | ||
`QtyNeed` INT COMMENT "quantity needed, either for an order or to keep stock at desired level", | `QtyNeed` INT COMMENT "quantity needed, either for an order or to keep stock at desired level", | ||
`QtyOrd` INT COMMENT "quantity actually ordered", | `QtyOrd` INT COMMENT "quantity actually ordered", | ||
`QtyExp` INT COMMENT "quantity actually expected, if supplier doesn't have enough available to fill the order", | `QtyExp` INT COMMENT "quantity actually expected, if supplier doesn't have enough available to fill the order", | ||
`isGone` BOOL COMMENT "YES = item discontinued, no more available | `isGone` BOOL COMMENT "YES = item discontinued, no more available (if info from source other than invoice)", | ||
/* cost information */ | /* cost information */ | ||
`CostExpPer` DECIMAL(9,2) COMMENT "expected per-item cost", | `CostExpPer` DECIMAL(9,2) COMMENT "expected per-item cost", |
Revision as of 19:32, 7 November 2008
About
- Created: 2008-11-07
- To replace old VbzCart/docs/tables/rstk_lines after data is migrated
- Records requested restock contents by item; planned distribution to customers is in VbzCart/docs/tables/rstk_ord_lines
SQL
<section begin=sql /><mysql>CREATE TABLE `rstk_line_new` (
`ID` INT NOT NULL AUTO_INCREMENT, `ID_Restock` INT COMMENT "core_restock.ID of restock this item belongs to", `ID_Item` INT COMMENT "cat_items.ID of item being restocked", `Descr` VARCHAR(255) DEFAULT NULL COMMENT "Item description as given at time of shopping",
/* timestamps */
`WhenCreated` DATETIME DEFAULT NULL COMMENT "when this line was added", `WhenVoided` DATETIME DEFAULT NULL COMMENT "when this line was voided; not NULL = ignore this line",
/* quantities - data from creation of restock */
`QtyNeed` INT COMMENT "quantity needed, either for an order or to keep stock at desired level", `QtyOrd` INT COMMENT "quantity actually ordered", `QtyExp` INT COMMENT "quantity actually expected, if supplier doesn't have enough available to fill the order", `isGone` BOOL COMMENT "YES = item discontinued, no more available (if info from source other than invoice)",
/* cost information */
`CostExpPer` DECIMAL(9,2) COMMENT "expected per-item cost", `Notes` VARCHAR(255) COMMENT "human-entered notes on this line item", PRIMARY KEY(`ID`) ) ENGINE = MYISAM;</mysql>
<section end=sql />