|
|
<odoo>
<!-- Attendance Sheet Shifts Views -->
<record model="ir.ui.view" id="sheet_expected_view_tree"> <field name="name">Expected Shifts List</field> <field name="model">beesdoo.shift.sheet.expected</field> <field name="arch" type="xml"> <tree editable="bottom" create="false" delete="false" open="false" decoration-danger="stage == 'absent'" decoration-success="stage == 'present'"> <field name="task_type_id" readonly="True" options="{'no_open': True}"/> <field name="worker_id" readonly="True" options="{'no_open': True}"/> <field name="working_mode" /> <field name="replacement_worker_id" attrs="{'readonly': [('working_mode','=','irregular')]}" options="{'no_create': True, 'no_create_edit':True}"/> <field name="stage" /> <field name="compensation_nb" attrs="{'readonly': ['|', ('working_mode','=','irregular'), ('stage','in',['present','cancelled'])]}"/> </tree> </field> </record>
<record model="ir.ui.view" id="sheet_added_view_tree"> <field name="view_mode">tree</field> <field name="name">Added Shifts List</field> <field name="model">beesdoo.shift.sheet.added</field> <field name="arch" type="xml"> <tree editable="bottom" decoration-success="stage == 'present'"> <field name="task_type_id" options="{'no_open': True, 'no_create': True, 'no_create_edit':True }" /> <field name="worker_id" options="{'no_open': True, 'no_create': True, 'no_create_edit':True }" /> <field name="working_mode" /> <field name="regular_task_type" attrs="{'readonly': [('working_mode','=','irregular')]}"/> <field name="stage" readonly="True" /> </tree> </field> </record>
<!-- Attendance Sheets Views -->
<record model="ir.ui.view" id="sheet_view_tree"> <field name="name">Attendance Sheet List</field> <field name="model">beesdoo.shift.sheet</field> <field name="arch" type="xml"> <!-- <tree create="false" delete="false" decoration-danger="stage == 'absent'"> --> <tree create="false" decoration-danger="state == 'not_validated'"> <field name="name"/> <field name="max_worker_nb" type="char"/> <field name="state" /> <field name="validated_by" /> <field name="is_annotated" /> </tree> </field> </record>
<record model="ir.ui.view" id="sheet_view_form"> <field name="name">Attendance Sheet Form</field> <field name="model">beesdoo.shift.sheet</field> <field name="arch" type="xml"> <form create="false" delete="false">
<header> <field name="state" widget="statusbar" readonly="True" /> <button type="object" name="validate_via_wizard" string="Validate Sheet" /> </header> <sheet> <div class="oe_button_box" name="button_box"> <button name="button_mark_as_read" type="object" class="oe_stat_button" icon="fa-check" string="Mark as read" groups="beesdoo_shift.group_cooperative_admin" /> <button name="toggle_active" type="object" groups="beesdoo_shift.group_cooperative_admin" class="oe_stat_button" icon="fa-archive"> <field name="active" widget="boolean_button" options='{"terminology": "archive"}'/> </button> </div> <div class="oe_title"> <h1><field name="name"/></h1> </div> <group> <field name="max_worker_nb" /> </group> <h2> Expected workers </h2> <group> <field name="expected_worker_nb" /> </group> <field name="expected_shift_ids"/> <h2> Added workers </h2> <group> <field name="added_worker_nb" /> </group> <field name="added_shift_ids" /> <h4> Additional important informations </h4> <field name="annotation" barcode_events="true"/> <h4> General feedback </h4> <field name="feedback" /> <field name="worker_nb_feedback" > <field name="_barcode_scanned" widget="barcode_handler"/> </field> <group> <field name="validated_by" readonly="True" /> </group> </sheet> <div class="oe_chatter"> <field name="message_ids" widget="mail_thread" groups="beesdoo_shift.group_cooperative_admin" /> </div> </form> </field> </record>
<!-- Actions --> <!-- This method would be better but library "fields" is not imported --> <!--
domain="[('end_time','>',fields.Datetime.to_string(datetime.date.today())), ('start_time','<', fields.Datetime.to_string(datetime.date.today() + datetime.timedelta(days=1)))]" --> <act_window id="action_sheet_daily" name="Daily attendance sheets" res_model="beesdoo.shift.sheet" view_mode="tree,form" domain="[('end_time','>', datetime.date.today().strftime('%Y-%m-%d 00:00:00')), ('start_time','<', datetime.date.today().strftime('%Y-%m-%d 23:59:59'))]" />
<!-- Top menu item --> <menuitem id="menu_sheet_top" name="Attendance Sheets" parent="menu_root" groups="beesdoo_shift.group_shift_attendance_sheet" />
<!-- Menu actions --> <menuitem id="menu_sheet" name="Daily attendance sheets" parent="menu_sheet_top" action="action_sheet_daily" sequence="2" />
</odoo>
|