提交 0f163d4e 编写于 作者: 蔡祥熠

Merge branch 'fix/Process.starter_search_execption' into 'develop'

Merge of fix/[流程管理]修复新建流程实例界面搜索后不能启动的问题 to develop

See merge request o2oa/o2oa!176
......@@ -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.
先完成此消息的编辑!
想要评论请 注册