azurtem Posted February 2, 2020 Share Posted February 2, 2020 Bonjour Je me rends compte que la version 1.7.6 a changé l'aspect de cette colonne mais j'aimerais revenir à une colonne affichant des totaux HT et non TTC Quelqu'un peut-il me dire comment je peux modifier la vue des commandes ? Bien à vous yann Link to comment Share on other sites More sharing options...
azurtem Posted February 3, 2020 Author Share Posted February 3, 2020 Merci à Guest (https://e-apps.eu) pour sa suggestion : ../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 More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now