Default currency
The default symbol isS/. (Peruvian Sol), set in js/storage.js:
Changing the symbol
Openjs/storage.js and edit the CURRENCY property in the Storage object:
'S/.' with your local currency symbol. Common examples:
What changes — and what does not
ChangingStorage.CURRENCY only updates the display symbol. It does not convert any stored price values. If you are switching from one currency to another with different amounts (for example, from Soles to Dollars), you will need to manually update the price of each product in the Products view after changing the symbol.
The currency symbol is read directly from
Storage.CURRENCY at render time, so there is no need to clear or re-import your data after changing it.