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.
 
 
 
 
 

46 lines
1.8 KiB

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<!--Form view of employee_checklist model-->
<record id='employee_checklist_view_form' model='ir.ui.view'>
<field name="name">employee.checklist.view.form</field>
<field name="model">employee.checklist</field>
<field name="arch" type="xml">
<form string="Checklist">
<sheet>
<group>
<field name="name"/>
<field name="document_type"/>
</group>
</sheet>
<div class="oe_chatter">
<field name="message_follower_ids" widget="mail_followers"/>
<field name="message_ids" widget="mail_thread"/>
</div>
</form>
</field>
</record>
<!--Tree view of employee_checklist model-->
<record id='employee_checklist_view_tree' model='ir.ui.view'>
<field name="name">employee.checklist.view.tree</field>
<field name="model">employee.checklist</field>
<field name="arch" type="xml">
<tree>
<field name="name"/>
<field name="document_type"/>
</tree>
</field>
</record>
<!--Menu action for employee_checklist model-->
<record id="employee_checklist_action" model="ir.actions.act_window">
<field name="name">Employee Checklist</field>
<field name="res_model">employee.checklist</field>
<field name="view_mode">tree,form</field>
</record>
<!--Menu for the model employee_checklist-->
<menuitem
id="employee_checklist_menu"
action="employee_checklist_action"
parent="hr.menu_human_resources_configuration"
sequence="3"
groups="base.group_no_one"/>
</odoo>