parent
4ea6015d74
commit
97cc1c1337
@ -1,3 +1,6 @@
|
|||||||
|
## 2023-10-26 4.6.13
|
||||||
|
* Fix not correct scoring product total price when product price is not number
|
||||||
|
|
||||||
## 2023-10-02 4.6.12
|
## 2023-10-02 4.6.12
|
||||||
* Added currency validation when configuring the module
|
* Added currency validation when configuring the module
|
||||||
|
|
||||||
|
@ -1176,7 +1176,7 @@ if (!class_exists('WC_Retailcrm_History')) :
|
|||||||
$wcProduct,
|
$wcProduct,
|
||||||
[
|
[
|
||||||
'qty' => $quantity,
|
'qty' => $quantity,
|
||||||
'price' => $wcProduct->get_price() - $discountTotal,
|
'price' => (float)$wcProduct->get_price() - $discountTotal,
|
||||||
]
|
]
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -5,7 +5,7 @@ Tags: Интеграция, Simla.com, simla
|
|||||||
Requires PHP: 7.0
|
Requires PHP: 7.0
|
||||||
Requires at least: 5.3
|
Requires at least: 5.3
|
||||||
Tested up to: 6.2
|
Tested up to: 6.2
|
||||||
Stable tag: 4.6.12
|
Stable tag: 4.6.13
|
||||||
License: GPLv1 or later
|
License: GPLv1 or later
|
||||||
License URI: http://www.gnu.org/licenses/gpl-1.0.html
|
License URI: http://www.gnu.org/licenses/gpl-1.0.html
|
||||||
|
|
||||||
@ -82,6 +82,9 @@ Asegúrate de tener una clave API específica para cada tienda. Las siguientes i
|
|||||||
|
|
||||||
|
|
||||||
== Changelog ==
|
== Changelog ==
|
||||||
|
= 4.6.13 =
|
||||||
|
* Fix not correct scoring product total price when product price is not number
|
||||||
|
|
||||||
= 4.6.12 =
|
= 4.6.12 =
|
||||||
* Added currency validation when configuring the module
|
* Added currency validation when configuring the module
|
||||||
|
|
||||||
|
@ -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.12
|
* Version: 4.6.13
|
||||||
* Tested up to: 6.2
|
* Tested up to: 6.2
|
||||||
* WC requires at least: 5.4
|
* WC requires at least: 5.4
|
||||||
* WC tested up to: 7.8
|
* WC tested up to: 7.8
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
*
|
*
|
||||||
* @link https://wordpress.org/plugins/woo-retailcrm/
|
* @link https://wordpress.org/plugins/woo-retailcrm/
|
||||||
*
|
*
|
||||||
* @version 4.6.12
|
* @version 4.6.13
|
||||||
*
|
*
|
||||||
* @package RetailCRM
|
* @package RetailCRM
|
||||||
*/
|
*/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user