bug fix
This commit is contained in:
parent
86d56277bf
commit
6758b78c71
2 changed files with 8 additions and 5 deletions
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue