Bug 18639: Add replacementprice field to aqorders
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
This commit is contained in:
parent
87d7ce88f6
commit
26976dfba9
2 changed files with 8 additions and 1 deletions
|
@ -0,0 +1,6 @@
|
|||
$DBversion = 'XXX'; # will be replaced by the RM
|
||||
if( CheckVersion( $DBversion ) ) {
|
||||
$dbh->do( "ALTER TABLE aqorders ADD COLUMN replacementprice DECIMAL(28,6)" );
|
||||
SetVersion( $DBversion );
|
||||
print "Upgrade to $DBversion done (Bug 18639 - Add replacementprice field to aqorders table)\n";
|
||||
}
|
|
@ -3172,7 +3172,8 @@ CREATE TABLE `aqorders` ( -- information related to the basket line items
|
|||
`purchaseordernumber` LONGTEXT, -- not used? always NULL
|
||||
`basketno` int(11) default NULL, -- links this order line to a specific basket (aqbasket.basketno)
|
||||
`timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- the date and time this order line was last modified
|
||||
`rrp` decimal(13,2) DEFAULT NULL, -- the replacement cost for this line item
|
||||
`rrp` decimal(13,2) DEFAULT NULL, -- the retail cost for this line item
|
||||
`replacementprice` decimal(28,6) DEFAULT NULL, -- the replacement cost for this line item
|
||||
`rrp_tax_excluded` decimal(28,6) default NULL, -- the replacement cost excluding tax
|
||||
`rrp_tax_included` decimal(28,6) default NULL, -- the replacement cost including tax
|
||||
`ecost` decimal(13,2) DEFAULT NULL, -- the replacement cost for this line item
|
||||
|
|
Loading…
Reference in a new issue