在Woocommerce中显示pdf发票折扣后的折扣小计

时间:2018-02-22 15:40:58

标签: php wordpress pdf woocommerce invoices

我想在发票上显示折扣优惠券后显示产品的费用。 我有以下代码,但它只显示基本价格,而不是优惠券代码后的费用:

add_filter( 'wpo_wcpdf_woocommerce_totals', 'wpo_wcpdf_woocommerce_totals_custom', 10, 2 );
function wpo_wcpdf_woocommerce_totals_custom( $totals, $order ) {
    $totals = array(
        'subtotal'  => array(
            'label' => __('Subtotal', 'wpo_wcpdf'),
            'value' => $order->get_subtotal_to_display(),
        ),
    );
    return $totals;
}

我尝试将$totals更改为$discount,但它不起作用。

1 个答案:

答案 0 :(得分:0)

您的实际代码只是删除所有总计,仅显示小计。请尝试以下挂钩功能,该功能将在折扣金额后显示折扣小计:

add_filter( 'wpo_wcpdf_woocommerce_totals', 'add_discounted_subtotal_to_pdf_invoices', 10, 2 );
function add_discounted_subtotal_to_pdf_invoices( $totals, $order ) {
    // Get 'subtotal' raw amount value
    $subtotal = strip_tags($totals['cart_subtotal']['value']);
    $subtotal = (float) preg_replace('/[^0-9.]+/', '', $subtotal);

    // Get 'discount' raw amount value
    $discount = strip_tags($totals['discount']['value']);
    $discount = (float) preg_replace('/[^0-9.]+/', '', $discount);

    $new_totals = array();
    // Loop through totals lines
    foreach( $totals as $key => $values ){
        $new_totals[$key] = $totals[$key];
        // Inset new calculated 'Subtotal discounted' after total discount
        if( $key == 'discount' && $discount != 0 && !empty($discount) ){
            $new_totals['subtotal_discounted'] = array(
                'label' => __('Subtotal discounted', 'wpo_wcpdf'),
                'value' => wc_price($subtotal - $discount)
            );
        }
    }
    return $new_totals;
}

代码放在活动子主题(或主题)的function.php文件中。

经过测试和工作。它也适合你。