You appear to be a bot. Output may be restricted
Description
Set taxes.
This is an array of tax ID keys with total amount values.
Usage
WC_Order_Item_Fee::set_taxes( $raw_tax_data );
Parameters
- $raw_tax_data
- ( array ) required – Raw tax data.
Returns
void
Source
File name: woocommerce/includes/class-wc-order-item-fee.php
Lines:
1 to 16 of 16
public function set_taxes( $raw_tax_data ) { $raw_tax_data = maybe_unserialize( $raw_tax_data ); $tax_data = array( 'total' => array(), ); if ( ! empty( $raw_tax_data['total'] ) ) { $tax_data['total'] = array_map( 'wc_format_decimal', $raw_tax_data['total'] ); } $this->set_prop( 'taxes', $tax_data ); if ( 'yes' === get_option( 'woocommerce_tax_round_at_subtotal' ) ) { $this->set_total_tax( array_sum( $tax_data['total'] ) ); } else { $this->set_total_tax( array_sum( array_map( 'wc_round_tax_total', $tax_data['total'] ) ) ); } }