如何更新WooCommerce订单商品数量

问题描述 投票:2回答:2

我需要在结帐页面或woocommerce创建订单时更新woocommerce oder中的订单商品元。我正在使用插件可视化产品配置器,并没有将订单的某些项目的正确数量传递给woocommerce订单元,特别是当我在同一产品上使用多个变体时。

是否有一个钩子供我更新某个订单商品的商品数量,我该如何使用它?插件返回一个包含所有购物车信息的数组,我只能检查订单中的商品是否出现多次 - 如果是,我需要在woocommerce订单/数据库中将该商品的数量更改为该数字。

我想在我的functions.php中添加以下钩子

add_action('woocommerce_checkout_create_order', 'change_qty', 1,1);


function change_qty($item_qty){

  foreach($item_qty as $qty) {
    $qty['product_id'] = $id;
    $qty['qty'] = $new_qty
    $order->update_meta_data('quantity', $new_qty, $id)
  }
}

而$ item_qty是一个包含item_ids和调整数量的多维数组。

我面临的另一个问题是,我不知道何时需要调用该函数,因为我从结帐页面上的插件中获取了数组,但我认为WooCommerce尚未在那一刻创建订单?

结果应该是后端的woocommerce订单摘要中的调整项目数量。

php woocommerce hook-woocommerce orders product-quantity
2个回答
1
投票

要更新订单商品数量,您可以使用WC_Order_Item_Product set_quantity() method

更新订单商品(订单项)的正确挂钩是woocommerce_checkout_create_order_line_item action hook,它是在订单创建期间触发,然后将数据保存到数据库。

add_action('woocommerce_checkout_create_order_line_item', 'change_order_line_item_quantity', 10, 4 );
function change_order_line_item_quantity( $item, $cart_item_key, $cart_item, $order ) {
    // Your code goes below

    // Get order item quantity
    $quantity = $item->get_quantity();

    $new_qty = $quantity + 2;

    // Update order item quantity
    $item->set_quantity( $new_qty );
}

函数参数(变量)是定义和可用的:

  • $itemWC_Order_Item_Product对象(尚未保存到数据库)
  • $cart_item_key是相关的购物车项目密钥
  • $cart_item是相关的购物车商品数据
  • $order是WC_Order对象(尚未保存到数据库)

有关:


0
投票

这可以帮助您(我们挂钩支付提供商的付款完成通知)。如果你想在创建订单后立即更新_qty,我可以更改我的功能。但是现在我只有在付款成功时才更新它:

/**
 * Update order item qty after payment successful
 */
add_filter( 'woocommerce_payment_complete_order_status', 'update_order_item_qty', 10, 2 );
function update_order_item_qty( $order_status, $order_id ) {

    //Get the order and items
    $order = new WC_Order( $order_id );
    $items = $order->get_items();

    //New qty
    $new_qty = 0;

    foreach ( $items as $item_id => $item_data ) {
        update_meta_data( '_qty', $new_qty, $item_id );
    }
}

如果这是你想要的,请试试。

© www.soinside.com 2019 - 2024. All rights reserved.