Jump to content

How to enable Shipping Tax breakdown on Invoices


Recommended Posts

I have seen the section of the invoice template which when enabled should show the shipping tax breakdowns. However I am unsure of where to enable it as it seems to be disabled by default and the shipping tax is being included with the Product tax figure for some reason.

 

Has anyone dealt with this issue previously?

{if isset($shipping_tax_breakdown)}
{foreach $shipping_tax_breakdown as $shipping_tax_infos}
<tr style="line-height:6px;background-color:{cycle values='#FFF,#DDD'};">
<td style="width: 30%">
{if !isset($pdf_shipping_tax_written)}
{l s='Shipping' pdf='true'}
{assign var=pdf_shipping_tax_written value=1}
{/if}
</td>
<td style="width: 20%; text-align: right;">{$shipping_tax_infos.rate} %</td>
{if !$use_one_after_another_method}
<td style="width: 20%; text-align: right;">{if isset($is_order_slip) && $is_order_slip}- {/if}{displayPrice currency=$order->id_currency price=$shipping_tax_infos.total_tax_excl}</td>
{/if}
<td style="width: 20%; text-align: right;">{if isset($is_order_slip) && $is_order_slip}- {/if}{displayPrice currency=$order->id_currency price=$shipping_tax_infos.total_amount}</td>
</tr>
{/foreach}
{/if}

Cheers,

Damien

Link to comment
Share on other sites

Sure, in that case they do not work! The breakdown for shipping does not show unless you have more than one tax being applied to shipping in which case it does not label the tax, but adds it under the table. If I use just the straight 10% gst that is also applied to the product, then it does not specify this shipping take anyway, it overlooks this.

 

So if it should be showing this by default then its broken.

 

Rather I thought it may be something that can be switched on and off from within settings somewhere given this "{if isset($shipping_tax_breakdown)}".

Link to comment
Share on other sites

×
×
  • Create New...