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

fixes & more fields for sync

This commit is contained in:
Pavel 2020-06-01 09:38:17 +03:00
parent c9ed0dcbd3
commit 41ad7bbbce

View file

@ -352,6 +352,7 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) :
$wc_order->set_shipping_last_name($order['lastName']);
}
<<<<<<< HEAD
if (isset($order['phone'])) {
$wc_order->set_billing_phone($order['phone']);
}
@ -360,6 +361,8 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) :
$wc_order->set_billing_email($order['email']);
}
=======
>>>>>>> fixes & more fields for sync
if (array_key_exists('items', $order)) {
foreach ($order['items'] as $key => $item) {
@ -485,17 +488,19 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) :
$wc_order->save();
$checkNewItem = false;
foreach ($order['items'] as $item) {
if (!empty($item['externalIds'])) {
continue;
} else {
$checkNewItem = true;
if (isset($order['items'])) {
$checkNewItem = false;
foreach ($order['items'] as $item) {
if (!empty($item['externalIds'])) {
continue;
} else {
$checkNewItem = true;
}
}
}
if ($checkNewItem == true) {
$this->editOrder($this->retailcrm_settings, $wc_order, $order,'update');
if ($checkNewItem == true) {
$this->editOrder($this->retailcrm_settings, $wc_order, $order,'update');
}
}
return $wc_order->get_id();
@ -581,6 +586,10 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) :
return false;
}
if (isset($order['managerComment']) && !empty($order['managerComment'])) {
$wc_order->add_order_note($order['managerComment'], 0, false);
}
if (isset($order['customer']['type'])
&& $order['customer']['type'] == 'customer_corporate'
&& !empty($order['customer']['mainCompany'])