mirror of
https://github.com/retailcrm/opencart-module.git
synced 2024-11-25 14:46:06 +03:00
Merge pull request #5 from VitalyArt/abandoned-order
fix abandoned order
This commit is contained in:
commit
2111c99690
@ -5,12 +5,18 @@
|
|||||||
<vqmver required="true">2.3.x</vqmver>
|
<vqmver required="true">2.3.x</vqmver>
|
||||||
<author>retailcrm.ru</author>
|
<author>retailcrm.ru</author>
|
||||||
|
|
||||||
<file path="catalog/model/checkout/" name="order.php">
|
<file path="catalog/controller/checkout/" name="success.php">
|
||||||
<operation error="skip">
|
<operation error="skip">
|
||||||
<search position="before" ><![CDATA[return $order_id]]></search>
|
<search position="before" ><![CDATA[$this->cart->clear()]]></search>
|
||||||
<add><![CDATA[
|
<add><![CDATA[
|
||||||
|
$this->load->model('account/order');
|
||||||
|
$this->load->model('checkout/order');
|
||||||
$this->load->model('retailcrm/order');
|
$this->load->model('retailcrm/order');
|
||||||
$this->model_retailcrm_order->sendToCrm($data, $order_id);
|
|
||||||
|
$order = $this->model_checkout_order->getOrder($this->session->data['order_id']);
|
||||||
|
$order['products'] = $this->model_account_order->getOrderProducts($this->session->data['order_id']);
|
||||||
|
|
||||||
|
$this->model_retailcrm_order->sendToCrm($order, $this->session->data['order_id']);
|
||||||
]]></add>
|
]]></add>
|
||||||
</operation>
|
</operation>
|
||||||
</file>
|
</file>
|
||||||
@ -37,5 +43,4 @@
|
|||||||
]]></add>
|
]]></add>
|
||||||
</operation>
|
</operation>
|
||||||
</file>
|
</file>
|
||||||
|
|
||||||
</modification>
|
</modification>
|
||||||
|
Loading…
Reference in New Issue
Block a user