加总排除。 Woocommerce电子邮件通知上的订单总税款

时间:2018-11-25 15:59:15

标签: php wordpress woocommerce email-notifications totals

我正在寻找一种方法,在我的woocommerce订单邮件中添加额外的一行,小计包括运费(不含税(或增值税))。我想在税收之前有这一行。 (这应该是产品成本+运输成本的总和)

这是一个计算,应该类似于$ get_total_excl_taxes = $ order-> get_total()-$ order-> get_total_tax();

我应该将此粘贴到我假设的子主题email-order-details.php中。但是在我这样做的地方,它是行不通的。

任何帮助将不胜感激。

<?php
        $totals = $order->get_order_item_totals();

        if ( $totals ) {
            $i = 0;
            foreach ( $totals as $total ) {
                $i++;
                ?>
                <tr>
                    <th class="td" scope="row" colspan="2" style="text-align:<?php echo esc_attr( $text_align ); ?>; <?php echo ( 1 === $i ) ? 'border-top-width: 4px;' : ''; ?>"><?php echo wp_kses_post( $total['label'] ); ?></th>
                    <td class="td" style="text-align:<?php echo esc_attr( $text_align ); ?>; <?php echo ( 1 === $i ) ? 'border-top-width: 4px;' : ''; ?>"><?php echo wp_kses_post( $total['value'] ); ?></td>

                    <here??>

                </tr>
                <?php
            }
        }
        if ( $order->get_customer_note() ) {
            ?>
            <tr>
                <th class="td" scope="row" colspan="2" style="text-align:<?php echo esc_attr( $text_align ); ?>;"><?php esc_html_e( 'Note:', 'woocommerce' ); ?></th>
                <td class="td" style="text-align:<?php echo esc_attr( $text_align ); ?>;"><?php echo wp_kses_post( wptexturize( $order->get_customer_note() ) ); ?></td>
            </tr>
            <?php
        }
        ?>

1 个答案:

答案 0 :(得分:0)

以下内容将添加一个新行,其中包含有关电子邮件通知的总计中不包括增值税的总计:

add_filter( 'woocommerce_get_order_item_totals', 'add_order_total_excl_vat_row', 10, 3 );
function add_order_total_excl_vat_row( $total_rows, $order, $tax_display ) {
    // Only on emails notifications
    if( ! is_wc_endpoint_url() || ! is_admin() ) {

        // Set last total row in a variable and remove it.
        $gran_total = $total_rows['order_total'];
        unset( $total_rows['order_total'] );

        // Insert our new row
        $total_rows['order_total_ev'] = array(
            'label' => __( 'Total Excl. VAT :', 'woocommerce' ),
            'value' => wc_price( $order->get_total() - $order->get_total_tax() ),
        );

        // Set back last total row
        $total_rows['order_total'] = $gran_total;
    }

    return $total_rows;
}

代码进入您的活动子主题(或活动主题)的function.php文件中。经过测试,可以正常工作。


要在税项之前添加此新行(在税项设置中启用时),请改用此行:

add_filter( 'woocommerce_get_order_item_totals', 'custom_order_total_excl_vat_row', 10, 3 );
function custom_order_total_excl_vat_row( $total_rows, $order, $tax_display ) {
    // Only on emails notifications
    if( ! is_wc_endpoint_url() || ! is_admin() ) {

        $new_total_rows = array();

        // Loop through total lines
        foreach( $total_rows as $key => $values ){
            if( $key === 'tax' ){
                $new_total_rows['order_total_et'] = array(
                    'label' => __( 'Total Excl. VAT :', 'woocommerce' ),
                    'value' => wc_price( $order->get_total() - $order->get_total_tax() ),
                );
            }
            $new_total_rows[$key] = $values;
        }

        return $new_total_rows;
    }

    return $total_rows;
}

代码进入您的活动子主题(或活动主题)的function.php文件中。经过测试,可以正常工作。

您将得到类似的东西:

enter image description here