time_config_vals = {'default_daily_model_id':17,
'working_hours':92,
'business_setting_id':1,
'attendance_area_id':1,
'attendance_area_id':1,
'employee_id':self.employee_id.id
}
if self.location_id.with_context(lang='zh_CN').name.find('香港')>=0:
time_config_vals.update({'work_calendar_id':2,
'overtime_conf_id':3
})
else:
time_config_vals.update({'work_calendar_id':1,
'overtime_conf_id':1
})
the_list = []
if self.employee_type.code=='G002' and self.location_id.with_context(lang='zh_CN').name.find('香港')>=0:
the_list = [[0,0,{'start_date':self.employee_id.hire_date,'holiday_package_id':5}]]
elif self.employee_type.code!='G002' and self.location_id.with_context(lang='zh_CN').name.find('香港')>=0:
the_list = [[0,0,{'start_date':self.employee_id.hire_date,'holiday_package_id':2}]]
if self.employee_type.code=='G002' and self.location_id.with_context(lang='zh_CN').name.find('香港')<0:
the_list = [[0,0,{'start_date':self.employee_id.hire_date,'holiday_package_id':3}]]
elif self.employee_type.code!='G002' and self.location_id.with_context(lang='zh_CN').name.find('香港')<0:
the_list = [[0,0,{'start_date':self.employee_id.hire_date,'holiday_package_id':1}]]
if the_list:
time_config_vals.update({'holiday_package_rule_ids':the_list})
env['employee.time.config'].create(time_config_vals)