1
0
mirror of synced 2025-02-20 17:03:13 +03:00

Bug fixes of generating ICML

This commit is contained in:
Akolzin Dmitry 2020-03-31 15:26:33 +03:00
parent 889797330a
commit 3a57c25f9b
6 changed files with 17 additions and 5 deletions

View File

@ -1,3 +1,9 @@
## 2019-03-31 3.6.1
* Исправлена ошибка генерации каталога товаров
## 2020-03-25 3.6.0
* Добавлена настройка передачи суммы оплаты
## 2019-10-07 3.5.4
* Добавлена возможность обработки одинаковых товарных позиций

View File

@ -1 +1 @@
3.6.0
3.6.1

View File

@ -364,6 +364,10 @@ if ( ! class_exists( 'WC_Retailcrm_Icml' ) ) :
} elseif ($offer->get_type() == 'variable') {
foreach ($offer->get_children() as $child_id) {
$child_product = wc_get_product($child_id);
if (!$child_product) {
continue;
}
$this->setOffer($full_product_list, $product_attributes, $child_product, $offer);
}
}

View File

@ -45,6 +45,8 @@ API-ключ должен быть для отдельного магазина
2. В появившихся списках справочников настройте соответствие способов доставки и оплаты, а так же статусов заказов. Отметьте галочку "Выгружать остатки", если хотите выгружать остатки из Retailcrm в магазин (подробнее смотрите в описании).
== Changelog ==
= 3.6.1 =
* Исправлена ошибка генерации каталога товаров
= 3.6.0 =
* Добавлена настройка передачи суммы оплаты в retailCRM

View File

@ -1,11 +1,11 @@
<?php
/**
* Version: 3.6.0
* Version: 3.6.1
* WC requires at least: 3.0
* WC tested up to: 3.9.3
* Plugin Name: WooCommerce RetailCRM
* Plugin Name: WooCommerce retailCRM
* Plugin URI: https://wordpress.org/plugins/woo-retailcrm/
* Description: Integration plugin for WooCommerce & RetailCRM
* Description: Integration plugin for WooCommerce & retailCRM
* Author: RetailDriver LLC
* Author URI: http://retailcrm.pro/
* Text Domain: retailcrm

View File

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