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.
33 lines
1.3 KiB
33 lines
1.3 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<data>
|
|
<record id="form_hr_settings" model="ir.ui.view">
|
|
<field name="name">hr.settings.form</field>
|
|
<field name="model">hr.settings</field>
|
|
<field name="arch" type="xml">
|
|
<form string="Hr Settings" class="oe_form_configuration">
|
|
<header>
|
|
<button string="Apply" type="object" name="execute" class="oe_highlight"/>
|
|
or
|
|
<button string="Cancel" type="object" name="cancel" class="oe_link"/>
|
|
</header>
|
|
<separator string="Entry Checklist"/>
|
|
<group>
|
|
<field name="enable_checklist"/>
|
|
</group>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
|
|
<record id="action_hr_settings" model="ir.actions.act_window">
|
|
<field name="name">Hr Settings</field>
|
|
<field name="res_model">hr.settings</field>
|
|
<field name="view_mode">form</field>
|
|
<field name="target">inline</field>
|
|
</record>
|
|
|
|
<menuitem action="action_hr_settings" id="menu_settings" parent="hr.menu_human_resources_configuration"
|
|
groups="hr.group_hr_manager"
|
|
sequence="-1" name="Settings"/>
|
|
</data>
|
|
</odoo>
|