Add transfer of order numbers from CMS to CRM by history sync
This commit is contained in:
parent
fa32395161
commit
9113a89cd2
1 changed files with 10 additions and 0 deletions
|
@ -246,6 +246,16 @@ if (!class_exists('WC_Retailcrm_History')) :
|
|||
$wcOrder->calculate_totals();
|
||||
}
|
||||
|
||||
if (
|
||||
$order['number'] != $wcOrderId
|
||||
&& isset($this->retailcrmSettings['update_number'])
|
||||
&& $this->retailcrmSettings['update_number'] == WC_Retailcrm_Base::YES
|
||||
) {
|
||||
$order['number'] = $wcOrderId;
|
||||
|
||||
$this->retailcrm->ordersEdit($order, 'id');
|
||||
}
|
||||
|
||||
// @codeCoverageIgnoreStart
|
||||
} catch (Exception $exception) {
|
||||
WC_Retailcrm_Logger::add(
|
||||
|
|
Loading…
Add table
Reference in a new issue