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.
24 lines
1.0 KiB
24 lines
1.0 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!-- Tree,form,kanban,calendar view action for the model hr employee-->
|
|
<record model="ir.actions.act_window" id="hr_employee_action_teacher_creation">
|
|
<field name="name">Teachers</field>
|
|
<field name="domain">[('teacher','=', True)]</field>
|
|
<field name="context">{'default_teacher':True}</field>
|
|
<field name="res_model">hr.employee</field>
|
|
<field name="view_mode">kanban,tree,form</field>
|
|
</record>
|
|
<!--Inherited form view defined for the model hr employee-->
|
|
<record id="view_employee_form" model="ir.ui.view">
|
|
<field name="name">
|
|
hr.employee.view.form.inherit.music.school.management
|
|
</field>
|
|
<field name="model">hr.employee</field>
|
|
<field name="inherit_id" ref="hr.view_employee_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='coach_id']" position="after">
|
|
<field name="teacher"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|