我只想导出税率降低的商品的优惠券总额(您可以在下图中看到的总额)。
对于这些项目的总数,我也做了同样的事情。 一个很好的答案帮助我仅导出降低税率的订单项目总数。为此,我使用以下代码:
// gets the total of the order items by tax class
function get_total_order_items_by_tax_class( $order_id, $tax_class = 'reduced-rate' ) {
$order = wc_get_order( $order_id );
// initializes the total of the order items
$total = 0;
foreach( $order->get_items() as $item_id => $order_item ) {
// if the product tax class is equal to "$tax_class"
if ( $tax_class == $order_item['tax_class'] ) {
// sum the total
$total += $order_item['total'];
}
}
return $total;
}
我尝试了类似的方法并添加了这一行(在这里找到):
$order->get_discount_total();
到片段。但这会导出每个税种的每个项目的全部折扣。
我还尝试了这个答案中的以下代码:
foreach( $order->get_coupon_codes() as $coupon_code ) {
// Get the WC_Coupon object
$coupon = new WC_Coupon($coupon_code);
$discount_type = $coupon->get_discount_type(); // Get coupon discount type
$coupon_amount = $coupon->get_amount(); // Get coupon amount
}
但这也是整单的折扣。
有什么方法可以只获得降低税率的商品的折扣总额吗? 我相信一定有办法,因为订单在每个项目下方都显示了这些总数。 但我找不到获得这些折扣的方法。
我看到
$order
只包含优惠券总额和优惠券税。不是每个行项目。而且$order_item
好像没有任何折扣。只有一些线WC_Coupon_Data_Store_CPT
。
尝试以下方法按税种获取订单商品折扣金额:
// Get order items discount amount excl. taxes by tax class
function get_order_items_discount_total_by_tax_class( $order_id, $tax_class = 'reduced-rate' ) {
$order = wc_get_order( $order_id );
$discount = 0; // Initializing;
foreach( $order->get_items() as $item ) {
// if the product tax class is equal to "$tax_class"
if ( $tax_class == $item['tax_class'] ) {
$discount += $item->get_subtotal() - $item->get_total(); // Excluding taxes
}
}
return $discount;
}
应该可以。