tax text for negative shipping (refunds)
This commit is contained in:
parent
3f0b589797
commit
1e2d0775c4
|
@ -1654,7 +1654,7 @@ abstract class WC_Abstract_Order {
|
||||||
// Show shipping excluding tax
|
// Show shipping excluding tax
|
||||||
$shipping = wc_price( $this->order_shipping, array('currency' => $this->get_order_currency()) );
|
$shipping = wc_price( $this->order_shipping, array('currency' => $this->get_order_currency()) );
|
||||||
|
|
||||||
if ( $this->order_shipping_tax > 0 && $this->prices_include_tax ) {
|
if ( $this->order_shipping_tax != 0 && $this->prices_include_tax ) {
|
||||||
$tax_text = WC()->countries->ex_tax_or_vat() . ' ';
|
$tax_text = WC()->countries->ex_tax_or_vat() . ' ';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1663,7 +1663,7 @@ abstract class WC_Abstract_Order {
|
||||||
// Show shipping including tax
|
// Show shipping including tax
|
||||||
$shipping = wc_price( $this->order_shipping + $this->order_shipping_tax, array('currency' => $this->get_order_currency()) );
|
$shipping = wc_price( $this->order_shipping + $this->order_shipping_tax, array('currency' => $this->get_order_currency()) );
|
||||||
|
|
||||||
if ( $this->order_shipping_tax > 0 && ! $this->prices_include_tax ) {
|
if ( $this->order_shipping_tax != 0 && ! $this->prices_include_tax ) {
|
||||||
$tax_text = WC()->countries->inc_tax_or_vat() . ' ';
|
$tax_text = WC()->countries->inc_tax_or_vat() . ' ';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue