extract customer phone and email from order for guests
This commit is contained in:
parent
af910c9353
commit
18571bfea7
1 changed files with 12 additions and 2 deletions
|
@ -269,6 +269,8 @@ if (!class_exists('WC_Retailcrm_Customers')) :
|
|||
$createdAt = $customer->get_date_created();
|
||||
$firstName = $customer->get_first_name();
|
||||
$lastName = $customer->get_last_name();
|
||||
$billingPhone = $customer->get_billing_phone();
|
||||
$email = $customer->get_email();
|
||||
|
||||
if (empty($firstName) && empty($lastName) && $order instanceof WC_Order) {
|
||||
$firstName = $order->get_billing_first_name();
|
||||
|
@ -282,6 +284,14 @@ if (!class_exists('WC_Retailcrm_Customers')) :
|
|||
if (empty($firstName)) {
|
||||
$firstName = $customer->get_username();
|
||||
}
|
||||
|
||||
if (empty($email)) {
|
||||
$email = $order->get_billing_email();
|
||||
}
|
||||
|
||||
if (empty($billingPhone)) {
|
||||
$order->get_billing_phone();
|
||||
}
|
||||
}
|
||||
|
||||
if (empty($createdAt)) {
|
||||
|
@ -292,7 +302,7 @@ if (!class_exists('WC_Retailcrm_Customers')) :
|
|||
'createdAt' => $createdAt->date('Y-m-d H:i:s'),
|
||||
'firstName' => $firstName,
|
||||
'lastName' => $lastName,
|
||||
'email' => $customer->get_email(),
|
||||
'email' => $email,
|
||||
'address' => $this->customer_address->build($customer, $order)->get_data()
|
||||
);
|
||||
|
||||
|
@ -300,7 +310,7 @@ if (!class_exists('WC_Retailcrm_Customers')) :
|
|||
$data_customer['externalId'] = $customer->get_id();
|
||||
}
|
||||
|
||||
if ($customer->get_billing_phone()) {
|
||||
if (!empty($billingPhone)) {
|
||||
$data_customer['phones'][] = array(
|
||||
'number' => $customer->get_billing_phone()
|
||||
);
|
||||
|
|
Loading…
Add table
Reference in a new issue