[FIX] Workflow transition takes the model name, not the model object.

bzr revid: jth@openerp.com-20100401132709-1tyxfoh9550za6y1
This commit is contained in:
Julien Thewys 2010-04-01 15:27:09 +02:00
parent 44f6ef941a
commit 51f8a94d87
1 changed files with 1 additions and 2 deletions

View File

@ -336,7 +336,6 @@ class YamlInterpreter(object):
workflow, values = node.items()[0]
if self.isnoupdate(workflow) and self.mode != 'init':
return
model = self.get_model(workflow.model)
if workflow.ref:
id = self.get_id(workflow.ref)
else:
@ -357,7 +356,7 @@ class YamlInterpreter(object):
else:
uid = self.uid
wf_service = netsvc.LocalService("workflow")
wf_service.trg_validate(uid, model, id, workflow.action, self.cr)
wf_service.trg_validate(uid, workflow.model, id, workflow.action, self.cr)
def process_function(self, node):
function, values = node.items()[0]