1
0
Fork 0
mirror of synced 2025-04-03 22:03:34 +03:00

Change logic with product tax

This commit is contained in:
uryvskiy-dima 2022-12-27 18:03:56 +03:00
parent d7db03500b
commit dbeb2cb958
2 changed files with 9 additions and 8 deletions

View file

@ -1068,16 +1068,14 @@ if (!class_exists('WC_Retailcrm_History')) :
if (!empty($crmProduct['summ'])) {
if (wc_tax_enabled()) {
$itemRate = getShippingRate();
$wcOrder = wc_get_order($wcOrderItem->get_order_id());
$itemRate = getOrderItemRate($wcOrder);
if (empty($itemRate) || get_option('woocommerce_shipping_tax_class') == 'inherit') {
$wcOrder = wc_get_order($wcOrderItem->get_order_id());
$itemRate = getOrderItemRate($wcOrder);
if ($itemRate === null) {
$itemRate = getShippingRate();
}
$itemPrice = calculatePriceExcludingTax($crmProduct['summ'], $itemRate);
$wcOrderItem->set_total($itemPrice);
$wcOrderItem->set_total(calculatePriceExcludingTax($crmProduct['summ'], $itemRate));
} else {
$wcOrderItem->set_total($crmProduct['summ']);
}

View file

@ -138,7 +138,10 @@ function is_wplogin()
}
/**
* Get shipping rate.
* If a tax class with a standart rate is selected, woocommerce_shipping_tax_class = ''
* If a tax class with a zero rate is selected, woocommerce_shipping_tax_class = zero-rate
* If a tax class with a reduced rate is selected, woocommerce_shipping_tax_class = reduced-rate
* If the tax is calculated based on the items in the cart, woocommerce_shipping_tax_class = inherit
*
* @return mixed
*/