Skip to content

Commit

Permalink
Merge PR #111 into 14.0
Browse files Browse the repository at this point in the history
Signed-off-by dreispt
  • Loading branch information
OCA-git-bot committed Apr 17, 2024
2 parents 560d85a + 0cfac23 commit 20b36f7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion l10n_pt_vat/models/account_move.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ def action_post(self):
lambda x: x.country_code == "PT" and x.is_sale_document()
):
exempt_lines = invoice.invoice_line_ids.filtered(
lambda x: not x.tax_ids.filtered("amount")
lambda x: x.display_type not in ["line_section", "line_note"]
and not x.tax_ids.filtered("amount")
)
if exempt_lines and not invoice.l10npt_vat_exempt_reason:
raise exceptions.ValidationError(
Expand Down

0 comments on commit 20b36f7

Please sign in to comment.