From aed0d601bf245cda4ae5867b8c2f54925658644d Mon Sep 17 00:00:00 2001 From: Joe Hunt Date: Sat, 10 Nov 2012 00:29:12 +0100 Subject: [PATCH] Dimensions not utilized in Direct Invoice/Delivery --- sales/includes/cart_class.inc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sales/includes/cart_class.inc b/sales/includes/cart_class.inc index 40fb2a3f..6a014d5a 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); -- 2.30.2