Files
Odoo-18.0-20251222/mis_template_financial_report/views/templates.xml
tocmo0nlord adbe430761
Some checks failed
pre-commit / pre-commit (push) Has been cancelled
tests / Detect unreleased dependencies (push) Has been cancelled
tests / test with OCB (push) Has been cancelled
tests / test with Odoo (push) Has been cancelled
Initial commit: Odoo 18.0-20251222 extra-addons
2026-03-13 20:43:25 +00:00

27 lines
1.0 KiB
XML
Executable File

<odoo>
<template
id="report_mis_report_instance"
inherit_id="mis_builder.report_mis_report_instance"
>
<xpath expr="//div[hasclass('mis_table')]" position="before">
<div class="mis_builder_horizontal_container">
<div class="mis_builder_horizontal_row">
<div
class="mis_builder_horizontal_cell"
t-foreach="o.horizontal and o._split_matrix(matrix) or [matrix]"
t-as="matrix"
/>
</div>
</div>
</xpath>
<xpath expr="//div[hasclass('mis_builder_horizontal_cell')]" position="inside">
<xpath expr="//div[hasclass('mis_table')]" position="move" />
</xpath>
<xpath expr="//div[hasclass('mis_table')]" position="attributes">
<attribute
name="t-attf-class"
>mis_table {{o.horizontal and 'horizontal'}}</attribute>
</xpath>
</template>
</odoo>