From fb2494685fbb80dc18b1ddc33fe6c876cc25955b Mon Sep 17 00:00:00 2001 From: Alex Lushpai Date: Mon, 14 Mar 2016 22:26:42 +0300 Subject: [PATCH] fix delivery price --- catalog/controller/module/retailcrm.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/catalog/controller/module/retailcrm.php b/catalog/controller/module/retailcrm.php index 331cfed..bdd9fea 100644 --- a/catalog/controller/module/retailcrm.php +++ b/catalog/controller/module/retailcrm.php @@ -33,6 +33,11 @@ class ControllerModuleRetailcrm extends Controller $data['order_status'] = $status['retailcrm_status'][$data['order_status_id']]; } + $data['totals'][] = array( + 'code' => 'shipping', + 'value' => $this->session->data['shipping_method']['cost'] + ); + $this->load->model('retailcrm/order'); $this->model_retailcrm_order->sendToCrm($data, $data['order_id']); }