Краткая запись тернарных операторов и проверка на принадлежность классу
This commit is contained in:
parent
c4fdfffc9b
commit
3cc89dcc62
1 changed files with 3 additions and 3 deletions
|
@ -472,12 +472,12 @@ class RetailCrmOrder
|
|||
$crmBasket = RCrmActions::apiMethod($api, 'cartGet', __METHOD__, $externalId, $site);
|
||||
$orderResponse = $client->createOrder($order, $site);
|
||||
|
||||
if ($orderResponse->success === false) {
|
||||
if ($orderResponse instanceof OrdersCreateResponse && $orderResponse->success !== true) {
|
||||
|
||||
Logger::getInstance()->write([
|
||||
'methodApi' => 'orderCreate',
|
||||
'errorMsg' => !empty($orderResponse->errorMsg) ? $orderResponse->errorMsg : '',
|
||||
'errors' => !empty($orderResponse->errors) ? $orderResponse->errors : '',
|
||||
'errorMsg' => $orderResponse->errorMsg ?? '',
|
||||
'errors' => $orderResponse->errors ?? '',
|
||||
'params' => ['number' => $order['number'], 'externalId' => $order['externalId']]
|
||||
], 'apiErrors');
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue