Files
bank-payment/account_payment_order/models
SilvioC2C 9963b795e8 [FIX] account_payment_order: fix `TypeError`
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.
2024-11-27 13:21:35 +01:00
..