Skip to content

Commit

Permalink
Merge pull request #163 from agaldona/8.0-mrp-project
Browse files Browse the repository at this point in the history
[FIX] mrp_project: missed update parameter in super call
  • Loading branch information
pedrobaeza committed Nov 10, 2016
2 parents 0da310b + 247a2ad commit 6d09c0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mrp_project/models/mrp_production.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,5 +103,5 @@ class MrpProductionWorkcenterLine(models.Model):
def write(self, vals, update=True):
for rec in self:
super(MrpProductionWorkcenterLine, rec.with_context(
production=rec.production_id)).write(vals)
production=rec.production_id)).write(vals, update=update)
return True

0 comments on commit 6d09c0b

Please sign in to comment.