mirror of
https://github.com/retailcrm/opencart-module.git
synced 2025-04-05 14:23:37 +03:00
Add create customer in system if not exist in system on manual upload order
This commit is contained in:
parent
a1f97bc996
commit
8428f19421
1 changed files with 12 additions and 1 deletions
|
@ -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');
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue