Skip to Content
Menu
You need to be registered to interact with the community.
This question has been flagged
1 Odgovori
1261 Prikazi

Hello

Is there a way in Odoo 16 enterprise to put the general terms and conditions on a separate page ?

Currently we only see the option to put it on the bottom of documents or link to the website

Can this be changed with Odoo studio or only by customization ?

Regards


Avatar
Opusti
Best Answer

Hi,

By default Odoo have no feature to do this. Instead we can handle this by inheriting the template.

For example :

Here is the inheritance of invoice report  template.


<?xml version="1.0" encoding="utf-8"?>

<odoo>

    <data>

        <template id="custom_report_invoice_document"

                  inherit_id="account.report_invoice_document">

            <xpath expr="//div[@class='page mb-4']" position="inside">

                <!-- This will add a page break before the terms and conditions -->

                <div class="page-break"

                     style="page-break-before: always;"></div>

            </xpath>

            <xpath expr="//div[@name='comment']" position="before">

                <div class="page-break"

                     style="page-break-before: always;"></div>

            </xpath>

        </template>

    </data>

</odoo>


Hope it helps

Avatar
Opusti
Related Posts Odgovori Prikazi Aktivnost
1
jul. 23
2916
1
avg. 24
1641
3
apr. 24
7781
0
apr. 24
1111
0
apr. 24
1111