Jump to content

Show total tax including and tax excluding in customer order history [SOLVED]


panosm9944

Recommended Posts

In this file

themes/your_theme/templates/customer/_partials/order-detail-no-return.tpl

change this 

        <tr class="text-xs-right line-{$order.totals.total.type}">
          <td colspan="3">{$order.totals.total.label}</td>
          <td>{$order.totals.total.value}</td>
        </tr>

for this 

    <tr class="text-xs-right line-{$order.totals.total_excluding_tax.type}">
      <td colspan="3">{$order.totals.total_excluding_tax.label}</td>
      <td>{$order.totals.total_excluding_tax.value}</td>
    </tr>
    <tr class="text-xs-right line-{$order.totals.total_including_tax.type}">
      <td colspan="3">{$order.totals.total_including_tax.label}</td>
      <td>{$order.totals.total_including_tax.value}</td>
     </tr>

 

Link to comment
Share on other sites

  • panosm9944 changed the title to Show total tax including and tax excluding in customer order history [SOLVED]

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...