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

Add display of the total number of product variables

This commit is contained in:
dima-uryvskiy 2021-03-15 17:37:21 +03:00
parent 3ba2f1662e
commit c195e27e50
6 changed files with 44 additions and 15 deletions

View file

@ -1,3 +1,11 @@
## 2021-03-15 4.2.4
* Добавили отображение общего количества вариативных товаров
* Добавили валидацию на дату создания заказа
* Добавили валидацию на заказы с auto-draft статусом
* Обновили версии WP и WC в локальных тестах
* Исправили баг в опции "Передача номера заказа"
## 2021-01-20 4.2.3
* Обновление версии в маркетплейсе

View file

@ -1 +1 @@
4.2.3
4.2.4

View file

@ -52,7 +52,8 @@ if (!class_exists('WC_Retailcrm_Inventories')) :
return null;
}
$page = 1;
$page = 1;
$variationProducts = array();
do {
/** @var WC_Retailcrm_Response $result */
@ -69,18 +70,31 @@ if (!class_exists('WC_Retailcrm_Inventories')) :
if (isset($offer[$this->bind_field])) {
$product = retailcrm_get_wc_product($offer[$this->bind_field], $this->retailcrm_settings);
if ($product instanceof WC_Product) {
if ($product->get_type() == 'variable') {
continue;
}
if ($product instanceof WC_Product) {
if ($product->get_type() == 'variation' || $product->get_type() == 'variable') {
$parentId = $product->get_parent_id();
$product->set_manage_stock(true);
$product->set_stock_quantity($offer['quantity']);
$success[] = $product->save();
}
}
}
} while ($page <= $totalPageCount);
if (isset($variationProducts[$parentId])) {
$variationProducts[$parentId] += $offer['quantity'];
} else {
$variationProducts[$parentId] = $offer['quantity'];
}
}
$product->set_manage_stock(true);
$product->set_stock_quantity($offer['quantity']);
$success[] = $product->save();
}
}
}
foreach ($variationProducts as $id => $quantity) {
$variationProduct = wc_get_product($id);
$variationProduct->set_manage_stock(true);
$variationProduct->set_stock($quantity);
$success[] = $variationProduct->save();
}
} while ($page <= $totalPageCount);
return $success;
}

View file

@ -83,6 +83,13 @@ Asegúrate de tener una clave API específica para cada tienda. Las siguientes i
== Changelog ==
= 4.2.4 =
* Добавили отображение общего количества вариативных товаров
* Добавили валидацию на дату создания заказа
* Добавили валидацию на заказы с auto-draft статусом
* Обновили версии WP и WC в локальных тестах
* Исправили баг в опции "Передача номера заказа"
= 4.2.3=
* Обновление версии в маркетплейсе

View file

@ -1,6 +1,6 @@
<?php
/**
* Version: 4.2.3
* Version: 4.2.4
* WC requires at least: 3.0
* WC tested up to: 4.7.1
* Plugin Name: WooCommerce RetailCRM

View file

@ -15,7 +15,7 @@
*
*
* @link https://wordpress.org/plugins/woo-retailcrm/
* @version 4.2.3
* @version 4.2.4
*
* @package RetailCRM
*/