From 768e34756cd5212e3c9e1fbe957e54e08509dd9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thibault=20Delavall=C3=A9e?= <tde@odoo.com> Date: Wed, 28 Feb 2018 14:25:31 +0100 Subject: [PATCH] [REV] hr_timesheet: revert commit 4e9138f8f9852d92d80c7fe4223fb6bfb516a737. 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. --- addons/hr_timesheet/models/hr_timesheet.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/addons/hr_timesheet/models/hr_timesheet.py b/addons/hr_timesheet/models/hr_timesheet.py index ded21bd35b65..ee1d5833fb0f 100644 --- a/addons/hr_timesheet/models/hr_timesheet.py +++ b/addons/hr_timesheet/models/hr_timesheet.py @@ -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): -- GitLab