OCA reporting engine fork for dev and update.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
1.8 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!-- Copyright 2019 ACSONE SA/NV
  3. License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -->
  4. <odoo>
  5. <record model="ir.ui.view" id="ir_actions_report_form_view">
  6. <field name="name">ir.actions.report.form (in report_dispatch_base)
  7. </field>
  8. <field name="model">ir.actions.report</field>
  9. <field name="inherit_id" ref="base.act_report_xml_view"/>
  10. <field name="arch" type="xml">
  11. <xpath expr="//page[@name='advanced']" position="after">
  12. <page name="report_substitution_rule" string="Substitution Rules">
  13. <field name="action_report_substitution_rule_ids">
  14. <tree>
  15. <field name="sequence" widget="handle"/>
  16. <field name="substitution_action_report_id"/>
  17. <field name="domain"/>
  18. </tree>
  19. <form>
  20. <sheet>
  21. <group>
  22. <field name="action_report_id"
  23. invisible="1" readonly="1"
  24. required="0"/>
  25. <field name="model" invisible="1"/>
  26. <field name="substitution_action_report_id"/>
  27. </group>
  28. <group>
  29. <field name="domain" widget="domain"
  30. options="{'model': 'model'}"/>
  31. </group>
  32. </sheet>
  33. </form>
  34. </field>
  35. </page>
  36. </xpath>
  37. </field>
  38. </record>
  39. </odoo>