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.
 
 
 
 
 

68 lines
2.8 KiB

<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<!-- List view of the custom report-->
<record id="custom_report_view_tree" model="ir.ui.view">
<field name="name">custom.report.view.list</field>
<field name="model">custom.report</field>
<field name="type">list</field>
<field name="arch" type="xml">
<list>
<field name="name"/>
<field name="model_id"/>
<field name="menu_id"/>
</list>
</field>
</record>
<!-- Form view of custom report-->
<record id="custom_report_view_form" model="ir.ui.view">
<field name="name">custom.report.view.form</field>
<field name="model">custom.report</field>
<field name="type">form</field>
<field name="arch" type="xml">
<form string="Custom Report">
<sheet>
<group>
<group>
<field name="name"/>
<field name="model_id"/>
</group>
<group>
<field name="menu_id"/>
<field name="menu_group_id" widget="many2many_tags"/>
</group>
<field name="fields_ids" context="{'parent_id':model_id}">
<list editable="bottom">
<field name="custom_field_id"/>
<field name="label"/>
<field name="report_id" column_invisible="1"/>
<field name="model_id" column_invisible="1 "/>
<field name="rowable" column_invisible="1"/>
<field name="measurable" column_invisible="1"/>
<field name="row" readonly="rowable"/>
<field name="measure" readonly="not measurable"/>
</list>
</field>
</group>
</sheet>
</form>
</field>
</record>
<!-- Action for custom report model-->
<record id="custom_report_action" model="ir.actions.act_window">
<field name="name">Custom Report</field>
<field name="type">ir.actions.act_window</field>
<field name="res_model">custom.report</field>
<field name="view_mode">list,form</field>
<field name="help" type="html">
<p class="o_view_nocontent_smiling_face">
Create record
</p>
</field>
</record>
<!-- Menu of custom report-->
<menuitem id="custom_report_menu" name="Custom Reports"
action="custom_report_action" web_icon="custom_pivot_report,static/description/icon.png"/>
</odoo>