The number of digits is not enough. In Swiss Francs the smallest possible unit is 0.05. Therefore all prices have to be rounded to 0.05. At the moment you can only choose to round the prices to 0.1 Or did I miss something?
And since it is hard-coded in quotes.js I doesn't work either ... formatNumber(toDecimal(total), num_grp_sep, dec_sep, 2, 2);
Pro-only modules like products and quotes are not usable in Switzerland without alot of changes.
I am using the folling js function to round the prices differently...
Code:
function roundBySteps(value,step) {
return Math.round(value/step) * step;
} roundBySteps(10.532, 0.05) => 10.55
Bookmarks