bbt Posted February 4, 2014 Share Posted February 4, 2014 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 More sharing options...
tuk66 Posted February 10, 2014 Share Posted February 10, 2014 All tax breakdowns (shipping one included) are displayed according to conditions of the order. You should not force them. Link to comment Share on other sites More sharing options...
bbt Posted February 10, 2014 Author Share Posted February 10, 2014 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 More sharing options...
Recommended Posts