Fix upload inventories
This commit is contained in:
parent
5d999f6fde
commit
20782eb1bd
1 changed files with 1 additions and 2 deletions
|
@ -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'];
|
||||
|
|
Loading…
Add table
Reference in a new issue