You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
change line 48 ` - to +
From
'value' => $source->getBaseMspCodAmount() - $source->getBaseMspCodTaxAmount(),
To
'value' => $source->getBaseMspCodAmount() + $source->getBaseMspCodTaxAmount(),
this it will fix the price on order page and mail.
To Get Base price with tax Tax in customer order page
'value' => $source->getBaseMspCodAmount() + $source->getBaseMspCodTaxAmount(),
To Get Base price without tax in customer order page
'value' => $source->getBaseMspCodAmount() ,
`***********************************************************
2- Show price with tax or without tax in checkout page
Change in line 100 from
From : without tax
'value' => $total->getBaseMspCodAmount() ,
To: with tax
'value' => $total->getBaseMspCodAmount() + $total->getBaseMspCodTaxAmount(),
From @zenomordiante on February 26, 2018 9:21
ON it4mage page we can not open Issue.
Preconditions
country,region,from_amount,fee,website
,,0.0000,4.92,*
Steps to reproduce
Expected result
Actual result
CHECKOUT IS OK
SALES MAIL IS WRONG
BACKEND AREA ORDER IS WRONG
TOTALS IS OK
Copied from original issue: magespecialist#58
The text was updated successfully, but these errors were encountered: