Jump to content

Insert base price on invoice


Recommended Posts

  • 1 year later...
  • 3 weeks later...

Edit /pdf/invoice.tpl and move this block above the previous:

                {if $order_invoice->total_shipping_tax_incl > 0}
                <tr style="line-height:5px;">
                    <td style="text-align: right; font-weight: bold">{l s='Shipping Cost' pdf='true'}</td>
                    <td style="width: 17%; text-align: right;">
                        {if $tax_excluded_display}
                            {displayPrice currency=$order->id_currency price=$order_invoice->total_shipping_tax_excl}
                            {else}
                            {displayPrice currency=$order->id_currency price=$order_invoice->total_shipping_tax_incl}
                        {/if}
                    </td>
                </tr>
                {/if}
Link to comment
Share on other sites

×
×
  • Create New...