2016-01-29 18:04:48 +03:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<modification>
|
2016-02-09 16:32:33 +03:00
|
|
|
<id>Send order to RetailCRM when it created</id>
|
|
|
|
<version>1.5.x</version>
|
|
|
|
<vqmver required="true">2.3.x</vqmver>
|
|
|
|
<author>retailcrm.ru</author>
|
2016-01-29 18:04:48 +03:00
|
|
|
|
2016-02-09 16:32:33 +03:00
|
|
|
<file path="catalog/model/checkout/" name="order.php">
|
|
|
|
<operation error="skip">
|
|
|
|
<search position="before" ><![CDATA[return $order_id]]></search>
|
|
|
|
<add><![CDATA[
|
|
|
|
$this->load->model('retailcrm/order');
|
|
|
|
$this->model_retailcrm_order->sendToCrm($data, $order_id);
|
|
|
|
]]></add>
|
|
|
|
</operation>
|
|
|
|
</file>
|
2016-01-29 18:04:48 +03:00
|
|
|
|
|
|
|
<file path="admin/model/sale/" name="order.php">
|
|
|
|
<operation error="skip">
|
|
|
|
<search position="after" ><![CDATA[$this->db->query("UPDATE `" . DB_PREFIX . "order` SET total = '" . (float)$total . "', affiliate_id = '" . (int)$affiliate_id . "', commission = '" . (float)$commission . "' WHERE order_id = '" . (int)$order_id . "'");]]></search>
|
|
|
|
<add><![CDATA[
|
2016-02-09 16:32:33 +03:00
|
|
|
if (!isset($data['fromApi'])) {
|
2016-01-29 18:04:48 +03:00
|
|
|
$this->load->model('setting/setting');
|
|
|
|
$status = $this->model_setting_setting->getSetting('retailcrm');
|
|
|
|
|
|
|
|
if (!empty($data['order_status_id'])) {
|
|
|
|
$data['order_status'] = $status['retailcrm_status'][$data['order_status_id']];
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->load->model('retailcrm/order');
|
|
|
|
if (isset ($order_query)) {
|
|
|
|
$this->model_retailcrm_order->changeInCrm($data, $order_id);
|
|
|
|
} else {
|
|
|
|
$this->model_retailcrm_order->sendToCrm($data, $order_id);
|
|
|
|
}
|
|
|
|
}
|
2016-02-09 16:32:33 +03:00
|
|
|
]]></add>
|
2016-01-29 18:04:48 +03:00
|
|
|
</operation>
|
|
|
|
</file>
|
2016-02-09 16:32:33 +03:00
|
|
|
|
2016-01-29 18:04:48 +03:00
|
|
|
</modification>
|