Skip to content

Commit

Permalink
[FIX] account_payment_pro: Problema al querer generar una nota de deb…
Browse files Browse the repository at this point in the history
…ito desde un pago con impuesto NA

Ticket: 76253
  • Loading branch information
mem-adhoc committed Jun 27, 2024
1 parent 4711d1f commit cb5db92
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def _compute_amount_untaxed(self):
self.ensure_one()
tax_percent = 0.0
for tax in self.tax_ids.filtered(
lambda x: not x.price_include):
lambda x: not x.price_include and x.amount_type not in ['fixed']):
if tax.amount_type == 'percent':
tax_percent += tax.amount
elif tax.amount_type == 'partner_tax':
Expand Down

0 comments on commit cb5db92

Please sign in to comment.