X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=sales%2Fincludes%2Fcart_class.inc;h=e867cea0ec6324159096b64c761448d419907108;hb=24fb0a10f96e0ffba9b877c662ae2bf9dc79256b;hp=adfe941a22b78c7f83a89051862175ab1482b7b9;hpb=3aada292902adb788119da40db39f437fcfc7654;p=fa-stable.git diff --git a/sales/includes/cart_class.inc b/sales/includes/cart_class.inc index adfe941a..e867cea0 100644 --- a/sales/includes/cart_class.inc +++ b/sales/includes/cart_class.inc @@ -45,7 +45,7 @@ class Cart var $Branch; var $email; - var $delivery_to; + var $deliver_to; var $delivery_address; var $phone; @@ -225,7 +225,7 @@ class Cart $sodata = get_sales_order_header($this->order_no, ST_SALESORDER); $this->cust_ref = $sodata["customer_ref"]; // currently currency is hard linked to debtor account - $this->delivery_to = $sodata["deliver_to"]; + $this->deliver_to = $sodata["deliver_to"]; $this->delivery_address = $sodata["delivery_address"]; // child transaction reedition - update with parent info unless it is freehand if (!$this->is_prepaid() && !$prepare_child) // this is read for view/reedition @@ -389,7 +389,7 @@ class Cart function set_delivery($shipper, $destination, $address, $freight_cost=null) { $this->ship_via = $shipper; - $this->delivery_to = $destination; + $this->deliver_to = $destination; $this->delivery_address = $address; if (isset($freight_cost)) $this->freight_cost = $freight_cost;