Skip to content

Commit

Permalink
Исправление возврата статуса заказа на предыдущий (#361)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexxmoree authored Sep 11, 2024
1 parent 169509c commit 8eab486
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 2024-09-11 v6.5.28
- Исправлен возврат на предыдущий статус в заказе Bitrix

## 2024-09-02 v.6.5.27
- Исправлена передача изменений по клиентам, отсутствующим в Bitrix

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1599,6 +1599,7 @@ public static function assemblyOrder($orderHistory)

foreach ($orderHistory as $change) {
$change['order'] = self::removeEmpty($change['order']);
unset($change['order']['status']);

if ($change['order']['items']) {
$items = [];
Expand Down
2 changes: 1 addition & 1 deletion intaro.retailcrm/description.ru
Original file line number Diff line number Diff line change
@@ -1 +1 @@
- Исправлена передача изменений по клиентам, отсутствующим в Bitrix
- Исправлен возврат на предыдущий статус в заказе Bitrix
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.27',
'VERSION_DATE' => '2024-09-02 10:00:00'
'VERSION' => '6.5.28',
'VERSION_DATE' => '2024-09-11 13:00:00'
];

0 comments on commit 8eab486

Please sign in to comment.