fix for php5.3
This commit is contained in:
parent
baa1f3d581
commit
92a5673614
@ -358,9 +358,6 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) :
|
|||||||
$order['items'][$key]['woocomerceId'] = $result;
|
$order['items'][$key]['woocomerceId'] = $result;
|
||||||
} else {
|
} else {
|
||||||
foreach ($wc_order->get_items() as $order_item_id => $order_item) {
|
foreach ($wc_order->get_items() as $order_item_id => $order_item) {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
if ($order_item['variation_id'] != 0 ) {
|
if ($order_item['variation_id'] != 0 ) {
|
||||||
$offer_id = $order_item['variation_id'];
|
$offer_id = $order_item['variation_id'];
|
||||||
} else {
|
} else {
|
||||||
@ -671,7 +668,7 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) :
|
|||||||
*/
|
*/
|
||||||
protected function editOrder($settings, $wc_order, $order, $event = 'create')
|
protected function editOrder($settings, $wc_order, $order, $event = 'create')
|
||||||
{
|
{
|
||||||
$order_items = [];
|
$order_items = array();
|
||||||
if ($event == 'update') {
|
if ($event == 'update') {
|
||||||
$result = $this->retailcrm->ordersGet($order['externalId']);
|
$result = $this->retailcrm->ordersGet($order['externalId']);
|
||||||
if ($result->isSuccessful()) {
|
if ($result->isSuccessful()) {
|
||||||
@ -703,10 +700,10 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) :
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (!empty($order_items)) {
|
if (!empty($order_items)) {
|
||||||
$orderEdit = [
|
$orderEdit = array(
|
||||||
'id' => $order['id'],
|
'id' => $order['id'],
|
||||||
'items' => $order_items,
|
'items' => $order_items,
|
||||||
];
|
);
|
||||||
|
|
||||||
$this->retailcrm->ordersEdit($orderEdit, 'id');
|
$this->retailcrm->ordersEdit($orderEdit, 'id');
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user