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

closes #408

Ticket: 67203
Signed-off-by: Nicolas Mac Rouillon <nmr@adhoc.com.ar>
  • Loading branch information
pablohmontenegro authored and jjscarafia committed Oct 31, 2023
1 parent 157c914 commit 731d46b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion account_withholding/models/account_payment.py
Expand Up @@ -30,7 +30,7 @@ class AccountPayment(models.Model):
def _get_valid_liquidity_accounts(self):
res = super()._get_valid_liquidity_accounts()
if self.tax_withholding_id:
res += (self._get_withholding_repartition_line().account_id,)
res |= self._get_withholding_repartition_line().account_id

return res

Expand Down

0 comments on commit 731d46b

Please sign in to comment.