odoo/addons/product/_common.py

7 lines
69 B
Python
Raw Normal View History

def rounding(f, r):
if not r:
return f
return round(f / r) * r