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

extract customer phone and email from order for guests

This commit is contained in:
Pavel 2020-02-13 13:35:26 +03:00 committed by Павел
parent 652faaeb71
commit 3e6b03f81a

View file

@ -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)) {
@ -298,7 +308,7 @@ if (!class_exists('WC_Retailcrm_Customers')) :
=======
'firstName' => $firstName,
'lastName' => $lastName,
'email' => $customer->get_email(),
'email' => $email,
'address' => $this->customer_address->build($customer, $order)->get_data()
>>>>>>> extract customer data from order for guests
);
@ -307,7 +317,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()
);