gpt4 book ai didi

php - Woocommerce 设置运输方式,获取运费

转载 作者:行者123 更新时间:2023-12-04 15:54:27 24 4
gpt4 key购买 nike

在我的 functions.php 文件中,我需要能够设置送货方式(本网站只有一种方式),然后返回运费(设置了一些费用)。

我可以使用此查看 flat_rate 运费:

foreach (WC()->shipping->get_shipping_methods() as $key => $value){
echo $key;
}

所以它肯定存在。

基本上,我希望通过 API 调用返回运费。我已经路由了 API,并且一切正常。它调用了我在某处找到的这个函数,目前不记得了:

function pc_get_shipping(){
$ret = array();
foreach( WC()->session->get('shipping_for_package_0')['rates'] as $method_id => $rate ){
if( WC()->session->get('chosen_shipping_methods')[0] == $method_id ){
$rate_label = $rate->label; // The shipping method label name
$rate_cost_excl_tax = floatval($rate->cost); // The cost excluding tax
// The taxes cost
$rate_taxes = 0;
foreach ($rate->taxes as $rate_tax)
$rate_taxes += floatval($rate_tax);
// The cost including tax
$rate_cost_incl_tax = $rate_cost_excl_tax + $rate_taxes;

$ret[] = array('label' => $rate_label, 'total' => WC()->cart->get_cart_shipping_total());
}
}
return $ret;
}

但这只给了我一个空数组,可能是因为 WC()->session->get('shipping_for_package_0')['rates'] 求值为一个空数组。

TL:DR

  • guest 客户送货信息通过 WC()->customer->set_shipping_address_1(wc_clean($value));(所有值等)

  • 使用 WC()->customer->get_shipping() 正确返回 guest 客户送货信息,因此我相信它设置正确。

  • 送货方式 flat_rate 可通过 WC()->shipping->get_shipping_methods() 获得。

  • 如何在 functions.php 中为当前订单设置送货方式,该方法将通过 REST API 调用。

  • 如何在 functions.php 中通过 REST API 调用的方法获取当前订单的计算运费

最佳答案

首先在您的 API 响应中,您应该需要在 WC_Session 中将成本值设置为自定义数据,使用类似 (where$value 的响应来自您的 API 的成本值):

if( ! WC()->session->__isset( 'shipping_cost' ) && ! empty($value) ){
WC()->session->set( 'shipping_cost', $value );
}

you may need to ajax refresh checkout page using jQuery: $('body').trigger('update_checkout');

然后你将使用这个钩子(Hook)函数:

add_filter('woocommerce_package_rates', 'shipping_cost_based_on_api', 12, 2);
function shipping_cost_based_on_api( $rates, $package ){
if( WC()->session->__isset( 'shipping_cost' ) ) {

// Loop through the shipping taxes array
foreach ( $rates as $rate_key => $rate ){
$has_taxes = false;

if( 'flat_rate' === $rate->method_id ){
// Get the initial cost
$initial_cost = $new_cost = $rates[$rate_key]->cost;

// Get the new cost
$new_cost = WC()->session->get( 'shipping_cost' );

// Set the new cost
$rates[$rate_key]->cost = $new_cost;

// Taxes rate cost (if enabled)
$taxes = [];
// Loop through the shipping taxes array (as they can be many)
foreach ($rates[$rate_key]->taxes as $key => $tax){
if( $rates[$rate_key]->taxes[$key] > 0 ){
// Get the initial tax cost
$initial_tax_cost = $new_tax_cost = $rates[$rate_key]->taxes[$key];
// Get the tax rate conversion
$tax_rate = $initial_tax_cost / $initial_cost;
// Set the new tax cost
$taxes[$key] = $new_cost * $tax_rate;
$has_taxes = true; // Enabling tax
}
}
if( $has_taxes )
$rates[$rate_key]->taxes = $taxes;
}
}
}
return $rates;
}

// Enabling, disabling and refreshing session shipping methods data
add_action( 'woocommerce_checkout_update_order_review', 'refresh_shipping_methods', 10, 1 );
function refresh_shipping_methods( $post_data ){
$bool = true;
if ( WC()->session->__isset('shipping_cost' ) ) $bool = false;

// Mandatory to make it work with shipping methods
foreach ( WC()->cart->get_shipping_packages() as $package_key => $package ){
WC()->session->set( 'shipping_for_package_' . $package_key, $bool );
}
WC()->cart->calculate_shipping();
}

代码进入事件子主题(或事件主题)的 function.php 文件。它应该有效。

基于:Remove shipping cost if custom checkbox is checked in WooCommerce Checkout

关于php - Woocommerce 设置运输方式,获取运费,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52358370/

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