** Branch linked: lp:~openerp-dev/openobject-addons/trunk-bug-977300-rmu -- You received this bug notification because you are a member of OpenERP Indian Team, which is subscribed to OpenERP Addons. https://bugs.launchpad.net/bugs/977300
Title: Invoice line subtotal rounding issue Status in OpenERP Addons (modules): Fix Committed Bug description: I have faced rounding issue with quantity 2.5 and price 4.83. [RESULT OBSERVED] 2.5 x 4.83 = 12.07 [RESULT EXPECTED] 2.5 x 4.83 = 12.08 I found that issue came from the account compute_all() method http://bazaar.launchpad.net/~openerp/openobject- addons/trunk/view/head:/account/account.py#L2072. For currency OpenERP use float_round() function to "fix" rounding issue, but here python default round() function used and of course it don't round correctly. And from here comes, why in the other accounting parts float_round() is not used instead round()? To manage notifications about this bug go to: https://bugs.launchpad.net/openobject-addons/+bug/977300/+subscriptions _______________________________________________ Mailing list: https://launchpad.net/~openerp-india Post to : [email protected] Unsubscribe : https://launchpad.net/~openerp-india More help : https://help.launchpad.net/ListHelp

