Skip to content

Commit

Permalink
[FIX] account_withholding: error al calcular retenciones en pago a pr…
Browse files Browse the repository at this point in the history
…oveedor

Ticket: 67203
  • Loading branch information
pablohmontenegro committed Oct 26, 2023
1 parent 9fe968b commit 21c71b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion account_withholding/models/account_payment.py
Expand Up @@ -39,7 +39,7 @@ def _get_valid_liquidity_accounts(self):
[('company_id', '=', self.company_id.id), '|',
('invoice_tax_id.type_tax_use', 'in', ['supplier', 'customer']),
('refund_tax_id.type_tax_use', 'in', ['supplier', 'customer'])])
res += tuple(rep_lines.mapped('account_id'))
res += rep_lines.mapped('account_id')

return res

Expand Down

0 comments on commit 21c71b0

Please sign in to comment.