parent
5c70a32d36
commit
d284c25e62
@ -1,4 +1,4 @@
|
|||||||
## 2022-05-26 4.6.3
|
## 2022-05-26 4.6.4
|
||||||
* Optimizing unloading of stock
|
* Optimizing unloading of stock
|
||||||
|
|
||||||
## 2022-05-29 4.6.3
|
## 2022-05-29 4.6.3
|
||||||
|
@ -70,7 +70,11 @@ if (!class_exists('WC_Retailcrm_Inventories')) :
|
|||||||
if (isset($offer[$this->bind_field])) {
|
if (isset($offer[$this->bind_field])) {
|
||||||
$product = retailcrm_get_wc_product($offer[$this->bind_field], $this->retailcrm_settings);
|
$product = retailcrm_get_wc_product($offer[$this->bind_field], $this->retailcrm_settings);
|
||||||
|
|
||||||
if ($product instanceof WC_Product && $product->get_type() != 'external') {
|
if ($product instanceof WC_Product) {
|
||||||
|
if ($product->get_type() == 'external') {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
if ($product->get_type() == 'variation' || $product->get_type() == 'variable') {
|
if ($product->get_type() == 'variation' || $product->get_type() == 'variable') {
|
||||||
$parentId = $product->get_parent_id();
|
$parentId = $product->get_parent_id();
|
||||||
|
|
||||||
|
@ -82,7 +82,7 @@ Asegúrate de tener una clave API específica para cada tienda. Las siguientes i
|
|||||||
|
|
||||||
|
|
||||||
== Changelog ==
|
== Changelog ==
|
||||||
= 4.6.3 =
|
= 4.6.4 =
|
||||||
* Optimizing unloading of stock
|
* Optimizing unloading of stock
|
||||||
|
|
||||||
= 4.6.3 =
|
= 4.6.3 =
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
* Description: Integration plugin for WooCommerce & Simla.com
|
* Description: Integration plugin for WooCommerce & Simla.com
|
||||||
* Author: RetailDriver LLC
|
* Author: RetailDriver LLC
|
||||||
* Author URI: http://retailcrm.pro/
|
* Author URI: http://retailcrm.pro/
|
||||||
* Version: 4.6.3
|
* Version: 4.6.4
|
||||||
* Tested up to: 6.0
|
* Tested up to: 6.0
|
||||||
* WC requires at least: 5.4
|
* WC requires at least: 5.4
|
||||||
* WC tested up to: 6.9
|
* WC tested up to: 6.9
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
*
|
*
|
||||||
* @link https://wordpress.org/plugins/woo-retailcrm/
|
* @link https://wordpress.org/plugins/woo-retailcrm/
|
||||||
*
|
*
|
||||||
* @version 4.6.3
|
* @version 4.6.4
|
||||||
*
|
*
|
||||||
* @package RetailCRM
|
* @package RetailCRM
|
||||||
*/
|
*/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user