I am trying to set format of currency for a country with impex. Currentlty it is set as '42,953.87'. I want it should be changed to the format as '42.953,87'. Right now impex I am using for it is as
INSERT_UPDATE Currency;isocode[unique=true];conversion;digits;symbol
;ABC;1;2;kr
What changes I need to make in above impex code to make it in format as 24.953,87 I tried ;ABC;;;2;kr
but it does not work.Is there any other way in hybris through which I can change currency format?
After some research, I concluded that Format of currency displayed on the storefront is based on locale value for the CMSSite. It is out of the box feature of Localization and We can update it by following impex
UPDATE CMSSite;uid[unique=true];locale[lang=$lang]
;<site_uid>;<locale_value>
Also If we need to edit the format more, in that case we need to change to change the DataPriceFactory implementation.