Skip to content

Commit

Permalink
ref #90908 Исправление передачи брошенных корзин (#305)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kocmonavtik authored Jul 20, 2023
1 parent 7c66711 commit 56ab4b4
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 2023-07-20 v.6.3.18
- Исправлена передача брошенных корзин

## 2023-07-04 v.6.3.17
- Добавлен функционал передачи примененного купона в заказе Битрикс в пользовательское поле заказа CRM

Expand Down
3 changes: 2 additions & 1 deletion intaro.retailcrm/classes/general/cart/RetailCrmCart_v5.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,9 @@ public static function handlerCart(array $arBasket)
'customer' => [
'externalId' => $arBasket['USER_ID'],
'site' => $site,
$date => date(self::$dateFormat),
],
$date => date(self::$dateFormat),
'droppedAt' => date(self::$dateFormat),
'items' => $items,
],
$site
Expand Down
2 changes: 1 addition & 1 deletion intaro.retailcrm/description.ru
Original file line number Diff line number Diff line change
@@ -1 +1 @@
- Добавлен функционал передачи примененного купона в заказе Битрикс в пользовательское поле заказа 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.3.17',
'VERSION_DATE' => '2023-07-04 18:00:00'
'VERSION' => '6.3.18',
'VERSION_DATE' => '2023-07-20 14:00:00'
];

0 comments on commit 56ab4b4

Please sign in to comment.