1
0
Fork 0
mirror of synced 2025-04-05 06:43:32 +03:00

fix-agent-error

This commit is contained in:
anton 2024-10-21 14:27:53 +03:00
parent 6fb061e6cc
commit 26ba9dfa43
5 changed files with 12 additions and 4 deletions

View file

@ -1,3 +1,6 @@
## 2024-10-21 v6.5.34
- Исправлена ошибка агента выгрузки изменении при наличии у заказа клиента без магазина
## 2024-10-14 v6.5.33
- Добавлена передача дополнительных параметров в GET запросах

View file

@ -1015,6 +1015,11 @@ class RetailCrmHistory
$order['site']
);
if (!$response) {
Logger::getInstance()->write("Заказ {$order["id"]} не выгружен. Не удалось получить клиента", 'orderAgent');
continue;
}
$newUser = new CUser();
$customerBuilder = new CustomerBuilder();
$customerBuilder->setDataCrm($response['customer'])->build();

View file

@ -1 +1 @@
- Добавлена передача дополнительных параметров в GET запросах
- Исправлена ошибка агента выгрузки изменении при наличии у заказа клиента без магазина

View file

@ -1,6 +1,6 @@
<?php
$arModuleVersion = [
'VERSION' => '6.5.33',
'VERSION_DATE' => '2024-10-14 17:00:00'
'VERSION' => '6.5.34',
'VERSION_DATE' => '2024-10-21 17:00:00'
];

View file

@ -18,7 +18,7 @@ namespace Intaro\RetailCrm\Component;
*/
class Constants
{
public const MODULE_VERSION = '6.5.33';
public const MODULE_VERSION = '6.5.34';
public const CRM_PURCHASE_PRICE_NULL = 'purchasePrice_null';
public const BITRIX_USER_ID_PREFIX = 'bitrixUserId-';
public const CRM_USERS_MAP = 'crm_users_map';