检查订单商品相关产品是否仍存在于WooCommerce中

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

我使用以下代码显示一系列WooCommerce订单的数量和产品名称:

foreach ($order->get_items() as $item_id => $item_data) {

    // Get an instance of corresponding the WC_Product object
    $product = $item_data->get_product();

    $product_name = $product->get_name(); // Get the product name
    $item_quantity = $item_data->get_quantity(); // Get the item quantity
    echo $item_data->get_quantity() . ' x ' . $product->get_name() . ' (' . $product->get_sku() . ')<br />' ;
}

一切运作良好,但它被卡在已删除产品的特定订单上(因此产品ID不再存在)。

有没有办法检查这种情况并显示诸如“产品不再存在”之类的东西并转向下一个产品?

php wordpress woocommerce product orders
1个回答
0
投票

以下将检查产品是否仍然存在以获得其SKU(处理产品变化):

// Loop through order items
foreach ($order->get_items() as $item_id => $item ) {
    $product_id   = (int) $item->get_product_id(); // The product ID
    $variation_id = (int) $item->get_variation_id(); // The variation ID
    $item_name    = $item->get_name(); // Get the product name
    $item_qty     = $item->get_quantity(); // Get the item quantity

    // Get the product SKU: Check that the product exist
    if ( ( get_post_type( $product_id ) === 'product' && $variation_id === 0 )
    || ( get_post_type( $product_id ) === 'product' && $variation_id > 0 
    && get_post_type( $variation_id ) === 'product_variation' ) ) {
        // Get the WC_Product Object instance
        $product = $item->get_product();

        // Check if it is a valid WC_Product Object instance (and that the sku exist)
        if ( is_a($product, 'WC_Product') && $product->get_sku() != '' ) {
            $sku = ' ('.$product->get_sku().')'; // Get the sku
        } else {
            $sku = ''; // empty
        }
    } else {
        $sku = ''; // empty
    }

    // Output   
    echo $item_qty . ' &times; ' . $item_name . $sku . '<br>';
}

经过测试和工作。

注意:使用订单商品,您可以从订单商品中获取相关的产品名称(因为它已保存在订单商品本身上)。

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