commit
This commit is contained in:
-1
@@ -270,7 +270,6 @@ public class ExecutiveCommitteeUnionPushController {
|
|||||||
// 自动完成第一个申请任务
|
// 自动完成第一个申请任务
|
||||||
List<ProcessTask> doingTaskList = flowEngine.processTaskService().getDoingTaskList(instance.getId(), null);
|
List<ProcessTask> doingTaskList = flowEngine.processTaskService().getDoingTaskList(instance.getId(), null);
|
||||||
for (ProcessTask task : doingTaskList) {
|
for (ProcessTask task : doingTaskList) {
|
||||||
args.put(FlowConst.NEXT_NODE_OPERATOR, ExecutiveCommitteeUnionPushInfo.getUserId());
|
|
||||||
flowEngine.executeProcessTask(task.getId(), SecurityUtil.getUserId(), args);
|
flowEngine.executeProcessTask(task.getId(), SecurityUtil.getUserId(), args);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|||||||
+11
@@ -66,4 +66,15 @@ public class ExecutiveCommitteeTwoPush extends BaseModel implements Serializable
|
|||||||
@Comment("推选时间")
|
@Comment("推选时间")
|
||||||
@ColDefine(type = ColType.DATETIME)
|
@ColDefine(type = ColType.DATETIME)
|
||||||
private DateTime pushDate;
|
private DateTime pushDate;
|
||||||
|
|
||||||
|
@Column
|
||||||
|
@Comment("录入类型1.执委会委员/2.工会委员会委员/3.经审委员会委员")
|
||||||
|
@ColDefine(type = ColType.VARCHAR,width = 30)
|
||||||
|
private String roleCode;
|
||||||
|
|
||||||
|
@Column
|
||||||
|
@Comment("是否正式委员")
|
||||||
|
@Default("0")
|
||||||
|
@ColDefine(type = ColType.BOOLEAN)
|
||||||
|
private Boolean isFormal;
|
||||||
}
|
}
|
||||||
|
|||||||
+2
-2
@@ -71,9 +71,9 @@ const merge = {
|
|||||||
></el-option>
|
></el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="审核意见" prop="approvalOpinion"
|
<el-form-item label="审核意见" prop="tf_opinion"
|
||||||
:rules="[{required:true,message:'必填',trigger:['change','blur']}]">
|
:rules="[{required:true,message:'必填',trigger:['change','blur']}]">
|
||||||
<user-opinion-textarea v-model="formData.approvalOpinion"></user-opinion-textarea>
|
<user-opinion-textarea v-model="formData.tf_opinion"></user-opinion-textarea>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
<el-row type="flex" justify="end">
|
<el-row type="flex" justify="end">
|
||||||
|
|||||||
Reference in New Issue
Block a user