我正在使用Wordpress的“ WooCommerce PDF发票和装箱单”。一个产品可以有两种不同的税率:21%或6%。
OR
但是如何在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
但这不能解决我的问题。
有人能指出我正确的方向吗?
谢谢!