1
0
Fork 0
mirror of synced 2025-04-06 07:13:33 +03:00

fix customer squashing

This commit is contained in:
Pavel 2020-02-13 15:17:52 +03:00
parent 18571bfea7
commit f129f8706f
2 changed files with 66 additions and 3 deletions

View file

@ -383,13 +383,23 @@ if (!class_exists('WC_Retailcrm_Customers')) :
$search = $this->retailcrm->customersList(array('email' => $filter['email']));
}
if ($search->isSuccessful()) {
if (isset($search) && $search->isSuccessful()) {
$customer = false;
if (isset($search['customers'])) {
if (empty($search['customers'])) {
return false;
}
$customer = reset($search['customers']);
if (isset($filter['email']) && count($filter) == 1) {
foreach ($search['customers'] as $finding) {
if (isset($finding['email']) && $finding['email'] == $filter['email']) {
$customer = $finding;
}
}
} else {
$customer = reset($search['customers']);
}
} else {
$customer = !empty($search['customer']) ? $search['customer'] : false;
}
@ -410,7 +420,11 @@ if (!class_exists('WC_Retailcrm_Customers')) :
*/
public function findCustomerEmailOrId($customerExternalId, $customerEmailOrPhone)
{
$customer = $this->searchCustomer(array('externalId' => $customerExternalId));
$customer = false;
if (!empty($customerExternalId)) {
$customer = $this->searchCustomer(array('externalId' => $customerExternalId));
}
if (!$customer) {
$customer = $this->searchCustomer(array('email' => $customerEmailOrPhone));
@ -460,6 +474,51 @@ if (!class_exists('WC_Retailcrm_Customers')) :
return false;
}
/**
* Find corporate customer by main company name
*
* @param $companyName
*
* @return array
*TODO
* Replace with filter[nickName][] (search by nickname, company name and VAT).
* Logic below is slow and only can search by main company.
*/
public function findCorporateCustomerByMainCompany($companyName)
{
$response = true;
$page = null;
do {
$response = $this->retailcrm->customersCorporateList(array(), $page, 100);
if ($response instanceof WC_Retailcrm_Response && $response->isSuccessful()) {
if (is_null($page) && isset($response['pagination']['totalPageCount'])) {
$page = $response['pagination']['totalPageCount'];
}
if ($response->offsetExists('customersCorporate')) {
foreach ($response['customersCorporate'] as $crmCorporate) {
if (isset($crmCorporate['mainCompany'])
&& $crmCorporate['mainCompany']['name'] == $companyName
) {
return $crmCorporate;
}
}
}
$page--;
}
time_nanosleep(0, 300000000);
} while ($response instanceof WC_Retailcrm_Response &&
$response->isSuccessful() &&
(isset($response['pagination']) && $page > 0)
);
return array();
}
/**
* @param WC_Order $order
*

View file

@ -241,6 +241,10 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) :
break;
}
}
} else {
$crmCorporate = $this
->customers
->findCorporateCustomerByMainCompany($wcOrder->get_billing_company());
}
if (empty($crmCorporate) || (!empty($crmCorporate['mainCompany'])