由于新的澳大利亚商品及服务税规则,我需要能够对价值低于1000美元的澳大利亚客户收取标准商品及服务税,对价值超过1000美元的销售收取零评级商品及服务税(因为这些由非盟海关处理)。
我想使用WooCommerce答案代码中的根据购物车商品价格有条件地设置不同的税率,该代码可以适应我的需求,针对具有澳大利亚送货地址的订单。
如果有人知道我怎么做,请告诉我。
使用与链接答案类似的代码,您可以尝试以下针对购物车小计高达1000美元的澳大利亚客户的方法:
add_action( 'woocommerce_before_calculate_totals', 'apply_conditionally_zero_tax_rate', 10, 1 );
function apply_conditionally_zero_tax_rate( $cart ) {
if ( is_admin() && ! defined( 'DOING_AJAX' ) )
return;
if ( did_action( 'woocommerce_before_calculate_totals' ) >= 2 )
return;
// Targeting australia billing country only
if ( WC()->customer->get_billing_country() !== 'AU' )
return;
$defined_amount = 1000;
$subtotal = 0;
// Loop through cart items (1st loop - get cart subtotal)
foreach ( $cart->get_cart() as $cart_item ) {
$subtotal += $cart_item['line_total'];
}
// Targeting cart subtotal up to the "defined amount"
if ( $subtotal < $defined_amount )
return;
// Loop through cart items (2nd loop - Change tax rate)
foreach ( $cart->get_cart() as $cart_item ) {
$cart_item['data']->set_tax_class( 'zero-rate' );
}
}
代码function.php活动子主题(或活动主题)的文件中。测试和工作。