猿问

如何在 WC_Shipping_Methodcalculate_shipping()

因此,我试图创建一种 woocommerce 运输方法,该方法采用购物车小计并按用户定义的购物车小计百分比收取运费。作为实现这个目标的第一步,我所做的基本上是这样的


class Subtotal_Percentage_Method extends WC_Shipping_Method {

    // to store percentage

    private $percentage_rate

    // constructor that handles settings

    // here is where i start calculation

    public function calculate_shipping($packages = array()) {

        $cost = $this->percentage_rate * 1000;

        add_rate(array(

            'id' => $this->id,

            'label' => $this->title,

            'cost' => $cost

        ));

    }

}

这个有效。但是,当我更改calculate_shipping方法以在计算中使用购物车小计时,它不起作用


public function calculate_shipping($packages = array()) {

    $subtotal = WC()->cart->subtotal;

    $cost = $subtotal * $this->percentage_rate / 100;

    add_rate(array(

        'id' => $this->id,

        'label' => $this->title,

        'cost' => $cost

    ));

}

谁能告诉我我做错了什么?


慕神8447489
浏览 78回答 1
1回答

汪汪一只猫

由于这与运输包裹有关(因为购物车商品可以拆分(划分)为多个运输包裹),因此您需要使用方法$packages中包含的变量参数calculate_shipping()。WC_Cart因此,如果不使用对象方法,您的代码将会略有不同:public function calculate_shipping( $packages = array() ) {    $total = $total_tax = 0; // Initializing    // Loop through shipping packages    foreach( $packages as $key => $package ){            // Loop through cart items for this package        foreach( $package['contents'] as $item ){            $total      += $item['total']; // Item subtotal discounted            $total_tax  += $item['total_tax']; // Item subtotal tax discounted        }    }    add_rate( array(        'id'       => $this->id,        'label'    => $this->title,        'cost'     => $total * $this->percentage_rate / 100,        // 'calc_tax' => 'per_item'    ) );}代码位于活动子主题(活动主题)的functions.php 文件中。经过测试并有效。注:此处计算的是折扣后的购物车商品小计(不含税)。您可以轻松添加添加使其在含税折扣后的购物车商品小计中,替换:'cost'     => $total * $this->percentage_rate / 100, 经过:'cost'     => ($total + $total_tax) * $this->percentage_rate / 100,您可以查看如何制作运输包裹:WC_Cart get_shipping_packages()方法源代码如果您还想处理传送类等,请检查:WC_Shipping_Flat_Rate calculate_shipping()方法源代码。
随时随地看视频慕课网APP
我要回答