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/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", 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';