Skip to content

Commit

Permalink
Исправлена поломка заказов с промокодом Maxma при включенной передаче…
Browse files Browse the repository at this point in the history
… корзины в CRM (#376)
  • Loading branch information
drNovikov authored Dec 9, 2024
1 parent 41257b9 commit 1ec3bcc
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 2024-12-08 v6.5.39
- Исправлена поломка заказов с промокодом Maxma при включенной передаче корзины в CRM

## 2024-10-31 v6.5.38
- Исправлена выгрузка заказов через агент

Expand Down
2 changes: 1 addition & 1 deletion intaro.retailcrm/classes/general/cart/RetailCrmCart_v5.php
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ public static function getBasketArray($event): ?array


foreach ($items as $item) {
$itemFields = $item->getFields();
$itemFields = $item->getFields()->getValues();

if (isset($basketItems[(int) $itemFields['ID']])) {
$itemFields['PRICE'] = $basketItems[(int) $itemFields['ID']]['PRICE'];
Expand Down
2 changes: 1 addition & 1 deletion intaro.retailcrm/description.ru
Original file line number Diff line number Diff line change
@@ -1 +1 @@
- Исправлена выгрузка заказов через агент
- Исправлена поломка заказов с промокодом Maxma при включенной передаче корзины в CRM
4 changes: 2 additions & 2 deletions intaro.retailcrm/install/version.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

$arModuleVersion = [
'VERSION' => '6.5.38',
'VERSION_DATE' => '2024-10-31 15:00:00'
'VERSION' => '6.5.39',
'VERSION_DATE' => '2024-12-08 18:30:00'
];
2 changes: 1 addition & 1 deletion intaro.retailcrm/lib/component/constants.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
*/
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 BITRIX_USER_ID_PREFIX = 'bitrixUserId-';
public const CRM_USERS_MAP = 'crm_users_map';
Expand Down

0 comments on commit 1ec3bcc

Please sign in to comment.