Add create customer in system if not exist in system on manual upload order

This commit is contained in:
Ruslan Efanov 2021-07-06 16:16:16 +03:00
parent a1f97bc996
commit 8428f19421

View file

@ -39,7 +39,11 @@ 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']))
) {
$customer = $this->customer_manager->getCustomerForOrder($order_data);
if (!empty($customer)) {
$order['customer'] = $customer;
@ -167,4 +171,11 @@ class OrderManager {
$this->api->ordersPaymentEdit($order_payment);
}
}
private function checkExistCustomer(string $customerExternalId): bool
{
$result = $this->api->customersGet($customerExternalId);
return $result && $result->isSuccessful() && $result->offsetExists('customers');
}
}