Browse Source

[FIX] Trade Receivable records was not properly matched

pull/27/head
Andrius Preimantas 10 years ago
parent
commit
c68aa2f5cf
  1. 5
      pos_trade_receivable_autoreconcile/model/point_of_sale.py

5
pos_trade_receivable_autoreconcile/model/point_of_sale.py

@ -39,8 +39,9 @@ class POSOrder(models.Model):
grouped_data[key].append(line.id)
for key, value in grouped_data.iteritems():
for line in order.account_move.line_id:
if (line.account_id.id == key[1] and
line.partner_id.id == key[0]):
if (line.partner_id.id == key[0] and
line.account_id.id == key[1] and
(line.debit > 0) == key[2]):
grouped_data[key].append(line.id)
break
for key, value in grouped_data.iteritems():

Loading…
Cancel
Save