web-dev-qa-db-ja.com

WooCommerceで現在のユーザー注文から注文IDを取得します

これが状況です。マーケットプレイスとして使用されているwoocommerceサイトがあります。私はその上でゲームを販売しています。一部の購入者はSteamキーを受け取ります。そのために私はキー属性システムに取り組んでいるので、ページに移動すると、キーはユーザーの属性になります。

そのために、現在のユーザー(ログイン時とページ上)からのすべての注文を確認し、彼が購入したゲームを確認したいと思います。

ここにいくつかの非常に役立つ情報があります: WooCommerceの注文の詳細を取得する方法

ただし、現在のユーザーのすべての注文を取得することはできません。最初にSQLリクエストを行うことを考えましたが、データベースで注文とユーザーの間のリンクが見つかりません。

リードはありますか?

5
Mathieu Roux

更新WooCommerce 3+との互換性を追加(2018年1月)

すべての顧客注文を取得し、各顧客注文の各アイテムを処理するために必要なコードは次のとおりです。

## ==> Define HERE the statuses of that orders 
$order_statuses = array('wc-on-hold', 'wc-processing', 'wc-completed');

## ==> Define HERE the customer ID
$customer_user_id = get_current_user_id(); // current user ID here for example

// Getting current customer orders
$customer_orders = wc_get_orders( array(
    'meta_key' => '_customer_user',
    'meta_value' => $customer_user_id,
    'post_status' => $order_statuses,
    'numberposts' => -1
) );


// Loop through each customer WC_Order objects
foreach($customer_orders as $order ){

    // Order ID (added WooCommerce 3+ compatibility)
    $order_id = method_exists( $order, 'get_id' ) ? $order->get_id() : $order->id;

    // Iterating through current orders items
    foreach($order->get_items() as $item_id => $item){

        // The corresponding product ID (Added Compatibility with WC 3+) 
        $product_id = method_exists( $item, 'get_product_id' ) ? $item->get_product_id() : $item['product_id'];

        // Order Item data (unprotected on Woocommerce 3)
        if( method_exists( $item, 'get_data' ) ) {
             $item_data = $item->get_data();
             $subtotal = $item_data['subtotal'];
        } else {
             $subtotal = wc_get_order_item_meta( $item_id, '_line_subtotal', true );
        }

        // TEST: Some output
        echo '<p>Subtotal: '.$subtotal.'</p><br>';

        // Get a specific meta data
        $item_color = method_exists( $item, 'get_meta' ) ? $item->get_meta('pa_color') : wc_get_order_item_meta( $item_id, 'pa_color', true );

        // TEST: Some output
        echo '<p>Color: '.$item_color.'</p><br>';
    }
} 

このコードはテストされ、機能します


関連:

13
LoicTheAztec