Skip to content

Commit

Permalink
Merge PR #1474 into 12.0
Browse files Browse the repository at this point in the history
Signed-off-by eLBati
  • Loading branch information
OCA-git-bot committed Sep 26, 2019
2 parents 5e534ca + b5aca2e commit 251cc82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion account_invoice_report_ddt_group/models/account_invoice.py
Expand Up @@ -93,7 +93,7 @@ def grouped_lines_by_ddt(self):
def _compute_has_ddt(self):
for invoice in self:
invoice.has_ddt = False
for line in self.invoice_line_ids:
for line in invoice.invoice_line_ids:
if line.ddt_line_id:
invoice.has_ddt = True
break
Expand Down

0 comments on commit 251cc82

Please sign in to comment.