1
0
Fork 0
mirror of synced 2025-04-06 07:13:33 +03:00

Add order number transfer CMS -> CRM by history

This commit is contained in:
dima-uryvskiy 2022-02-20 21:32:45 +03:00
parent fa32395161
commit 3953c6a7f7

View file

@ -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(