Files
reporting-engine/report_layout_config/views/document_layout.xml
2024-05-27 09:01:15 +07:00

23 lines
916 B
XML

<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<record id="base_document_layout" model="ir.ui.view">
<field name="name">base.document.layout</field>
<field name="model">base.document.layout</field>
<field name="inherit_id" ref="web.view_base_document_layout" />
<field name="arch" type="xml">
<xpath expr="//field[@name='logo']" position="after">
<field name="full_header_img" widget="image" class="mb-4" />
<field name="full_footer_img" widget="image" class="mb-4" />
</xpath>
<field name="preview" position="attributes">
<attribute name='style'>
max-width: 450px;
display: flex;
align-items: center;
justify-content: center;
</attribute>
</field>
</field>
</record>
</odoo>