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']); }