提交 f5624d2e 编写于 作者: U unknown

[流程管理]修复新建流程实例的时候搜索后不能启动的问题

上级 079a991f
......@@ -906,7 +906,14 @@ MWF.xApplication.process.TaskCenter.Process = new Class({
this.application = application;
this.applicationData = applicationData;
this.app = this.application.app;
this.starter = this.application.starter
if( this.application.starter ){
this.starter = this.application.starter;
}else if( this.application.app && this.application.app.starter ){
this.starter = this.application.app.starter;
}else if( this.application.app && this.application.app.processStarter ){
this.starter = this.application.app.processStarter;
}
//this.starter = this.application.starter
this.container = container;
this.css = this.app.css;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册