Comment 36 for bug 452854

Revision history for this message
Dukai Gábor (gdukai) wrote : Re: Cannon validate foreign currency invoices

Hi!

For a quick fix, in our case it was enough to revert that "famous" change in res_currency:

return round(amount / currency.rounding,6) * currency.rounding
to
return round(amount / currency.rounding) * currency.rounding