[+] BO : Add a note on invoice

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@11253 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
jBreux
2011-12-15 11:38:01 +00:00
parent 29a90b29d1
commit cb984199fc
8 changed files with 65 additions and 9 deletions
+4
View File
@@ -63,6 +63,9 @@ class OrderInvoiceCore extends ObjectModel
/** @var float */
public $total_wrapping_tax_incl;
/** @var string note */
public $note;
/** @var intger */
public $date_add;
@@ -85,6 +88,7 @@ class OrderInvoiceCore extends ObjectModel
'total_shipping_tax_incl' =>array('type' => self::TYPE_FLOAT),
'total_wrapping_tax_excl' =>array('type' => self::TYPE_FLOAT),
'total_wrapping_tax_incl' =>array('type' => self::TYPE_FLOAT),
'note' => array('type' => self::TYPE_STRING, 'validate' => 'isCleanHtml', 'size' => 65000),
'date_add' => array('type' => self::TYPE_DATE, 'validate' => 'isDate'),
),
);