Lines 3026-3031
CREATE TABLE `aqorders` ( -- information related to the basket line items
Link Here
|
3026 |
`unitprice` decimal(28,6) default NULL, -- the actual cost entered when receiving this line item |
3026 |
`unitprice` decimal(28,6) default NULL, -- the actual cost entered when receiving this line item |
3027 |
`quantityreceived` smallint(6) NOT NULL default 0, -- the quantity that have been received so far |
3027 |
`quantityreceived` smallint(6) NOT NULL default 0, -- the quantity that have been received so far |
3028 |
`datecancellationprinted` date default NULL, -- the date the line item was deleted |
3028 |
`datecancellationprinted` date default NULL, -- the date the line item was deleted |
|
|
3029 |
`cancellationreason` text default NULL, -- reason of cancellation |
3029 |
`order_internalnote` mediumtext, -- notes related to this order line, made for staff |
3030 |
`order_internalnote` mediumtext, -- notes related to this order line, made for staff |
3030 |
`order_vendornote` mediumtext, -- notes related to this order line, made for vendor |
3031 |
`order_vendornote` mediumtext, -- notes related to this order line, made for vendor |
3031 |
`supplierreference` mediumtext, -- not used? always NULL |
3032 |
`supplierreference` mediumtext, -- not used? always NULL |