41 lines
2.6 KiB
XML
41 lines
2.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<data noupdate="1">
|
|
<!-- Calendar -->
|
|
<record id="resource_calendar_std_38h" model="resource.calendar" forcecreate="1">
|
|
<field name="name">Standard 32 hours/week (4 work days, friday free)</field>
|
|
<field name="company_id" eval="False"/>
|
|
<field name="hours_per_day">8</field>
|
|
<field name="attendance_ids"
|
|
eval="[(5, 0, 0),
|
|
(0, 0, {'name': 'Monday Morning', 'dayofweek': '0', 'hour_from': 8, 'hour_to': 12, 'day_period': 'morning'}),
|
|
(0, 0, {'name': 'Monday Lunch', 'dayofweek': '0', 'hour_from': 12, 'hour_to': 13, 'day_period': 'lunch'}),
|
|
(0, 0, {'name': 'Monday Afternoon', 'dayofweek': '0', 'hour_from': 13, 'hour_to': 17, 'day_period': 'afternoon'}),
|
|
(0, 0, {'name': 'Tuesday Morning', 'dayofweek': '1', 'hour_from': 8, 'hour_to': 12, 'day_period': 'morning'}),
|
|
(0, 0, {'name': 'Tuesday Lunch', 'dayofweek': '1', 'hour_from': 12, 'hour_to': 13, 'day_period': 'lunch'}),
|
|
(0, 0, {'name': 'Tuesday Afternoon', 'dayofweek': '1', 'hour_from': 13, 'hour_to': 17, 'day_period': 'afternoon'}),
|
|
(0, 0, {'name': 'Wednesday Morning', 'dayofweek': '2', 'hour_from': 8, 'hour_to': 12, 'day_period': 'morning'}),
|
|
(0, 0, {'name': 'Wednesday Lunch', 'dayofweek': '2', 'hour_from': 12, 'hour_to': 13, 'day_period': 'lunch'}),
|
|
(0, 0, {'name': 'Wednesday Afternoon', 'dayofweek': '2', 'hour_from': 13, 'hour_to': 17, 'day_period': 'afternoon'}),
|
|
(0, 0, {'name': 'Thursday Morning', 'dayofweek': '3', 'hour_from': 8, 'hour_to': 12, 'day_period': 'morning'}),
|
|
(0, 0, {'name': 'Thursday Lunch', 'dayofweek': '3', 'hour_from': 12, 'hour_to': 13, 'day_period': 'lunch'}),
|
|
(0, 0, {'name': 'Thursday Afternoon', 'dayofweek': '3', 'hour_from': 13, 'hour_to': 17, 'day_period': 'afternoon'}),
|
|
]"
|
|
/>
|
|
</record>
|
|
|
|
<!-- Employee -->
|
|
<record id="hr.employee_mw" model="hr.employee" forcecreate="1">
|
|
<field name="barcode">123</field>
|
|
</record>
|
|
|
|
<record id="hr.employee_eg" model="hr.employee" forcecreate="1">
|
|
<field name="resource_calendar_id" ref="resource_calendar_std_38h"/>
|
|
<field name="barcode">456</field>
|
|
</record>
|
|
|
|
<record id="hr.employee_sj" model="hr.employee" forcecreate="1">
|
|
<field name="pin">789</field>
|
|
</record>
|
|
</data>
|
|
</odoo> |