Your addons code seems very old. this error has been fixed in latest addons so please update the addons. or you can fix this error in current addons by following changes.
In openerp-server/addons/sale/sale.py", line 131 replace this line res[sale.id] = min(100.0, tot * 100.0 / sale.amount_untaxed) with res[sale.id] = min(100.0, tot * 100.0 / (sale.amount_untaxed or 1.00)) ------------------------ OpenERP=Easier, Adaptable, Affordable, Modular -------------------- m2f -------------------- -- http://www.openobject.com/forum/viewtopic.php?p=53290#53290 -------------------- m2f -------------------- _______________________________________________ Tinyerp-users mailing list http://tiny.be/mailman2/listinfo/tinyerp-users
