提问者:小点点

更新WooCommerce产品价格和库存


我有一个外部REST API,从中我构建了一个如下数组:

$arr = array(
1 => array('code' => '0100686', 'qty' => '2', 'price' => '65.22'),
2 => array('code' => '0100687', 'qty' => '1', 'price' => '5.23'),
3 => array('code' => '0100688', 'qty' => '8', 'price' => '0.28')
);

在此之后,我需要更新WooCommerce中产品的价格和数量。(上面数组代码是WC中的SKU)。

之后,我的代码如下所示:

foreach ($arr as $single) {
$product_id = wc_get_product_id_by_sku($single['code']);

// I need here to update the product price
// I need here to update the product in stock

}

我搜索了一下,有很多解决方案直接通过SQL查询或一些钩子,他们说我应该进行瞬态清洁等...我想不出一个最好的解决办法。你能帮我完成这项任务的最佳解决方案是什么吗?


共2个答案

匿名用户

你可以这样尝试:

$arr = array(
    array( 'code' => '0100686', 'qty' => '2', 'price' => '65.22' ),
    array( 'code' => '0100687', 'qty' => '1', 'price' => '5.23' ),
    array( 'code' => '0100688', 'qty' => '8', 'price' => '0.28' )
);
foreach ( $arr as $single ) {
    $product_id = wc_get_product_id_by_sku( $single['code'] );
    if ( ! $product_id ) {
        continue;
    }
    $product = new WC_Product( $product_id );
    if ( ! $product ) {
        continue;
    }
    $product->set_price( $single['price'] );
    $product->set_stock_quantity( $single['qty'] );
    $product->save();
}

匿名用户

如你所说,有很多方法。在您的循环中,您可以使用WC_Product::setPrice()方法。正如这里所解释的,你可以像这样使用它:

foreach ($arr as $single) {
    $product_id = wc_get_product_id_by_sku($single['code']);
    $wcProduct = new WC_Product($product_id);

    //price in cents
    $wcProduct->set_price(300);
    $wcProduct->save();
   }