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

[FIX] project_issue: issue: correctly set stage_id during onchange project_id

If you create an issue 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 48f370c6
Branches
Tags
No related merge requests found
......@@ -123,11 +123,18 @@ class project_issue(osv.Model):
return res
def on_change_project(self, cr, uid, ids, 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, 'email_from': project.partner_id.email}}
return {}
values['partner_id'] = project.partner_id.id
values['email_from'] = project.partner_id.email
values['stage_id'] = self.stage_find(cr, uid, [], project_id, [('fold', '=', False)], context=context)
else:
values['partner_id'] = False
values['email_from'] = False
values['stage_id'] = False
return {'value': values}
_columns = {
'id': fields.integer('ID', readonly=True),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment