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.
44 lines
1.7 KiB
44 lines
1.7 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!-- Tree,form,kanban,calendar view action for the model students.attendance-->
|
|
<record model="ir.actions.act_window"
|
|
id="students_attendance_action">
|
|
<field name="name">Attendance</field>
|
|
<field name="res_model">students.attendance</field>
|
|
<field name="view_mode">tree,form,kanban</field>
|
|
</record>
|
|
<!-- Attendance menu creation for the model class type-->
|
|
<menuitem
|
|
id="student_attendance_menu"
|
|
name="Attendance"
|
|
action="students_attendance_action"
|
|
parent="music_school_institute_menu_root"/>
|
|
<!-- Form view defined for the model students.attendance-->
|
|
<record id="students_attendance_view_form" model="ir.ui.view">
|
|
<field name="name">students.attendance.view.form</field>
|
|
<field name="model">students.attendance</field>
|
|
<field name="arch" type="xml">
|
|
<form>
|
|
<sheet>
|
|
<group>
|
|
<field name="student_id"/>
|
|
<field name="attendance"/>
|
|
<field name="date"/>
|
|
</group>
|
|
</sheet>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
<!--Tree view defined for the model students.attendance-->
|
|
<record id="students_attendance_view_tree" model="ir.ui.view">
|
|
<field name="name">students.attendance.view.tree</field>
|
|
<field name="model">students.attendance</field>
|
|
<field name="arch" type="xml">
|
|
<tree>
|
|
<field name="student_id"/>
|
|
<field name="attendance"/>
|
|
<field name="date"/>
|
|
</tree>
|
|
</field>
|
|
</record>
|
|
</odoo>
|