gpt4 book ai didi

php - 如何在 WC_Shipping_Method calculate_shipping() 方法中获取购物车小计

转载 作者:行者123 更新时间:2023-12-04 09:04:38 29 4
gpt4 key购买 nike

因此,我试图创建一种 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
));
}
谁能告诉我我做错了什么?

最佳答案

由于这与运输包裹有关(因为购物车项目可以拆分(划分)为多个运输包裹),因此您需要改用变量 $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,

You can see how are made the shipping packages looking to:
WC_Cart get_shipping_packages() method source code


If you want to handle also shipping classes and more, check:
WC_Shipping_Flat_Rate calculate_shipping() method source code.

关于php - 如何在 WC_Shipping_Method calculate_shipping() 方法中获取购物车小计,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63476942/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com