Jump to content

1.7.6.2: totals (excl. tax) in orders view


azurtem

Recommended Posts

../controllers/admin/AdminOrdersController.php

Line 112 -> total_paid_tax_incl change to total_paid_tax_excl

or add new column:

'total_paid_tax_incl' => array(
                'title' => $this->trans('Total', array(), 'Admin.Global'),
                'align' => 'text-right',
                'type' => 'price',
                'currency' => true,
                'callback' => 'setOrderCurrency',
                'badge_success' => true,
            ),

'total_paid_tax_excl' => array(
                'title' => $this->trans('Total (excl.)', array(), 'Admin.Global'),
                'align' => 'text-right',
                'type' => 'price',
                'currency' => true,
                'callback' => 'setOrderCurrency',
                'badge_success' => true,
            ),

Link to comment
Share on other sites

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...