ref#87089 Fix bug with products tax
This commit is contained in:
parent
4edd42604b
commit
d7db03500b
7 changed files with 17 additions and 13 deletions
|
@ -1,3 +1,6 @@
|
|||
## 2022-12-26 4.5.3
|
||||
* Fix bug with products tax
|
||||
|
||||
## 2022-11-09 4.5.2
|
||||
* Add validator for CRM URL
|
||||
|
||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
4.5.2
|
||||
4.5.3
|
|
@ -1066,15 +1066,15 @@ if (!class_exists('WC_Retailcrm_History')) :
|
|||
$wcOrderItem->save();
|
||||
}
|
||||
|
||||
// Be aware that discounts may be added.
|
||||
if (!empty($crmProduct['summ'])) {
|
||||
if (wc_tax_enabled()) {
|
||||
$shippingTaxClass = get_option('woocommerce_shipping_tax_class');
|
||||
$itemRate = getShippingRate();
|
||||
|
||||
if (empty($itemRate) || get_option('woocommerce_shipping_tax_class') == 'inherit') {
|
||||
$wcOrder = wc_get_order($wcOrderItem->get_order_id());
|
||||
$itemRate = getOrderItemRate($wcOrder);
|
||||
}
|
||||
|
||||
$wcOrder = wc_get_order($wcOrderItem->get_order_id());
|
||||
$itemRate = $shippingTaxClass == 'inherit'
|
||||
? getOrderItemRate($wcOrder)
|
||||
: getShippingRate();
|
||||
$itemPrice = calculatePriceExcludingTax($crmProduct['summ'], $itemRate);
|
||||
|
||||
$wcOrderItem->set_total($itemPrice);
|
||||
|
|
|
@ -176,9 +176,7 @@ function getOrderItemRate($wcOrder)
|
|||
|
||||
function calculatePriceExcludingTax($priceIncludingTax, $rate)
|
||||
{
|
||||
$decimalPlaces = wc_get_price_decimals();
|
||||
|
||||
return round($priceIncludingTax / (1 + $rate / 100), $decimalPlaces);
|
||||
return round($priceIncludingTax / (1 + $rate / 100), wc_get_price_decimals());
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -5,7 +5,7 @@ Tags: Интеграция, Simla.com, simla
|
|||
Requires PHP: 7.0
|
||||
Requires at least: 5.3
|
||||
Tested up to: 6.0
|
||||
Stable tag: 4.5.2
|
||||
Stable tag: 4.5.3
|
||||
License: GPLv1 or later
|
||||
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 ==
|
||||
= 4.5.3 =
|
||||
* Fix bug with products tax
|
||||
|
||||
= 4.5.2 =
|
||||
* Add validator for CRM URL
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
* Description: Integration plugin for WooCommerce & Simla.com
|
||||
* Author: RetailDriver LLC
|
||||
* Author URI: http://retailcrm.pro/
|
||||
* Version: 4.5.2
|
||||
* Version: 4.5.3
|
||||
* Tested up to: 6.0
|
||||
* WC requires at least: 5.4
|
||||
* WC tested up to: 6.9
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @link https://wordpress.org/plugins/woo-retailcrm/
|
||||
*
|
||||
* @version 4.5.2
|
||||
* @version 4.5.3
|
||||
*
|
||||
* @package RetailCRM
|
||||
*/
|
||||
|
|
Loading…
Add table
Reference in a new issue