[FIX] mrp_operations: adapt the date_planned of the WO when date_planned of MO is changed

Changing the scheduled date (date_planned) of the MO triggers a computation
of the scheduled date of the associated WO in order to keep the data
consistent.

Fixes #6694
opw-639771
This commit is contained in:
Nicolas Martinelli 2015-05-19 13:41:32 +02:00
parent 54a90179bb
commit 9c6ae3cf6c
1 changed files with 1 additions and 1 deletions

View File

@ -354,7 +354,7 @@ class mrp_production(osv.osv):
for po in self.browse(cr, uid, ids, context=context):
direction[po.id] = cmp(po.date_start, vals.get('date_start', False))
result = super(mrp_production, self).write(cr, uid, ids, vals, context=context)
if (vals.get('workcenter_lines', False) or vals.get('date_start', False)) and update:
if (vals.get('workcenter_lines', False) or vals.get('date_start', False) or vals.get('date_planned', False)) and update:
self._compute_planned_workcenter(cr, uid, ids, context=context, mini=mini)
for d in direction:
if direction[d] == 1: