Skip to content
Snippets Groups Projects
Commit 768e3475 authored by Thibault Delavallée's avatar Thibault Delavallée
Browse files

[REV] hr_timesheet: revert commit 4e9138f8.

No purpose, no explanation, incorrect commit message, no review from
technical and functional team, no task, separate features mixed in same
commit, incorrect code.

As /dev/null and its related POs manage timesheet applicationplease ask us
for guidance and review before committing that kind of commits. Many thanks.
parent 2d82d3a4
No related branches found
No related tags found
No related merge requests found
......@@ -10,7 +10,7 @@ class AccountAnalyticLine(models.Model):
@api.model
def default_get(self, field_list):
result = super(AccountAnalyticLine, self).default_get(field_list)
if not self.env.context.get('default_employee_id') and 'employee_id' in field_list and result.get('user_id'):
if 'employee_id' in field_list and result.get('user_id'):
result['employee_id'] = self.env['hr.employee'].search([('user_id', '=', result['user_id'])], limit=1).id
return result
......@@ -22,8 +22,7 @@ class AccountAnalyticLine(models.Model):
@api.onchange('project_id')
def onchange_project_id(self):
if self.project_id and self.project_id != self.task_id.project_id:
self.task_id = False
self.task_id = False
@api.onchange('employee_id')
def _onchange_employee_id(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment