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

bug fix inventories

This commit is contained in:
iyzoer 2017-09-01 17:38:14 +03:00
parent 6758b78c71
commit 5e3bf01e17
2 changed files with 12 additions and 6 deletions

View file

@ -1 +1,4 @@
# woocommerce-module
woocommerce-module
==================
Module allows integrate Woocommerce with [retailCRM](http://retailcrm.pro)

View file

@ -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();
}
}
}