From: Joe Hunt Date: Fri, 9 Nov 2012 23:29:12 +0000 (+0100) Subject: Dimensions not utilized in Direct Invoice/Delivery X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=commitdiff_plain;h=23316d105d0f66e1bb22d8aaf6066fd700dc1d33;p=textcart.git Dimensions not utilized in Direct Invoice/Delivery --- diff --git a/sales/includes/cart_class.inc b/sales/includes/cart_class.inc index 40fb2a3..6a014d5 100644 --- a/sales/includes/cart_class.inc +++ b/sales/includes/cart_class.inc @@ -253,6 +253,8 @@ class cart $ref = $this->reference; $date = $this->document_date; $due_date = $this->due_date; + $dimension_id = $this->dimension_id; + $dimension2_id = $this->dimension2_id; $this->trans_type = get_parent_type($this->trans_type); $this->reference = 'auto'; @@ -263,6 +265,8 @@ class cart $this->document_date = $date; $this->reference = $ref; $this->due_date = $due_date; + $this->dimension_id = $dimension_id; + $this->dimension2_id = $dimension2_id; } $this->reference = @html_entity_decode($this->reference, ENT_QUOTES); $this->Comments = @html_entity_decode($this->Comments, ENT_QUOTES);