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.
21 lines
881 B
21 lines
881 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<data noupdate="1">
|
|
<!--Provide predefined values for the cleaning shift-->
|
|
<record id="morning_shift" model="cleaning.shift">
|
|
<field name="shift_type">Morning Shift</field>
|
|
<field name="shift_time_from">7.5</field>
|
|
<field name="shift_time_to">15.5</field>
|
|
</record>
|
|
<record id="evening_shift" model="cleaning.shift">
|
|
<field name="shift_type">Evening Shift</field>
|
|
<field name="shift_time_from">15.5</field>
|
|
<field name="shift_time_to">23.5</field>
|
|
</record>
|
|
<record id="night_shift" model="cleaning.shift">
|
|
<field name="shift_type">Night Shift</field>
|
|
<field name="shift_time_from">23.5</field>
|
|
<field name="shift_time_to">07.5</field>
|
|
</record>
|
|
</data>
|
|
</odoo>
|
|
|