draxq02664 2017-12-06 00:32
浏览 173
已采纳

在Woocommerce 3中获取订单费用项目详细信息

I try to get the name of the fee attached to my order in Woocommerce, I get an array but I don't know how to get the name.

I tried with function get_name () but it does not work.

$the_order->get_items( array( 'line_item', 'fee', 'shipping' ) );

Raw data output:

[137] => WC_Order_Item_Fee Object
        (
            [extra_data:protected] => Array
                (
                    [tax_class] => 
                    [tax_status] => taxable
                    [amount] => 
                    [total] => 
                    [total_tax] => 
                    [taxes] => Array
                        (
                            [total] => Array
                                (
                                )

                        )

                )

            [data:protected] => Array
                (
                    [order_id] => 7795
                    [name] => Frais de réservation
                    [tax_class] => 0
                    [tax_status] => taxable
                    [amount] => 
                    [total] => 35
                    [total_tax] => 0
                    [taxes] => Array
                        (
                            [total] => Array
                                (
                                )

                        )

                )

展开全部

  • 写回答

1条回答 默认 最新

  • duanfu6160 2017-12-06 07:14
    关注

    To access and to use properties on Order Fee items you need to use the WC_Order_Item_Fee methods using first a foreach loop this way:

    // (optional if not defined) An instance of the WC_Order object
    $the_order = wc_get_order( $order_id );
    
    // Iterating through order fee items ONLY
    foreach( $the_order->get_items('fee') as $item_id => $item_fee ){
    
        // The fee name
        $fee_name = $item_fee->get_name();
    
        // The fee total amount
        $fee_total = $item_fee->get_total();
    
        // The fee total tax amount
        $fee_total_tax = $item_fee->get_total_tax();
    }
    

    Tested and works

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部