mirror of
https://github.com/retailcrm/opencart-module.git
synced 2024-11-22 05:06:07 +03:00
Исправлена ошибка с передачей данных заказа в retailCRM
This commit is contained in:
parent
702c18d757
commit
66d3963dd5
@ -1,3 +1,6 @@
|
|||||||
|
## v.3.3.1
|
||||||
|
* Исправлен баг с передачей данных заказа в retailCRM при получении истории изменений от retailCRM
|
||||||
|
|
||||||
## v.3.3.0
|
## v.3.3.0
|
||||||
* Добавена настройка записи истории изменения заказов в Opencart
|
* Добавена настройка записи истории изменения заказов в Opencart
|
||||||
* Устранен баг с вызовом события редактирования заказа при выгрузке истории изменений из retailCRM
|
* Устранен баг с вызовом события редактирования заказа при выгрузке истории изменений из retailCRM
|
||||||
|
@ -472,9 +472,7 @@ class ModelExtensionRetailcrmHistoryV45 extends ModelExtensionRetailcrmHistory
|
|||||||
if (isset($this->settings[$this->moduleTitle . '_status_changes'])
|
if (isset($this->settings[$this->moduleTitle . '_status_changes'])
|
||||||
&& $this->settings[$this->moduleTitle . '_status_changes']
|
&& $this->settings[$this->moduleTitle . '_status_changes']
|
||||||
) {
|
) {
|
||||||
\retailcrm\Retailcrm::$history_run = true;
|
|
||||||
$this->opencartApiClient->addHistory($order['externalId'], $data['order_status_id']);
|
$this->opencartApiClient->addHistory($order['externalId'], $data['order_status_id']);
|
||||||
\retailcrm\Retailcrm::$history_run = false;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -45,7 +45,9 @@ class ControllerApiRetailcrm extends Controller
|
|||||||
$response = array('error' => 'Not found data');
|
$response = array('error' => 'Not found data');
|
||||||
} else {
|
} else {
|
||||||
$this->load->model('checkout/order');
|
$this->load->model('checkout/order');
|
||||||
|
\retailcrm\Retailcrm::$history_run = true;
|
||||||
$this->model_checkout_order->addOrderHistory($this->request->post['order_id'], $this->request->post['order_status_id']);
|
$this->model_checkout_order->addOrderHistory($this->request->post['order_id'], $this->request->post['order_status_id']);
|
||||||
|
\retailcrm\Retailcrm::$history_run = false;
|
||||||
$response = array('success' => true);
|
$response = array('success' => true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user