You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: