[FIX] Made release planning tasks editable
This commit is contained in:
parent
e67b7e553c
commit
ecb4f67911
@ -21,7 +21,7 @@ class ReleasePlanning(models.Model):
|
|||||||
related="sprint_id.estimated_velocity", string="Sprint Velocity",
|
related="sprint_id.estimated_velocity", string="Sprint Velocity",
|
||||||
track_visibility="onchange", store=True)
|
track_visibility="onchange", store=True)
|
||||||
task_id = fields.One2many(
|
task_id = fields.One2many(
|
||||||
"project.task", "release_planning_id", string="Task", readonly=True)
|
"project.task", "release_planning_id", string="Task")
|
||||||
|
|
||||||
@api.onchange('sprint_id')
|
@api.onchange('sprint_id')
|
||||||
def onchange_project(self):
|
def onchange_project(self):
|
||||||
|
@ -56,7 +56,6 @@
|
|||||||
<th>Actual End Date</th>
|
<th>Actual End Date</th>
|
||||||
<th>Velocity</th>
|
<th>Velocity</th>
|
||||||
<th>Stage</th>
|
<th>Stage</th>
|
||||||
|
|
||||||
</tr>
|
</tr>
|
||||||
<tr t-foreach="object.task_id" t-as="task">
|
<tr t-foreach="object.task_id" t-as="task">
|
||||||
<td>
|
<td>
|
||||||
|
Loading…
Reference in New Issue
Block a user