ref #89535 Исправлено очищение корзины для корпоративных клиентов
Логи по получению корзин по апи перенесены в логи модуля
This commit is contained in:
parent
e003b63f2f
commit
1355fac2f2
5 changed files with 34 additions and 7 deletions
|
@ -1,3 +1,6 @@
|
|||
## 2023-08-23 v.6.4.2
|
||||
- Исправлена работы корзин с корпоративными клиентами
|
||||
|
||||
## 2023-08-22 v.6.4.1
|
||||
- Исправлена передача даты регистрации клиента
|
||||
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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') {
|
||||
|
|
|
@ -1 +1 @@
|
|||
- Исправлена передача даты регистрации клиента
|
||||
- Исправлена работы корзин с корпоративными клиентами
|
||||
|
|
|
@ -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'
|
||||
];
|
||||
|
|
Loading…
Add table
Reference in a new issue