diff --git a/CHANGELOG.md b/CHANGELOG.md index fc48e922..909fe627 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 2025-03-26 v6.6.11 +- Исправлена передача габаритов при выгрузке заказов по агенту + ## 2025-03-04 v6.6.9 - Исправлено обновление модуля diff --git a/intaro.retailcrm/classes/general/order/RetailCrmOrder_v5.php b/intaro.retailcrm/classes/general/order/RetailCrmOrder_v5.php index 52e5e799..0287d839 100644 --- a/intaro.retailcrm/classes/general/order/RetailCrmOrder_v5.php +++ b/intaro.retailcrm/classes/general/order/RetailCrmOrder_v5.php @@ -358,7 +358,7 @@ class RetailCrmOrder $order['items'][] = $item; - if ($send && $dimensionsSetting === 'Y') { + if ($dimensionsSetting === 'Y') { $dimensions = RCrmActions::unserializeArrayRecursive($product['DIMENSIONS']); if ($dimensions !== false) { @@ -370,7 +370,7 @@ class RetailCrmOrder } } - if ($send && $dimensionsSetting === 'Y') { + if ($dimensionsSetting === 'Y') { $order['width'] = $width; $order['height'] = $height; $order['length'] = $length; diff --git a/intaro.retailcrm/description.ru b/intaro.retailcrm/description.ru index a85d28d4..faf028da 100644 --- a/intaro.retailcrm/description.ru +++ b/intaro.retailcrm/description.ru @@ -1 +1 @@ -- Исправлено обновление модуля +- Исправлена передача габаритов при выгрузке заказов по агенту diff --git a/intaro.retailcrm/install/version.php b/intaro.retailcrm/install/version.php index 0a299036..881f79aa 100644 --- a/intaro.retailcrm/install/version.php +++ b/intaro.retailcrm/install/version.php @@ -1,6 +1,6 @@ '6.6.9', - 'VERSION_DATE' => '2025-03-04 16:00:00' + 'VERSION' => '6.6.11', + 'VERSION_DATE' => '2025-03-26 16:00:00' ]; diff --git a/intaro.retailcrm/lib/component/constants.php b/intaro.retailcrm/lib/component/constants.php index 27d49a6a..6869a879 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.9'; + public const MODULE_VERSION = '6.6.11'; public const CRM_PURCHASE_PRICE_NULL = 'purchasePrice_null'; public const BITRIX_USER_ID_PREFIX = 'bitrixUserId-'; public const CRM_USERS_MAP = 'crm_users_map';