mirror of
https://github.com/retailcrm/opencart-module.git
synced 2025-04-04 05:43:37 +03:00
fix code review
This commit is contained in:
parent
07603934ba
commit
1f7d3679fd
1 changed files with 2 additions and 4 deletions
|
@ -39,8 +39,7 @@ class OrderManager {
|
|||
public function createOrder($order_data, $order_products, $order_totals) {
|
||||
$order = $this->prepareOrder($order_data, $order_products, $order_totals);
|
||||
|
||||
if (
|
||||
!isset($order['customer'])
|
||||
if (!isset($order['customer'])
|
||||
|| (isset($order['customer']['externalId'])
|
||||
&& !$this->checkExistCustomer($order['customer']['externalId']))
|
||||
) {
|
||||
|
@ -177,8 +176,7 @@ class OrderManager {
|
|||
*
|
||||
* @return bool
|
||||
*/
|
||||
private function checkExistCustomer($customerExternalId)
|
||||
{
|
||||
private function checkExistCustomer($customerExternalId) {
|
||||
$result = $this->api->customersGet($customerExternalId);
|
||||
|
||||
return $result && $result->isSuccessful() && $result->offsetExists('customer');
|
||||
|
|
Loading…
Add table
Reference in a new issue