Magento – Order total not showing including tax in shopping cart

magento-2.1magento2shopping-carttax

We are having a problem in our Magento 2 shop. All tax settings are set and everywhere he is showing the tax good, so also in the checkout and on orders, the only place were he is not showing the price including tax is in the shopping cart.

We have set the tax settings as shown below and should be good. We also tried to set the "include tax in order total" to no, but this is also not working.

Does anyone know how we can fix this?

enter image description here

Best Answer

in grand-total.js,

change:

getPureValue: function() {
    var totals = quote.getTotals()();
    if (totals) {
        return totals.grand_total;
    }
    return quote.grand_total;
},

to:

getPureValue: function() {
    var totals = quote.getTotals()();
    if (totals) {
        return totals.base_grand_total;
    }
    return quote.base_grand_total;
},