mirror of
https://github.com/retailcrm/opencart-module.git
synced 2025-01-22 18:51:42 +03:00
bug fix
This commit is contained in:
parent
d58b66a01b
commit
adf390c286
@ -4,9 +4,6 @@ require_once __DIR__ . '/../history.php';
|
||||
|
||||
class ModelExtensionRetailcrmHistoryV45 extends ModelExtensionRetailcrmHistory
|
||||
{
|
||||
/** @var bool */
|
||||
public static $history_run = false;
|
||||
|
||||
protected $createResult;
|
||||
protected $settings;
|
||||
protected $moduleTitle;
|
||||
@ -475,9 +472,9 @@ class ModelExtensionRetailcrmHistoryV45 extends ModelExtensionRetailcrmHistory
|
||||
if (isset($this->settings[$this->moduleTitle . '_status_changes'])
|
||||
&& $this->settings[$this->moduleTitle . '_status_changes']
|
||||
) {
|
||||
static::$history_run = true;
|
||||
\retailcrm\Retailcrm::$history_run = true;
|
||||
$this->opencartApiClient->addHistory($order['externalId'], $data['order_status_id']);
|
||||
static::$history_run = false;
|
||||
\retailcrm\Retailcrm::$history_run = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -31,8 +31,7 @@ class ControllerExtensionModuleRetailcrm extends Controller {
|
||||
* @return void
|
||||
*/
|
||||
public function order_create($trigger, $data, $order_id = null) {
|
||||
|
||||
if (ModelExtensionRetailcrmHistoryV45::$history_run === true) {
|
||||
if (\retailcrm\Retailcrm::$history_run === true) {
|
||||
return;
|
||||
}
|
||||
|
||||
@ -80,6 +79,10 @@ class ControllerExtensionModuleRetailcrm extends Controller {
|
||||
* @return void
|
||||
*/
|
||||
public function order_edit($trigger, $parameter2 = null) {
|
||||
if (\retailcrm\Retailcrm::$history_run === true) {
|
||||
return;
|
||||
}
|
||||
|
||||
$order_id = $parameter2[0];
|
||||
|
||||
$this->load->model('checkout/order');
|
||||
|
@ -8,6 +8,9 @@ class Retailcrm {
|
||||
protected $apiClient;
|
||||
protected $registry;
|
||||
|
||||
/** @var bool */
|
||||
public static $history_run = false;
|
||||
|
||||
public function __construct($registry) {
|
||||
$this->registry = $registry;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user