1
0
Fork 0
mirror of synced 2025-04-06 07:13:33 +03:00
This commit is contained in:
iyzoer 2017-09-01 15:23:31 +03:00
parent 86d56277bf
commit 6758b78c71
2 changed files with 8 additions and 5 deletions

View file

@ -390,7 +390,6 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) :
$this->retailcrm->ordersFixExternalIds($ids);
}
$this->addFuncsHook();
}
@ -453,7 +452,6 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) :
protected function getShippingItemId($items)
{
if ($items) {
foreach ($items as $key => $value) {
$item_id[] = $key;
}

View file

@ -404,13 +404,18 @@ if ( ! class_exists( 'WC_Retailcrm_Icml' ) ) :
$product_data['params'] = $params;
}
$full_product_list[] = $product_data;
if (isset($product_data)) {
$full_product_list[] = $product_data;
}
unset($product_data);
}
endwhile;
$this->writeOffers($full_product_list);
unset($full_product_list);
if (isset($full_product_list) && $full_product_list) {
$this->writeOffers($full_product_list);
unset($full_product_list);
}
$offset += $limit;