mirror of
https://github.com/OCA/bank-payment.git
synced 2025-02-02 10:37:31 +02:00
Method ``_get_reconciled_invoices_partials()`` returns 2 lists:
- the first one contains triplets defined as (account.partial.reconcile record, amount, account.move.line record)
- the second one contains account.move IDs
Merging the 2 lists and cycling over them with
```
for (_x, _y, payment_move_line) in list1 + list2:
...
```
resulted in ``TypeError: cannot unpack non-iterable int object``.
This commit fixes this bug.