繁体   English   中英

从 WooCommerce 订单中获取已使用的优惠券代码和相关折扣金额

[英]Get used coupon codes and related discount amounts from WooCommerce orders

我需要在自定义插件中插入代码以获取我在设置中输入的折扣代码的名称、使用代码获得的折扣以及总数。

基于从 WooCommerce 订单应答代码获取优惠券数据,我插入了以下代码:

$order = wc_get_order( $order_id );

// GET THE ORDER COUPON ITEMS
$order_items = $order->get_items('coupon');

// print_r($order_items); // For testing

// LOOP THROUGH ORDER COUPON ITEMS
foreach( $order_items as $item_id => $item ){

    // Retrieving the coupon ID reference
    $coupon_post_obj = get_page_by_title( $item->get_name(), OBJECT, 'shop_coupon' );
    $coupon_id = $coupon_post_obj->ID;

    // Get an instance of WC_Coupon object (necessary to use WC_Coupon methods)
    $coupon = new WC_Coupon($coupon_id);

    ## Filtering with your coupon custom types
    if( $coupon->is_type( 'fixed' ) || $coupon->is_type( 'percent' ) || $coupon->is_type( 'fixed_product' ) ){

        // Get the Coupon discount amounts in the order
        $order_discount_amount = wc_get_order_item_meta( $item_id, 'discount_amount', true );
        $order_discount_tax_amount = wc_get_order_item_meta( $item_id, 'discount_amount_tax', true );

        ## Or get the coupon amount object
        $coupons_amount = $coupons->get_amount();
    }

}       
$confirmation = str_ireplace("{order_items}", $order_items, $confirmation);

但是当我做回声时,它带给我的唯一信息是“数组”这个词。

我究竟做错了什么? 有什么帮助吗?

请尝试以下操作,这将添加一个逗号分隔的应用优惠券代码字符串及其各自的折扣金额:

$order  = wc_get_order( $order_id ); // If needed
$output = array(); // Initializing

// loop through order items "coupon"
foreach( $order->get_items('coupon') as $item_id => $item ){
    // Get the coupon array data in an unprotected array
    $data = $item->get_data();
    
    // Format desired coupon data for output
    $output[] = $data['code'] . ': ' . strip_tags( wc_price( $data['discount'] + $data['discount_tax'] ) );
}

$confirmation = str_ireplace("{order_items}", implode(', ', $output), $confirmation);

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM