Skip to content

Commit

Permalink
[FIX] mrp_project: missed update parameter in super call
Browse files Browse the repository at this point in the history
  • Loading branch information
agaldona committed Nov 10, 2016
1 parent 0da310b commit 247a2ad
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 247a2ad

Please sign in to comment.