Skip to content
Snippets Groups Projects
Commit 3041efb6 authored by Simon Lejeune's avatar Simon Lejeune
Browse files

[FIX] project: task: correctly set stage_id during onchange project_id

If you create a task when `default_project_id` is set, the stage_id
is initialized at the lowest sequence of the stages of the project,
which is normal. However, when you change the project of the task,
the stage_id was not correctly reset. If you save at this time, you
add the selected stage in the project.

Also, the stage_id was not correctly cleared if you remove the project.
parent 7d3f9ac9
No related branches found
No related tags found
No related merge requests found
......@@ -399,11 +399,16 @@ class task(osv.osv):
@api.cr_uid_ids_context
def onchange_project(self, cr, uid, id, project_id, context=None):
values = {}
if project_id:
project = self.pool.get('project.project').browse(cr, uid, project_id, context=context)
if project and project.partner_id:
return {'value': {'partner_id': project.partner_id.id}}
return {}
values['partner_id'] = project.partner_id.id
values['stage_id'] = self.stage_find(cr, uid, [], project_id, [('fold', '=', False)], context=context)
else:
values['stage_id'] = False
values['partner_id'] = False
return {'value': values}
def onchange_user_id(self, cr, uid, ids, user_id, context=None):
vals = {}
......
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