1
0
Fork 0
mirror of synced 2025-04-04 14:23:33 +03:00

ref #89535 Исправлено очищение корзины для корпоративных клиентов

Логи по получению корзин по апи перенесены в логи модуля
This commit is contained in:
Ivan Chaplygin 2023-08-23 12:23:41 +03:00
parent e003b63f2f
commit 1355fac2f2
5 changed files with 34 additions and 7 deletions

View file

@ -1,3 +1,6 @@
## 2023-08-23 v.6.4.2
- Исправлена работы корзин с корпоративными клиентами
## 2023-08-22 v.6.4.1
- Исправлена передача даты регистрации клиента

View file

@ -546,13 +546,21 @@ class RCrmActions
'errors' => !empty($result['errors']) ? $result['errors'] : '',
'params' => $params
), 'uploadApiErrors');
} elseif ($methodApi == 'cartGet') {
Logger::getInstance()->write(array(
'api' => $version,
'methodApi' => $methodApi,
'errorMsg' => !empty($result['errorMsg']) ? $result['errorMsg'] : '',
'errors' => !empty($result['errors']) ? $result['errors'] : '',
'params' => $params,
), 'apiErrors');
} else {
self::eventLog(
__CLASS__ . '::' . $method,
'RetailCrm\ApiClient::' . $methodApi,
!empty($result['errorMsg']) ? $result['errorMsg'] : ''
);
Logger::getInstance()->write(array(
'api' => $version,
'methodApi' => $methodApi,

View file

@ -17,6 +17,7 @@ use Intaro\RetailCrm\Service\LoyaltyAccountService;
use RetailCrm\Response\ApiResponse;
use \Bitrix\Sale\Location\Name\LocationTable as LocationTableName;
use Intaro\RetailCrm\Component\ConfigProvider;
use Intaro\RetailCrm\Model\Api\Response\OrdersCreateResponse;
IncludeModuleLangFile(__FILE__);
@ -439,12 +440,27 @@ class RetailCrmOrder
}
$crmBasket = RCrmActions::apiMethod($api, 'cartGet', __METHOD__, $externalId, $site);
$orderResponse = $client->createOrder($order, $site);
if (!empty($crmBasket['cart'])) {
$order['isFromCart'] = true;
if (!empty($crmBasket['cart']) && $orderResponse instanceof OrdersCreateResponse && !empty($orderResponse->id) ) {
RCrmActions::apiMethod(
$api,
'cartClear',
__METHOD__,
[
'clearedAt' => date('Y-m-d H:i:sP'),
'customer' => [
'externalId' => $externalId
],
'order' => [
'id' => $orderResponse->id
]
],
$site
);
}
return $client->createOrder($order, $site);
return $orderResponse;
}
if ($methodApi === 'ordersEdit') {

View file

@ -1 +1 @@
- Исправлена передача даты регистрации клиента
- Исправлена работы корзин с корпоративными клиентами

View file

@ -1,6 +1,6 @@
<?php
$arModuleVersion = [
'VERSION' => '6.4.1',
'VERSION_DATE' => '2023-08-22 9:30:00'
'VERSION' => '6.4.2',
'VERSION_DATE' => '2023-08-23 12:30:00'
];