parent
f5751523bd
commit
a7af52123b
2 changed files with 2 additions and 12 deletions
|
@ -30,8 +30,6 @@
|
|||
|
||||
> retailcrm_process_order_custom_fields - позволяет изменить данные кастомных полей заказ при передачи из CRM -> CMS.
|
||||
|
||||
> retailcrm_coupon_order - позволяет изменить данные кастомного поля купона при передачи из CRM -> CMS.
|
||||
|
||||
> retailcrm_process_offer - позволяет изменить данные товара перед записью в ICML каталог.
|
||||
|
||||
> retailcrm_process_order - позволяет изменить данные заказа при передачи из CMS -> CRM.
|
||||
|
|
|
@ -294,10 +294,7 @@ if (!class_exists('WC_Retailcrm_History')) :
|
|||
if (!empty($orderEditData)) {
|
||||
$orderEditData['id'] = $order['id'];
|
||||
|
||||
$this->retailcrm->ordersEdit(
|
||||
$orderEditData,
|
||||
'id'
|
||||
);
|
||||
$this->retailcrm->ordersEdit($orderEditData, 'id');
|
||||
}
|
||||
}
|
||||
} catch (Exception $exception) {
|
||||
|
@ -1027,12 +1024,7 @@ if (!class_exists('WC_Retailcrm_History')) :
|
|||
*/
|
||||
private function updateItemsForUsedCoupons($orderHistory, $wcOrder)
|
||||
{
|
||||
$couponField = apply_filters(
|
||||
'retailcrm_coupon_order',
|
||||
$this->retailcrmSettings['woo_coupon_apply_field'],
|
||||
$orderHistory,
|
||||
$wcOrder
|
||||
);
|
||||
$couponField = $this->retailcrmSettings['woo_coupon_apply_field'];
|
||||
|
||||
if ($couponField === 'not-upload') {
|
||||
return [];
|
||||
|
|
Loading…
Add table
Reference in a new issue