Woocommerce定制运输价格含税

Vip*_*pul 5 php wordpress shipping woocommerce

我有添加的自定义运输方法来计算运输,并使用以下代码

public function calculate_shipping( $package ) {
                $postcode_data = $package['destination']['postcode'];
                if(!empty($postcode_data)){
                $weight = 0;    
                $zone_data = checkzone($postcode_data);
                if(isset($package['destination']['postcode'])){
                if(!empty($zone_data)){     
                $weight = WC()->cart->cart_contents_weight;  // get cart total weight   
                if($weight <= 100){
                    $weight_range = ceil($weight / 10 );
                }
                elseif(($weight > 100 ) && ($weight < 150) ){
                    $weight_range = 11 ; 
                }
                if($weight >= 150) 
                {
                    $weight_range = 12 ; 
                }

                $pricing = getpricing($zone_data , $weight_range); 


                if($pricing > 0){                   
                $rate = array(
                    'id' => $this->id,
                    'label' => 'Delivery',
                    'cost' => $pricing,
                    'calc_tax' => 'per_order'
                );
                // Register the rate
                $this->add_rate( $rate );
                wc_clear_notices();
                }

                  } // if zone data

                    }
            }
            else { 
                $rate = array(
                    'id' => $this->id,
                    'label' => 'Delivery',
                    'cost' => 0,
                    'calc_tax' => 'per_order'
                );
                // Register the rate
                $this->add_rate( $rate );
                //wc_clear_notices();                   
                //wc_add_notice( 'Please enter zipcode to calculate the shipping', 'error' );       

                }   
                } // calculate shipping
Run Code Online (Sandbox Code Playgroud)

但是在前端,它是增加税额(不包括税)。因为产品税可以正常工作,但运费是价格的专有权,我希望包括税收的运费。