bug fix inventories
This commit is contained in:
parent
6758b78c71
commit
5e3bf01e17
2 changed files with 12 additions and 6 deletions
|
@ -1 +1,4 @@
|
|||
# woocommerce-module
|
||||
woocommerce-module
|
||||
==================
|
||||
|
||||
Module allows integrate Woocommerce with [retailCRM](http://retailcrm.pro)
|
|
@ -42,11 +42,14 @@ if ( ! class_exists( 'WC_Retailcrm_Inventories' ) ) :
|
|||
if (isset($offer['externalId'])) {
|
||||
$product = wc_get_product($offer['externalId']);
|
||||
|
||||
if ($product == false || $product->get_type() == 'variable') continue;
|
||||
|
||||
update_post_meta($offer['externalId'], '_manage_stock', 'yes');
|
||||
$product->set_stock_quantity($offer['quantity']);
|
||||
$product->save();
|
||||
if ($product != false) {
|
||||
if ($product->get_type() == 'variable') {
|
||||
continue;
|
||||
}
|
||||
update_post_meta($offer['externalId'], '_manage_stock', 'yes');
|
||||
$product->set_stock_quantity($offer['quantity']);
|
||||
$product->save();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue