Tax Showing in $

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
Il y a 13 ans
I am using nopcommerece 1.8, I found a bug i guess, i have made $ as defult currency but use Rs. to be displayed, I did this because paypal doesnt accepts Inidan currency, now the issue is every were Rs. is displayed correctly, except for the invoice PDF and the mail which goes to cusomter the TAX part is only $ rest shipping actull price etc are in Rs.
I have uploaded the screen shot for your refernce.. please help

http://lanoscomputers.com/images/tax.jpg
Il y a 13 ans
Thanks for info. Follow the next steps to fix it:

1. Open Modules\OrderDetails.ascx.cs file and replace
lTaxRateValue.Text = PriceHelper.FormatPrice(item.Value, true, false);
with
lTaxRateValue.Text = PriceHelper.FormatPrice(item.Value, true, order.CustomerCurrencyCode, false);

2. Open Libraries\Nop.BusinessLogic\Messages\MessageManager.cs, ProductListToHtmlTable() method and replace
string taxValue = PriceHelper.FormatPrice(item.Value, true, false);
with
string taxValue = PriceHelper.FormatPrice(item.Value, true, order.CustomerCurrencyCode, false);

3. Recompile your solution
Il y a 13 ans
I couldnt find Libraries folder :(
Il y a 13 ans
kakoli wrote:
I couldnt find Libraries folder :(

You need to download a version with source codes
Il y a 13 ans
I downloaded, now shall i just copy libraies folder to my root and do edits?
Il y a 13 ans
For step two..
2. Open Libraries\Nop.BusinessLogic\Messages\MessageManager.cs, ProductListToHtmlTable() method and replace

string taxValue = PriceHelper.FormatPrice(item.Value, true, false);

I couldnt find
ProductListToHtmlTable() method inside messageManager.cs

Please help on this, my customers are getting PDF invoice with Tax in Dollors :(
Il y a 13 ans
Hey

It worked without making changes in library file :), hope thats not an issue?

Thanks
Kakoli
Il y a 13 ans
It has not worked, not sure whats wrong :(
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.