通过变体ID获取WooCommerce订单商品

时间:2017-03-01 08:51:23

标签: php sql wordpress woocommerce orders

如何根据特定产品变体列出订单商品?

鉴于变体ID ,我想生成包含该特定变体的所有订单商品的列表。

在我的情况下,我使用变体来表示日期,产品本身是一个经常性的事件,所以这样做的目的是列出参加该特定日期的人。

如果这可以通过get_posts使用meta_keys这样简单的东西来完成,那会很奇妙,但是我猜测自定义查询就是这样。

我似乎无法弄清楚表格在这种情况下是如何相关的,或者是否以可搜索的方式存储。

非常感谢任何帮助。

谢谢!

2 个答案:

答案 0 :(得分:3)

有很多方法可以实现这一目标。我在一个自定义函数中使用一个SQL查询和 $variation_id (要设置的变体ID)作为参数:

function get_all_orders_items_from_a_product_variation( $variation_id ){

    global $wpdb;

    // Getting all Order Items with that variation ID
    $item_ids_arr = $wpdb->get_col( $wpdb->prepare( "
        SELECT `order_item_id` 
        FROM {$wpdb->prefix}woocommerce_order_itemmeta 
        WHERE meta_key LIKE '_variation_id' 
        AND meta_value = %s
    ", $variation_id ) );

    return $item_ids_arr; // return the array of orders items ids

}

代码放在活动子主题(或主题)的function.php文件中,或者放在任何插件文件中。

USAGE (例如,此处的变体ID为41)

这将显示此变体ID的订单商品ID列表以及一些数据(例如)。

$items_ids = get_all_orders_items_from_a_product_variation( 41 );

// Iterating through each order item
foreach( $items_ids as $item_id ){

    // Getting some data (the color value here)
    $item_color = wc_get_order_item_meta( $item_id, 'pa_color', true );

    // Displaying some data related to the current order item
    echo 'Item ID: '. $item_id . ' with color "' . $item_color .'"<br>';
}

此代码经过测试并有效。

  

获取订单ID (已更新)

现在,如果您需要获取所有订单ID,您可以通过这种方式在该函数中使用另一个查询:

function get_all_orders_that_have_a_product_variation( $variation_id ){

    global $wpdb;

    // Getting all Order IDs with that variation ID
    $order_ids_arr = $wpdb->get_col( $wpdb->prepare( "
        SELECT DISTINCT items.order_id
        FROM {$wpdb->prefix}woocommerce_order_items AS items
        LEFT JOIN {$wpdb->prefix}woocommerce_order_itemmeta AS itemmeta ON items.order_item_id = itemmeta.order_item_id
        WHERE meta_key LIKE '_variation_id'
        AND meta_value = %s
    ", $variation_id ) );

    return $order_ids_arr; // return the array of orders ids

}

代码放在活动子主题(或主题)的function.php文件中,或者放在任何插件文件中。

USAGE (此处始终使用变体ID 41)

这将显示此变体ID的订单ID列表及其状态(例如)。

$orders_ids = get_all_orders_that_have_a_product_variation( 41 );

// Iterating through each order item
foreach( $orders_ids as $order_id ){

    // Getting an instance of the order object
    $order = wc_get_order($order_id);

    // Displaying some data related to the current order
    echo 'Order #'. $order_id . ' has status "' . $order->get_status() .'"<br>';
}

此代码经过测试并有效。

  

您还可以通过这种方式在一个更复杂的数组中组合订单ID及其在多维数组中的相关项ID:

function get_all_orders_and_item_ids_that_have_a_product_variation( $variation_id ){

    global $wpdb;

    // Getting all Order IDs and item ids with that variation ID
    $results = $wpdb->get_results( $wpdb->prepare( "
        SELECT items.order_id, items.order_item_id AS item_id
        FROM {$wpdb->prefix}woocommerce_order_items AS items
        LEFT JOIN {$wpdb->prefix}woocommerce_order_itemmeta AS itemmeta ON items.order_item_id = itemmeta.order_item_id
        WHERE meta_key LIKE '_variation_id'
        AND meta_value = %s
    ", $variation_id ), ARRAY_A );

    return $results; // return a multi-dimensional array of orders Ids / items Ids

}

答案 1 :(得分:0)

我试着这样做,看了db后我在0前面得到了'_variation_id'。但是对于正在寻找相同问题的未来人来说,使用我的自定义黑客获得订单项目。我们需要使用product_namevariaion_name进行比较,例如尺寸等。variation_value LIKE's','L'等。请考虑此功能:

function get_all_orders_that_have_a_product_variation( $product_name, $variation_name, $variation_value ){

global $wpdb;
// Getting all Order IDs with that variation ID

$order_ids_arr = $wpdb->get_col($wpdb->prepare ( "
        SELECT * FROM wpcc_woocommerce_order_items items 
        LEFT JOIN wpcc_woocommerce_order_itemmeta itemmeta ON items.order_item_id = itemmeta.order_item_id 
        WHERE items.order_item_name LIKE %s 
        AND itemmeta.meta_key LIKE %s 
        AND itemmeta.meta_value = %s", $product_name, $variation_name, $variation_value ));


 return $order_ids_arr; // return the array of orders ids

}

现在打电话给我,说我们的产品名称是Raleigh sport,变体名称是size,价值是s。我们希望以简单的形式获取名称为Raleigh sport的商品的订单商品ID,并且我们只想获取sizeS

的商品

按功能简单调用:

print_r(get_all_orders_that_have_a_product_variation( "Raleigh Sport", "Size", "S" ));

感谢。