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

Update logic generate icml catalog. Check option 'Manage stocks' and 'Stocks status'

This commit is contained in:
dima-uryvskiy 2021-07-09 14:07:14 +03:00
parent 5979c7cb0e
commit d4fd185910

View file

@ -496,6 +496,13 @@ if ( ! class_exists( 'WC_Retailcrm_Icml' ) ) :
$tax = reset($tax_rates);
}
if ($product->get_manage_stock() == true) {
$stockQuantity = $product->get_stock_quantity();
$quantity = empty($stockQuantity) === false ? $stockQuantity : 0;
} else {
$quantity = $product->get_stock_status() === 'instock' ? 1 : 0;
}
$product_data = array(
'id' => $product->get_id(),
'productId' => ($product->get_parent_id() > 0) ? $parent->get_id() : $product->get_id(),
@ -504,7 +511,7 @@ if ( ! class_exists( 'WC_Retailcrm_Icml' ) ) :
'price' => wc_get_price_including_tax($product),
'picture' => $image[0],
'url' => ($product->get_parent_id() > 0) ? $parent->get_permalink() : $product->get_permalink(),
'quantity' => is_null($product->get_stock_quantity()) ? 0 : $product->get_stock_quantity(),
'quantity' => $quantity,
'categoryId' => $term_list,
'dimensions' => $dimensions,
'weight' => $weight,