Skip to Content
Menu
This question has been flagged
2 Replies
9447 Views

Hi,
how I can change the font size for all Reports in odoo 11 (on Ubuntu)?
At the moment I use odoo 8 and there was is it easy in the rml file, but in odoo 11 only XML files used.
Is that stored in a css file and when yes, where I can find the css file for the reports?

I hope you can help me until end of the year, because ...
... you know it ;-)
That is the last point and I will start next year :-)Thanks the lot, Marcus

Thanks the lot, Marcus

Avatar
Discard
Author Best Answer

Hi Mayank,

thanks for helping!
That I have used for sale order, but for invoices and delivery slips it doesn't work.

For sales order we have in the QWeb viewer sale.report_saleorder whitch called the sale.report_saleorder_document. In the .document you can Format the tags, but for invoices with modell account.invoice you have in the QWeb viewer one view only! You have account.report_invoice_with_payments only, no .document view with the format.

In the account.report_invoice_with_payments view I can see a call for the same view/modell "account.report_invoice_with_payments "

<?xml version="1.0"?>
<t t-name="account.report_invoice_with_payments">
            <t t-call="web.html_container">
                <t t-foreach="docs" t-as="o">
                    <t t-call="account.report_invoice_document_with_payments" t-lang="o.partner_id.lang"/>
                </t>
            </t>
        </t>

I can't find the "account.report_invoice_document_with_payments" view/modell/XML-file/css-file or whatever, for changing the Format.
The same is for the delivery slip.
Did you know where I can change it for this both?
Why is that different to sale order?
Is that only to make the life more difficult? (OK, that is more philosophical)

Tanks, Marcus

Avatar
Discard

Hello,

For Account:

report_invoice_document_with_payments is at location: account/views/report_invoice.xml

For Sale:

report_invoice_document_inherit_sale is at location: sale/report/invoice_report_templates.xml

Hope this the answer you are looking for.

Regards,

Mayank

Best Answer

You can add attribute style to your tag for ex:

If Span Tag:
<span style="font-size:20px; color:white; font-weight: bold;">

If td Tag:

<td style = "font-family: Arial, Helvetica, sans-serif; color: # 555; font-size: 14px;">

You can also see Font and color reference.

Hope It Helps you.

Regards,

Mayank Gosai




Avatar
Discard