1
0
Fork 0
mirror of synced 2025-04-03 22:03:34 +03:00

Fix upload inventories

This commit is contained in:
Mozgito 2021-10-26 15:01:07 +03:00
parent 5d999f6fde
commit 20782eb1bd

View file

@ -71,8 +71,7 @@ if (!class_exists('WC_Retailcrm_Inventories')) :
$product = retailcrm_get_wc_product($offer[$this->bind_field], $this->retailcrm_settings);
if ($product instanceof WC_Product) {
if ($product->get_type() == 'variation' || $product->get_type() == 'variable') {
$parentId = $product->get_parent_id();
if (($product->get_type() == 'variation' || $product->get_type() == 'variable') && $parentId = $product->get_parent_id()) {
if (isset($variationProducts[$parentId])) {
$variationProducts[$parentId] += $offer['quantity'];