Hi everyone,

I have installed and configured NOPcommerce for a webshop that sells products that are sold by meters.
So someone can order 1 meter of a product or 4 and a half meters.

When people order these products they expect to provide the quantity in meters (e.g. I want 2.75 meter of the red fabric).

I've got around some of the issues but I'm stuck with rounding issues.
This is what I have done:
- Product variant prices are entered in centimeters; a product that will cost € 7.95 per meter will have set its price at € 0.0795.
- Any textbox that contains a quantity will allow its value to be entered in meters (e.g. 1,5 or 2.75).
- Internally quantities are stored in centimeters.

This concept works well except for one issue: rounding!
In the core framework, at many places, I found that Math.Round is used to get a 2 digit decimal rounding.

Does anyone have an idea if I can solve this issue?