From e61259ded965fc4e7daa2de26134b449750408ad Mon Sep 17 00:00:00 2001 From: ellynoize <111681973+ellynoize@users.noreply.github.com> Date: Wed, 26 Mar 2025 15:53:37 +0300 Subject: [PATCH] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=B0=20=D0=BF=D0=B5=D1=80=D0=B5=D0=B4=D0=B0=D1=87?= =?UTF-8?q?=D0=B0=20=D0=B3=D0=B0=D0=B1=D0=B0=D1=80=D0=B8=D1=82=D0=BE=D0=B2?= =?UTF-8?q?=20=D0=BF=D1=80=D0=B8=20=D0=B2=D1=8B=D0=B3=D1=80=D1=83=D0=B7?= =?UTF-8?q?=D0=BA=D0=B5=20=D0=B7=D0=B0=D0=BA=D0=B0=D0=B7=D0=BE=D0=B2=20?= =?UTF-8?q?=D0=BF=D0=BE=20=D0=B0=D0=B3=D0=B5=D0=BD=D1=82=D1=83=20(#388)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 4 ++++ intaro.retailcrm/classes/general/order/RetailCrmOrder_v5.php | 4 ++-- intaro.retailcrm/description.ru | 2 +- intaro.retailcrm/install/version.php | 4 ++-- intaro.retailcrm/lib/component/constants.php | 2 +- 5 files changed, 10 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dff8b19f..206bcfae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ + +## 2025-03-26 v6.6.11 +- Исправлена передача габаритов при выгрузке заказов по агенту + ## 2025-03-25 v6.6.10 - Исправлено некорректное изменение статуса оплаты отмененных заказов 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 e6357763..98df676f 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 2d90c753..881f79aa 100644 --- a/intaro.retailcrm/install/version.php +++ b/intaro.retailcrm/install/version.php @@ -1,6 +1,6 @@ '6.6.10', - 'VERSION_DATE' => '2025-03-25 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 c5a21cea..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.10'; + 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';