From 7699ab843da0451e393e795728a8e9111ab8e39f Mon Sep 17 00:00:00 2001 From: ellynoize Date: Mon, 27 Jan 2025 12:08:52 +0300 Subject: [PATCH] fix promo discount --- .../classes/general/history/RetailCrmHistory_v5.php | 2 +- intaro.retailcrm/description.ru | 2 +- intaro.retailcrm/install/version.php | 4 ++-- intaro.retailcrm/lib/component/constants.php | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/intaro.retailcrm/classes/general/history/RetailCrmHistory_v5.php b/intaro.retailcrm/classes/general/history/RetailCrmHistory_v5.php index 78ae0d41..3b28f8d0 100644 --- a/intaro.retailcrm/classes/general/history/RetailCrmHistory_v5.php +++ b/intaro.retailcrm/classes/general/history/RetailCrmHistory_v5.php @@ -1226,7 +1226,6 @@ class RetailCrmHistory } if (array_key_exists('discountTotal_sum', $collectItems[$product['offer']['externalId']])) { - $item->setField('CUSTOM_PRICE', 'Y'); $item->setField('DISCOUNT_NAME', ''); $item->setField('DISCOUNT_VALUE', ''); @@ -1240,6 +1239,7 @@ class RetailCrmHistory $price = self::truncate($price, 2); } + $item->markFieldCustom('PRICE'); $item->setField('PRICE', $price); } diff --git a/intaro.retailcrm/description.ru b/intaro.retailcrm/description.ru index 57c6b407..2667f99f 100644 --- a/intaro.retailcrm/description.ru +++ b/intaro.retailcrm/description.ru @@ -1 +1 @@ -- Исправлены ошибки при обновлении модуля +- Исправлено некорректное удаление признака применения промокода при изменении состава заказа в CRM diff --git a/intaro.retailcrm/install/version.php b/intaro.retailcrm/install/version.php index af685007..06b5c060 100644 --- a/intaro.retailcrm/install/version.php +++ b/intaro.retailcrm/install/version.php @@ -1,6 +1,6 @@ '6.6.3', - 'VERSION_DATE' => '2025-01-14 18:00:00' + 'VERSION' => '6.6.4', + 'VERSION_DATE' => '2025-01-27 18:00:00' ]; diff --git a/intaro.retailcrm/lib/component/constants.php b/intaro.retailcrm/lib/component/constants.php index bb0a99b4..3d67d1a7 100644 --- a/intaro.retailcrm/lib/component/constants.php +++ b/intaro.retailcrm/lib/component/constants.php @@ -18,7 +18,7 @@ namespace Intaro\RetailCrm\Component; */ class Constants { - public const MODULE_VERSION = '6.6.3'; + public const MODULE_VERSION = '6.6.4'; public const CRM_PURCHASE_PRICE_NULL = 'purchasePrice_null'; public const BITRIX_USER_ID_PREFIX = 'bitrixUserId-'; public const CRM_USERS_MAP = 'crm_users_map';