[IMP] rename model method 'trigger_workflow' into 'step_workflow' (less confusing)

bzr revid: rco@openerp.com-20130213150136-rg0llzdr4tzizise
This commit is contained in:
Raphael Collet 2013-02-13 16:01:36 +01:00
parent 6bd409246d
commit f66e33f36d
2 changed files with 6 additions and 6 deletions

View File

@ -373,13 +373,13 @@ class procurement_order(osv.osv):
self.message_post(cr, uid, [procurement.id], body=message, context=context)
return ok
def trigger_workflow(self, cr, uid, ids, context=None):
def step_workflow(self, cr, uid, ids, context=None):
""" Don't trigger workflow for the element specified in trigger """
wkf_op_key = 'workflow.trg_write.%s' % self._name
if context and not context.get(wkf_op_key, True):
# make sure we don't have a trigger loop while processing triggers
return
return super(procurement_order, self).trigger_workflow(cr, uid, ids, context=context)
return super(procurement_order, self).step_workflow(cr, uid, ids, context=context)
def action_produce_assign_service(self, cr, uid, ids, context=None):
""" Changes procurement state to Running.

View File

@ -2957,10 +2957,10 @@ class stock_picking_in(osv.osv):
# write and unlink operation instead of its own workflow (which is not existing)
return self.pool.get('stock.picking').delete_workflow(cr, uid, ids, context=context)
def trigger_workflow(self, cr, uid, ids, context=None):
def step_workflow(self, cr, uid, ids, context=None):
# overridden in order to trigger the workflow of stock.picking at the end of create,
# write and unlink operation instead of its own workflow (which is not existing)
return self.pool.get('stock.picking').trigger_workflow(cr, uid, ids, context=context)
return self.pool.get('stock.picking').step_workflow(cr, uid, ids, context=context)
def signal_workflow(self, cr, uid, ids, signal, context=None):
# overridden in order to fire the workflow signal on given stock.picking workflow instance
@ -3012,10 +3012,10 @@ class stock_picking_out(osv.osv):
# write and unlink operation instead of its own workflow (which is not existing)
return self.pool.get('stock.picking').delete_workflow(cr, uid, ids, context=context)
def trigger_workflow(self, cr, uid, ids, context=None):
def step_workflow(self, cr, uid, ids, context=None):
# overridden in order to trigger the workflow of stock.picking at the end of create,
# write and unlink operation instead of its own workflow (which is not existing)
return self.pool.get('stock.picking').trigger_workflow(cr, uid, ids, context=context)
return self.pool.get('stock.picking').step_workflow(cr, uid, ids, context=context)
def signal_workflow(self, cr, uid, ids, signal, context=None):
# overridden in order to fire the workflow signal on given stock.picking workflow instance