Remove rounding because we already appropriately round in `get_rounded_items_total`.
This commit is contained in:
parent
1314fdc0e7
commit
d8388ef266
|
@ -684,7 +684,7 @@ final class WC_Cart_Totals {
|
||||||
|
|
||||||
$items_total = $this->get_rounded_items_total( $this->get_values_for_total( 'total' ) );
|
$items_total = $this->get_rounded_items_total( $this->get_values_for_total( 'total' ) );
|
||||||
|
|
||||||
$this->set_total( 'items_total', round( $items_total ) );
|
$this->set_total( 'items_total', $items_total );
|
||||||
$this->set_total( 'items_total_tax', array_sum( array_values( wp_list_pluck( $this->items, 'total_tax' ) ) ) );
|
$this->set_total( 'items_total_tax', array_sum( array_values( wp_list_pluck( $this->items, 'total_tax' ) ) ) );
|
||||||
|
|
||||||
$this->cart->set_cart_contents_total( $this->get_total( 'items_total' ) );
|
$this->cart->set_cart_contents_total( $this->get_total( 'items_total' ) );
|
||||||
|
|
Loading…
Reference in New Issue