[-] BO : BugFix : #PSCFV-3069 : OrderDetail->purchase_supplier_price is not saved in DB

This commit is contained in:
vChabot
2012-07-12 08:01:04 +00:00
parent 7e7f3e4642
commit 16711d54f0
2 changed files with 6 additions and 1 deletions
+4
View File
@@ -141,6 +141,9 @@ class OrderDetailCore extends ObjectModel
/** @var float additional shipping price tax incl */
public $total_shipping_price_tax_incl;
/** @var float */
public $purchase_supplier_price;
/**
* @see ObjectModel::$definition
*/
@@ -183,6 +186,7 @@ class OrderDetailCore extends ObjectModel
'unit_price_tax_excl' => array('type' => self::TYPE_FLOAT, 'validate' => 'isPrice'),
'total_price_tax_incl' => array('type' => self::TYPE_FLOAT, 'validate' => 'isPrice'),
'total_price_tax_excl' => array('type' => self::TYPE_FLOAT, 'validate' => 'isPrice'),
'purchase_supplier_price' => array('type' => self::TYPE_FLOAT, 'validate' => 'isPrice'),
),
);