Woocommerce:제품의 모든 주문 접수
Woocommerce API에 wc_get_orders 메서드가 표시됩니다.
상기 args에는 특정 제품에 대해서만 주문 결과를 제한하기 위해 제품 ID 또는 개체를 제공할 수 있는 인수가 없습니다.
특정 제품에 대해서만 주문을 필터링할 수 있는 방법이 있나요?
몇 가지 인수가 필요하기 때문에 이 방법을 사용해야 합니다.
편집 이 함수는 존재하지 않지만 빌드할 수 있습니다.따라서 다음 함수는 특정 제품 ID에 대한 모든 주문 ID 배열을 반환하여 올바른 SQL 쿼리를 만듭니다.
/**
* Get All orders IDs for a given product ID.
*
* @param integer $product_id (required)
* @param array $order_status (optional) Default is 'wc-completed'
*
* @return array
*/
function get_orders_ids_by_product_id( $product_id, $order_status = array( 'wc-completed' ) ){
global $wpdb;
$results = $wpdb->get_col("
SELECT order_items.order_id
FROM {$wpdb->prefix}woocommerce_order_items as order_items
LEFT JOIN {$wpdb->prefix}woocommerce_order_itemmeta as order_item_meta ON order_items.order_item_id = order_item_meta.order_item_id
LEFT JOIN {$wpdb->posts} AS posts ON order_items.order_id = posts.ID
WHERE posts.post_type = 'shop_order'
AND posts.post_status IN ( '" . implode( "','", $order_status ) . "' )
AND order_items.order_item_type = 'line_item'
AND order_item_meta.meta_key = '_product_id'
AND order_item_meta.meta_value = '$product_id'
");
return $results;
}
사용방법 1(특정 제품 ID 및 기본 주문 완료 상태일 경우):
$orders_ids = get_orders_ids_by_product_id( 37 );
// The output (for testing)
print_r( $orders_ids );
사용방법 2(특정 제품 ID 및 일부 정의된 주문 상태용):
// Set the orders statuses
$statuses = array( 'wc-completed', 'wc-processing', 'wc-on-hold' );
$orders_ids = get_orders_ids_by_product_id( 37, $statuses );
// The output (for testing)
print_r( $orders_ids );
코드가 기능합니다.php 파일 또는 임의의 플러그인 파일에 있는 활성 자식 테마(또는 테마)입니다.
이 코드는 테스트되어 동작합니다.
그래서 나는 상품과 사람에 대한 주문을 받고 싶었다.원하는 결과를 얻기 위해 wc_get_orders woocommerce 메서드와 함께 @LoicTheActec에서 제공하는 솔루션을 사용했습니다.
기능은 다음과 같습니다.
/**
* Get All orders IDs for a given product ID.
*
* @param integer $product_id (required)
* @param array $order_status (optional) Default is 'wc-completed'
*
* @return array
*/
public function get_orders_ids_by_product_id( $product_id, $order_status = array( 'wc-completed' ) ) {
global $wpdb;
$results = $wpdb->get_col("
SELECT order_items.order_id
FROM {$wpdb->prefix}woocommerce_order_items as order_items
LEFT JOIN {$wpdb->prefix}woocommerce_order_itemmeta as order_item_meta ON order_items.order_item_id = order_item_meta.order_item_id
LEFT JOIN {$wpdb->posts} AS posts ON order_items.order_id = posts.ID
WHERE posts.post_type = 'shop_order'
AND posts.post_status IN ( '" . implode( "','", $order_status ) . "' )
AND order_items.order_item_type = 'line_item'
AND order_item_meta.meta_key = '_product_id'
AND order_item_meta.meta_value = '$product_id'
");
return $results;
}
내가 원하는 결과를 걸러내기 위해서.이 메서드는 include 인수를 제공하지 않기 때문에 모든 주문을 파악한 후 지정된 제품 ID의 주문을 삭제하고 나머지 모든 주문을 wc_get_orders에서 제외해야 했습니다.
/**
* Check if current user has more than 3 orders
*
* @return void
* @author
**/
public function woocommerce_check_order_count($product_id, $customer_email)
{
$statuses = array( 'wc-processing' );
$orders_ids_for_product = $this->get_orders_ids_by_product_id( $product_id, $statuses );
// Get All Orders
$allorders = wc_get_orders( array(
'status' => 'processing',
'type' => 'shop_order',
'email' => '',
'limit' => -1,
'return' => 'ids',
) );
// Remove the $orders_ids_for_product array from the $allorders array
$orderstoexclude = array_diff($allorders, $orders_ids_for_product);
$orders = wc_get_orders( array(
'status' => 'processing',
'type' => 'shop_order',
'customer' => $customer_email,
'email' => '',
'limit' => 3,
'exclude' => $orderstoexclude,
'return' => 'ids',
) );
return $orders;
}
언급URL : https://stackoverflow.com/questions/45848249/woocommerce-get-all-orders-for-a-product
'source' 카테고리의 다른 글
포스 앵귤러컨트롤러를 로드하기 전에 데이터를 반환하는 JS 서비스 (0) | 2023.02.12 |
---|---|
페이지를 새로고침하지 않고 브라우저 주소 표시줄을 변경하는 방법 - HTML/Javascript (0) | 2023.02.12 |
Oracle - 어떤 TNS 이름 파일을 사용하고 있습니까? (0) | 2023.02.12 |
Visual Studio 코드에서 언어를 JSX로 변경 (0) | 2023.02.12 |
Respect-Intl 입력 플레이스 홀더에서 Formatted Message를 사용하는 방법 (0) | 2023.02.12 |