Woocommerce:如何检查用户是否曾经使用过优惠券?

Woocommerce: How to check if coupon ever used by the user?

我在 woocommerce 客户仪表板上创建了“文本字段”,该字段用于兑换优惠券。假设我在要使用的 woocommerce 优惠券上设置了优惠券代码“BIRTHDAY29”。

用户在我的“文本字段”中输入“BIRTHDAY29”,然后点击“REDEEM”按钮,以便以编程方式将交易应用到他们的交易历史记录中。

我怎么知道优惠券“BIRTHDAY29”被该用户使用了多少次?我想检查该用户是否曾经使用过“BIRTHDAY29”,然后我想做“某事..”如果该用户曾经使用过 BIRTHDAY29。

希望大家明白我的意思,谢谢!!

给你:

function coupon_usage_for_customer( $coupon_code, $user_id = NULL, $email = NULL )
{
    $usage = 0;

    // There must either be a user ID or email address
    if( empty( $user_id ) && empty( $email ) )
        return FALSE;

    $params = [
        'limit' => -1,
        'type'  => 'shop_order'
    ];

    if( ! empty( $user_id ) ){
        $params['customer_id'] = $user_id;
    }

    else if( ! empty( $email ) ){
        $params['billing_email'] = $email;
    }

    // Get orders of customer
    $orders = wc_get_orders( $params );

    // Check if coupon used
    foreach( $orders as $order )
    {
        $coupons_used = $order->get_coupon_codes();

        if( 
            is_array( $coupons_used ) &&
            in_array( $coupon_code, $coupons_used ) 
        ){
            $usage++;
        }
    }

    return $usage;  
}

add_action('woocommerce_after_register_post_type', function(){
    $user_id = 12345;
    $email   = 'oneguy@example.com';
    $birthday29usage = coupon_usage_for_customer( 'BIRTHDAY29', $user_id, $email );
    if( ! $birthday29usage )
        echo 'The user has not birthday 29ed...';
});