1
0
mirror of synced 2024-12-12 07:06:04 +03:00

Исправлена поломка заказов с промокодом Maxma при включенной передаче корзины в CRM (#376)

This commit is contained in:
Aleksei Novikov 2024-12-09 15:48:35 +06:00 committed by GitHub
parent 41257b9d7c
commit 1ec3bccd0c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 8 additions and 5 deletions

View File

@ -1,3 +1,6 @@
## 2024-12-08 v6.5.39
- Исправлена поломка заказов с промокодом Maxma при включенной передаче корзины в CRM
## 2024-10-31 v6.5.38 ## 2024-10-31 v6.5.38
- Исправлена выгрузка заказов через агент - Исправлена выгрузка заказов через агент

View File

@ -144,7 +144,7 @@ class RetailCrmCart
foreach ($items as $item) { foreach ($items as $item) {
$itemFields = $item->getFields(); $itemFields = $item->getFields()->getValues();
if (isset($basketItems[(int) $itemFields['ID']])) { if (isset($basketItems[(int) $itemFields['ID']])) {
$itemFields['PRICE'] = $basketItems[(int) $itemFields['ID']]['PRICE']; $itemFields['PRICE'] = $basketItems[(int) $itemFields['ID']]['PRICE'];

View File

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

View File

@ -1,6 +1,6 @@
<?php <?php
$arModuleVersion = [ $arModuleVersion = [
'VERSION' => '6.5.38', 'VERSION' => '6.5.39',
'VERSION_DATE' => '2024-10-31 15:00:00' 'VERSION_DATE' => '2024-12-08 18:30:00'
]; ];

View File

@ -18,7 +18,7 @@ namespace Intaro\RetailCrm\Component;
*/ */
class Constants class Constants
{ {
public const MODULE_VERSION = '6.5.38'; public const MODULE_VERSION = '6.5.39';
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';