Jump to content

Admin stats - showing price tax incl.


selin

Recommended Posts

  • 4 weeks later...

Hello,

i didn't find configuration to change the price in the dashboard orders, but i think you can do it manually:
change line 131 in dashproducts module class (dashproducts.php)

'value' => Tools::displayPrice((float)$order['total_paid_tax_excl'], $currency),

to

'value' => Tools::displayPrice((float)$order['total_paid_tax_incl'], $currency),

and also the labels (line 106, same file)

array('title' => $this->trans('Total', array(), 'Admin.Global').' '.$this->trans('Tax excl.', array(), 'Admin.Global'), 'class' => 'text-center'),

to

array('title' => $this->trans('Total', array(), 'Admin.Global').' '.$this->trans('Tax incl.', array(), 'Admin.Global'), 'class' => 'text-center'),
  • Like 2
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...