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.5 KiB

<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<!-- Deadline date note color configuration-->
<record id="note_config_view_form" model="ir.ui.view">
<field name="name">note.config.view.form</field>
<field name="model">note.config</field>
<field name="arch" type="xml">
<form edit="true" create="false" delete="false">
<group col="4">
<field name="default_magic_color"/>
<field name="deadline_cross"/>
<field name="not_in_interval"/>
</group>
</form>
</field>
</record>
<!-- tree view of note_config-->
<record id="note_config_view_tree" model="ir.ui.view">
<field name="name">note.config.view.tree</field>
<field name="model">note.config</field>
<field name="arch" type="xml">
<tree create="false" delete="false">
<field name="default_magic_color"/>
<field name="deadline_cross"/>
<field name="not_in_interval"/>
</tree>
</field>
</record>
<!-- action of note_config-->
<record id="note_config_action" model="ir.actions.act_window">
<field name="name">General Settings</field>
<field name="res_model">note.config</field>
<field name="view_mode">tree,form</field>
</record>
<menuitem name="Settings" id="magic_note"
parent="note.menu_note_configuration"
action="note_config_action"/>
</odoo>