gpt4 book ai didi

woocommerce - 在woocommerce发票中显示税金

转载 作者:行者123 更新时间:2023-12-01 02:23:39 24 4
gpt4 key购买 nike

不幸的是,woocommerce 并没有像在德国那样显示发票。现在是

product name - quantity - price 

我需要发票邮件模板说
product name - *single price* - *tax rate (e.g. 19%)* - quantity - price

我知道我必须把它放进去
/my-theme/woocommerce/emails/email-order-items.php

这里的某个地方:
<?php
/**
* Email Order Items
*
* @author WooThemes
* @package WooCommerce/Templates/Emails
* @version 2.0.3
*/

if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly

global $woocommerce;

foreach ($items as $item) :

// Get/prep product data
$_product = $order->get_product_from_item( $item );
$item_meta = new WC_Order_Item_Meta( $item['item_meta'] );
$image = ($show_image) ? '<img src="'. current(wp_get_attachment_image_src( get_post_thumbnail_id( $_product->id ), 'thumbnail')) .'" alt="Product Image" height="'.$image_size[1].'" width="'.$image_size[0].'" style="vertical-align:middle; margin-right: 10px;" />' : '';

?>
<tr>
<td style="text-align:left; vertical-align:middle; border: 1px solid #eee; word-wrap:break-word;"><?php

// Show title/image etc
echo apply_filters( 'woocommerce_order_product_image', $image, $_product, $show_image);

// Product name
echo apply_filters( 'woocommerce_order_product_title', $item['name'], $_product );

// SKU
echo ($show_sku && $_product->get_sku()) ? ' (#' . $_product->get_sku() . ')' : '';

// File URLs
if ( $show_download_links && $_product->exists() && $_product->is_downloadable() ) {

$download_file_urls = $order->get_downloadable_file_urls( $item['product_id'], $item['variation_id'], $item );

$i = 0;

foreach ( $download_file_urls as $file_url => $download_file_url ) {
echo '<br/><small>';

$filename = woocommerce_get_filename_from_url( $file_url );

if ( count( $download_file_urls ) > 1 ) {
echo sprintf( __('Download %d:', 'woocommerce' ), $i + 1 );
} elseif ( $i == 0 )
echo __( 'Download:', 'woocommerce' );

echo ' <a href="' . $download_file_url . '" target="_blank">' . $filename . '</a></small>';

$i++;
}
}

// Variation
echo ($item_meta->meta) ? '<br/><small>' . nl2br( $item_meta->display( true, true ) ) . '</small>' : '';

?></td>
<td style="text-align:left; vertical-align:middle; border: 1px solid #eee;"><?php echo $item['qty'] ;?></td>
<td style="text-align:left; vertical-align:middle; border: 1px solid #eee;"><?php echo $order->get_formatted_line_subtotal( $item ); ?></td>
</tr>

<?php if ($show_purchase_note && $purchase_note = get_post_meta( $_product->id, '_purchase_note', true)) : ?>
<tr>
<td colspan="3" style="text-align:left; vertical-align:middle; border: 1px solid #eee;"><?php echo apply_filters('the_content', $purchase_note); ?></td>
</tr>
<?php endif; ?>

<?php endforeach; ?>

你能把输出改成这样吗
product name - *single price* - *tax rate (e.g. 19%)* - quantity - price

谢谢你的帮助!

最佳答案

您可以通过添加以下行来显示不含税的单品价格:

<td style="text-align:left; vertical-align:middle; border: 1px solid #eee;"><?php echo $order->get_item_total( $item, false ); ?></td>

就在这一行之上:
<td style="text-align:left; vertical-align:middle; border: 1px solid #eee;"><?php echo $item['qty'] ;?></td>

但是,这会添加额外的列,因此您也必须将此列添加到其他行(表头和总计)。为此,请打开包含此表的每个电子邮件模板并添加以下行:
<th scope="col" style="text-align:left; border: 1px solid #eee;"><?php _e( 'Price (excl. tax)', 'woocommerce' ); ?></th>

就在这一行下方:
<th scope="col" style="text-align:left; border: 1px solid #eee;"><?php _e( 'Product', 'woocommerce' ); ?></th>

也改变这一行:
<th scope="row" colspan="2" style="text-align:left; border: 1px solid #eee; <?php if ( $i == 1 ) echo 'border-top-width: 4px;'; ?>"><?php echo $total['label']; ?></th>

进入这个:
<th scope="row" colspan="3" style="text-align:left; border: 1px solid #eee; <?php if ( $i == 1 ) echo 'border-top-width: 4px;'; ?>"><?php echo $total['label']; ?></th>

现在,以这种方式显示订单/商品税会很困难,因为 WooCommerce 订单可能会应用多种不同的税。但是,您可以将其硬编码到模板中。

你不妨给 WooCommerce PDF Invoice插件尝试 - 它可以选择显示不含税的价格/小计,然后是税行,然后是含税的总计。

关于woocommerce - 在woocommerce发票中显示税金,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18361379/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com