From e07b70ad12ee2fd6d9657ca2b1d17bbbc5a0207a Mon Sep 17 00:00:00 2001 From: Ivan Chaplygin Date: Thu, 28 Aug 2025 17:58:50 +0300 Subject: [PATCH 1/2] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D0=B8=D0=B5=20=D1=82=D0=B8=D0=BF=D0=B0=20=D0=B4=D0=B0?= =?UTF-8?q?=D0=BD=D0=BD=D1=8B=D1=85=20=D1=83=20=D0=BF=D0=B5=D1=80=D0=B5?= =?UTF-8?q?=D0=B4=D0=B0=D0=B2=D0=B0=D0=B5=D0=BC=D0=BE=D0=B3=D0=BE=20=D0=BF?= =?UTF-8?q?=D0=B0=D1=80=D0=B0=D0=BC=D0=B5=D1=82=D1=80=D0=B0=20=D0=B7=D0=B0?= =?UTF-8?q?=D0=BA=D0=B0=D0=B7=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- intaro.retailcrm/classes/general/config/retailcrm.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/intaro.retailcrm/classes/general/config/retailcrm.json b/intaro.retailcrm/classes/general/config/retailcrm.json index 20f27eb0..d2024c00 100644 --- a/intaro.retailcrm/classes/general/config/retailcrm.json +++ b/intaro.retailcrm/classes/general/config/retailcrm.json @@ -464,7 +464,10 @@ "type": "skip" }, "cost": { - "type": "string" + "type": "double", + "default": 0, + "min": 0, + "decimals": 2 }, "date": { "type": "datetime", From 70651383ebc0a5a893cb2867bb657b31c34607ef Mon Sep 17 00:00:00 2001 From: Ivan Chaplygin Date: Thu, 28 Aug 2025 18:01:19 +0300 Subject: [PATCH 2/2] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D0=B8=D0=B5=20=D0=B2=D0=B5=D1=80=D1=81=D0=B8=D0=B8=20?= =?UTF-8?q?=D0=BC=D0=BE=D0=B4=D1=83=D0=BB=D1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 3 +++ intaro.retailcrm/description.ru | 2 +- intaro.retailcrm/install/version.php | 4 ++-- intaro.retailcrm/lib/component/constants.php | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 28fbb530..1a63b23d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 2025-08-29 v6.7.4 +- Обновлен тип данных у стоимости доставки + ## 2025-08-01 v6.7.3 - Добавлено логирование ошибок при редактировании заказа diff --git a/intaro.retailcrm/description.ru b/intaro.retailcrm/description.ru index 17deea94..151d099d 100644 --- a/intaro.retailcrm/description.ru +++ b/intaro.retailcrm/description.ru @@ -1 +1 @@ -- Добавлено логирование ошибок при редактировании заказов \ No newline at end of file +- Обновлен тип данных у стоимости доставки diff --git a/intaro.retailcrm/install/version.php b/intaro.retailcrm/install/version.php index 6b85138b..07212f76 100644 --- a/intaro.retailcrm/install/version.php +++ b/intaro.retailcrm/install/version.php @@ -1,6 +1,6 @@ '6.7.3', - 'VERSION_DATE' => '2025-08-01 15:30:00' + 'VERSION' => '6.7.4', + 'VERSION_DATE' => '2025-08-29 9:30:00' ]; diff --git a/intaro.retailcrm/lib/component/constants.php b/intaro.retailcrm/lib/component/constants.php index e68c5e08..c0ece108 100644 --- a/intaro.retailcrm/lib/component/constants.php +++ b/intaro.retailcrm/lib/component/constants.php @@ -18,7 +18,7 @@ */ class Constants { - public const MODULE_VERSION = '6.7.3'; + public const MODULE_VERSION = '6.7.4'; public const CRM_PURCHASE_PRICE_NULL = 'purchasePrice_null'; public const BITRIX_USER_ID_PREFIX = 'bitrixUserId-'; public const CRM_USERS_MAP = 'crm_users_map';