[FIX] point_of_sale fix tax rouding, this time tested, tnx fva

bzr revid: al@openerp.com-20130411224306-eei87tz4xp3d0o7n
This commit is contained in:
Antony Lesuisse 2013-04-12 00:43:06 +02:00
parent 0dded37377
commit 354ac328c8
1 changed files with 2 additions and 0 deletions

View File

@ -1005,6 +1005,8 @@ class pos_order(osv.osv):
#TOFIX: a deep refactoring of this method (and class!) is needed in order to get rid of this stupid hack
assert order.lines, _('The POS order must have lines when calling this method')
# Create an move for each order line
cur = order.pricelist_id.currency_id
for line in order.lines:
tax_amount = 0
taxes = [t for t in line.product_id.taxes_id]