1
0
Fork 0
mirror of synced 2025-04-03 22:03:34 +03:00
Удален добавленный фильтр
Исправления по стилю кода
This commit is contained in:
Ivan Chaplygin 2023-08-31 16:02:00 +03:00
parent f5751523bd
commit a7af52123b
2 changed files with 2 additions and 12 deletions

View file

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

View file

@ -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 [];