|
我下载的示例网站的会议申请流程,关联了会议管理。,审核完毕后到附件传输报错,附件无法传给相关会议当中。。怎么办呀
官网的脚本 jaxrs/attachment/create/from/processplatform
var meeting = this.data.meetingResponse.id;
var work = this.workContext.getWork().id;
var attachmentList = [];
var atts = this.workContext.getAttachmentList();
for (var i=0; i<atts.length; i++){
var att = atts;
attachmentList.push(att.id);
}
var data = {
"meeting":meeting,
"work": work,
"attachmentList": attachmentList
};
this.body.set(data);
|
|