嗨,目前我想获得woocommerce的税率名称。我有办法获得这幅图中圈出的值:http://i.imgur.com/niSraFa.png
我目前的代码:
$items = $order->get_items();
$lineItem = array();
$productInfo = $orderInfo = array();
$order_items = array();
if ($items) foreach ($items as $item_key => $item_value) {
$_tax = new WC_Tax();
$_product = $order->get_product_from_item( $item_value );
$product_tax_class = $_product->get_tax_class();
$tax_class = $item_value['tax_class'];
答案 0 :(得分:5)
您可以使用WC_Tax()->find_rates()
方法。它将一个数组作为参数,在您的情况下为array( 'country' => 'NO' )
并返回一组匹配的税率。此数组的一个键是label
,其中包含税率的名称。
$tax = new WC_Tax();
$country_code = 'NO'; // or populate from order to get applicable rates
$rates = $tax->find_rates( array( 'country' => $country_code ) );
foreach( $rates as $rate ){
$tax_rate_name = $rate['label'];
}
要查找特定订单的适用税率,请使用订单上的送货/结算地址中的值填充find_rates()
的数组。