gpt4 book ai didi

php - 从 Android 应用程序创建新订单时如何使用 Woocommerce REST API 应用优惠券?

转载 作者:行者123 更新时间:2023-11-29 02:41:26 27 4
gpt4 key购买 nike

我正在为电子商务 android 应用程序使用 woocommerce REST API,并且从应用程序创建新订单时除优惠券外一切正常。

使用此 API 创建订单

https://my-domain.com/wp-json/wc/v2/orders

并传递一些json数据,包括

"coupon_lines" => [
"id" => 111,
"code" => "coupon code",
"discount" => "10.0",
"discount_tax" => "0"
]

通过这种方式,优惠券将应用于订单,但金额不会从总额中减少。谁能帮帮我吗?我是 woocommerce 的新手。

我已经搜索过了,发现 woocommerce REST API 没有提供计算优惠券折扣的功能,所以我必须手动计算,但不知道该怎么做?从哪里开始?

即使我得到了一个可以在客户端计算优惠券折扣的解决方案,我也做到了,但它太棘手了,因为优惠券有很多变化,所以我的代码因某些优惠券而崩溃。自从过去两天以来完全陷入困境请帮助我

最佳答案

您可以从以下代码方式入手。您必须自定义订单休息 API 的响应,您可以在其中使用于计算优惠券金额的自定义代码将您的自定义响应传递给 API。

add_filter( 'woocommerce_rest_prepare_shop_order_object', 'custom_change_shop_order_response', 10, 3 );
function custom_change_shop_order_response( $response, $object, $request ) {
//here you can get the three parameters.
// In the $response you can get the default response of the orders.
// In the $request you can get the request.here you can get a coupon code
// do your magic code here
}

关于php - 从 Android 应用程序创建新订单时如何使用 Woocommerce REST API 应用优惠券?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43752725/

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