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.
 
 

58 lines
1.6 KiB

<odoo>
<record model="ir.ui.view" id="opendons.template_rf_form" >
<field name="name">opendons_template_rf Form</field>
<field name="model">opendons.template_rf</field>
<field name="arch" type="xml">
<form>
<header>
<button name="action_print" type="object" string="Print" />
</header>
<sheet>
<group name="main">
<field name="name"/>
<field name="type_rf"/>
<field name="description"/>
<field name="active"/>
<field name="css"/>
<field name="html_content"/>
</group>
</sheet>
</form>
</field>
</record>
<record model="ir.ui.view" id="opendons.template_rf_list" >
<field name="name">opendons_template_rf List</field>
<field name="model">opendons.template_rf</field>
<field name="arch" type="xml">
<tree>
<field name="name"/>
<field name="active"/>
<field name="type_rf"/>
<field name="description"/>
</tree>
</field>
</record>
<record model="ir.actions.act_window" id="template_rf_action">
<field name="name">Receipts letters Templates </field>
<field name="res_model">opendons.template_rf</field>
<field name="view_mode">tree,form</field>
</record>
<menuitem
id="opendons_template_rf"
action="template_rf_action"
parent="donation.donation_config_menu"
sequence="30"
/>
</odoo>