On PDF, columns with invoice details (due date, operation type, etc) above items table are not correctly formatted.
To Reproduce
Affected versions: 17.0
Steps to reproduce the behavior:
create an invoice
print it.
How to correct :
In the view l10n_fr_invoice_addr.report_invoice_document :
Replace : class="col mb-2"
With : class="#{'col-auto col-3 mw-100' if report_type != 'html' else 'col'} mb-2"
And it works perfectly.
Module
l10n_fr_invoice_addr
Describe the bug
On PDF, columns with invoice details (due date, operation type, etc) above items table are not correctly formatted.
To Reproduce
Affected versions: 17.0
Steps to reproduce the behavior:
How to correct :
In the view l10n_fr_invoice_addr.report_invoice_document : Replace :
class="col mb-2"
With :class="#{'col-auto col-3 mw-100' if report_type != 'html' else 'col'} mb-2"
And it works perfectly.