Woocommerce在发票模板中显示税率

时间:2018-09-25 09:18:13

标签: php wordpress woocommerce

我正在使用Wordpress的“ WooCommerce PDF发票和装箱单”。一个产品可以有两种不同的税率:21%或6%。

该产品的标准税率为21% The product can have a standard rate of 21%

OR

可以降低6%的税率 it can have a reduced rate of 6%

但是如何在invoice.php文件中显示每种产品的费率?

<?php $items = $this->get_order_items(); if( sizeof( $items ) > 0 ) : foreach( $items as $item_id => $item ) : ?>
    <span class="item-name"><?php echo $item['name']; ?></span>
    <span class="quantity"><?php echo $item['quantity']; ?></span>
    <span class="price"><?php echo $item['order_price']; ?></span>
    <span class="tax"> TAX HERE </span>
<?php endforeach; endif; ?>

我找到了这个线程:Show Tax row in my invoice using Woocommerce Print Invoices & Packing lists

但这不能解决我的问题。

有人能指出我正确的方向吗?

谢谢!

0 个答案:

没有答案