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

ref #67728 [fix] исправлена передача ФИО клиента в заказе

This commit is contained in:
Бараников Максим 2020-09-11 16:16:24 +03:00
parent 754e1e8245
commit 19245b03bc
2 changed files with 22 additions and 4 deletions

View file

@ -189,8 +189,17 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) :
}
if ($update && $customerWasChanged) {
$this->order['firstName'] = $wcOrder->get_shipping_first_name();
$this->order['lastName'] = $wcOrder->get_shipping_last_name();
$firstName = $wcOrder->get_shipping_first_name();
$lastName = $wcOrder->get_shipping_last_name();
if(empty($firstName) && empty($lastName))
{
$firstName = $wcOrder->get_billing_first_name();
$lastName = $wcOrder->get_billing_last_name();
}
$this->order['firstName'] = $firstName;
$this->order['lastName'] = $lastName;
}
return true;

View file

@ -53,11 +53,20 @@ class WC_Retailcrm_Order extends WC_Retailcrm_Abstracts_Data
*/
public function build($order)
{
$firstName = $order->get_shipping_first_name();
$lastName = $order->get_shipping_last_name();
if(empty($firstName) && empty($lastName))
{
$firstName = $order->get_billing_first_name();
$lastName = $order->get_billing_last_name();
}
$data = array(
'externalId' => $order->get_id(),
'createdAt' => $order->get_date_created()->date('Y-m-d H:i:s'),
'firstName' => $order->get_shipping_first_name(),
'lastName' => $order->get_shipping_last_name(),
'firstName' => $firstName,
'lastName' => $lastName,
'email' => $order->get_billing_email(),
'customerComment' => $order->get_customer_note(),
'phone' => $order->get_billing_phone(),