Skip to content

Commit

Permalink
[FIX] account: Show invoice due date on invoice report for customer.
Browse files Browse the repository at this point in the history
Task ID: 2060475

closes odoo#37172

Signed-off-by: oco-odoo <oco-odoo@users.noreply.github.com>
  • Loading branch information
FlorianGilbert committed Sep 20, 2019
1 parent 6839671 commit 4a1321b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/account/views/report_invoice.xml
Expand Up @@ -28,7 +28,7 @@
<strong>Invoice Date:</strong>
<p class="m-0" t-field="o.invoice_date"/>
</div>
<div class="col-auto mw-100 mb-2" t-if="o.invoice_date_due and o.type == 'out_invoice' and o.state in ('open', 'in_payment', 'paid')" name="due_date">
<div class="col-auto mw-100 mb-2" t-if="o.invoice_date_due and o.type == 'out_invoice' and o.state == 'posted'" name="due_date">
<strong>Due Date:</strong>
<p class="m-0" t-field="o.invoice_date_due"/>
</div>
Expand Down

0 comments on commit 4a1321b

Please sign in to comment.