Compare commits
1 commit
Author | SHA1 | Date | |
---|---|---|---|
|
e61259ded9 |
5 changed files with 10 additions and 6 deletions
|
@ -1,3 +1,7 @@
|
|||
|
||||
## 2025-03-26 v6.6.11
|
||||
- Исправлена передача габаритов при выгрузке заказов по агенту
|
||||
|
||||
## 2025-03-25 v6.6.10
|
||||
- Исправлено некорректное изменение статуса оплаты отмененных заказов
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -1 +1 @@
|
|||
- Исправлено некорректное изменение статуса оплаты отмененных заказов
|
||||
- Исправлена передача габаритов при выгрузке заказов по агенту
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
|
||||
$arModuleVersion = [
|
||||
'VERSION' => '6.6.10',
|
||||
'VERSION_DATE' => '2025-03-25 16:00:00'
|
||||
'VERSION' => '6.6.11',
|
||||
'VERSION_DATE' => '2025-03-26 16:00:00'
|
||||
];
|
||||
|
|
|
@ -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';
|
||||
|
|
Loading…
Add table
Reference in a new issue