1
0
Fork 0
mirror of synced 2025-04-07 19:22:00 +00:00

Compare commits

..

No commits in common. "master" and "v6.6.10" have entirely different histories.

5 changed files with 6 additions and 10 deletions

View file

@ -1,7 +1,3 @@
## 2025-03-26 v6.6.11
- Исправлена передача габаритов при выгрузке заказов по агенту
## 2025-03-25 v6.6.10 ## 2025-03-25 v6.6.10
- Исправлено некорректное изменение статуса оплаты отмененных заказов - Исправлено некорректное изменение статуса оплаты отмененных заказов

View file

@ -358,7 +358,7 @@ class RetailCrmOrder
$order['items'][] = $item; $order['items'][] = $item;
if ($dimensionsSetting === 'Y') { if ($send && $dimensionsSetting === 'Y') {
$dimensions = RCrmActions::unserializeArrayRecursive($product['DIMENSIONS']); $dimensions = RCrmActions::unserializeArrayRecursive($product['DIMENSIONS']);
if ($dimensions !== false) { if ($dimensions !== false) {
@ -370,7 +370,7 @@ class RetailCrmOrder
} }
} }
if ($dimensionsSetting === 'Y') { if ($send && $dimensionsSetting === 'Y') {
$order['width'] = $width; $order['width'] = $width;
$order['height'] = $height; $order['height'] = $height;
$order['length'] = $length; $order['length'] = $length;

View file

@ -1 +1 @@
- Исправлена передача габаритов при выгрузке заказов по агенту - Исправлено некорректное изменение статуса оплаты отмененных заказов

View file

@ -1,6 +1,6 @@
<?php <?php
$arModuleVersion = [ $arModuleVersion = [
'VERSION' => '6.6.11', 'VERSION' => '6.6.10',
'VERSION_DATE' => '2025-03-26 16:00:00' 'VERSION_DATE' => '2025-03-25 16:00:00'
]; ];

View file

@ -18,7 +18,7 @@ namespace Intaro\RetailCrm\Component;
*/ */
class Constants class Constants
{ {
public const MODULE_VERSION = '6.6.11'; public const MODULE_VERSION = '6.6.10';
public const CRM_PURCHASE_PRICE_NULL = 'purchasePrice_null'; public const CRM_PURCHASE_PRICE_NULL = 'purchasePrice_null';
public const BITRIX_USER_ID_PREFIX = 'bitrixUserId-'; public const BITRIX_USER_ID_PREFIX = 'bitrixUserId-';
public const CRM_USERS_MAP = 'crm_users_map'; public const CRM_USERS_MAP = 'crm_users_map';