Odoo Qweb报告标题重叠的主体

问题描述 投票:0回答:1

我正在创建一个Qweb报告,其标题取决于公司地址及其母公司地址。该信息必须放在细列中,最终与身体内容重叠。是否有css类可以使身体自动向下移动?

odoo qweb odoo-13
1个回答
0
投票
<?xml version="1.0" encoding="UTF-8" ?> <odoo> <record id="my_new_paper_format" model="report.paperformat"> <field name="name">My custom paperformat</field> <field name="format">Letter</field> <field name="orientation">Portrait</field> <field name="margin_top">55</field> <field name="margin_bottom">10</field> <field name="margin_left">7</field> <field name="margin_right">7</field> <field name="header_line" eval="False"/> <field name="header_spacing">50</field> <field name="dpi">90</field> <field name="report_ids" eval="[(6, 0, [ref('report_action_id_1'), ref('report_action_id_2')])]"/> </record> </odoo>
© www.soinside.com 2019 - 2024. All rights reserved.