|
@@ -95,10 +95,10 @@ public class TEExamStudentController {
|
|
|
Map<String, Object> transMap = new HashMap<String, Object>();
|
|
|
TBUser tbUser = (TBUser) ServletUtil.getRequestAccount();
|
|
|
//往任务表里插一条数据
|
|
|
- tbTaskHistory = new TBTaskHistory(TaskTypeEnum.EXPORT_EXAM_STUDENT, TaskStatusEnum.INIT, SystemConstant.EXPORT_INIT, 0d, tbUser.getId());
|
|
|
+ tbTaskHistory = new TBTaskHistory(TaskTypeEnum.EXPORT_EXAM_STUDENT, TaskStatusEnum.INIT, SystemConstant.EXPORT_INIT, 0d, tbUser.getId(), tbUser.getOrgId());
|
|
|
taskHistoryService.save(tbTaskHistory);
|
|
|
transMap.put("tbTaskHistory", tbTaskHistory);
|
|
|
-
|
|
|
+ transMap.put("orgId", tbUser.getOrgId());
|
|
|
transMap.put("examId", examId);
|
|
|
transMap.put("activityId", activityId);
|
|
|
transMap.put("identity", identity);
|
|
@@ -109,7 +109,6 @@ public class TEExamStudentController {
|
|
|
transMap.put("enable", enable);
|
|
|
transMap.put("classNo", classNo);
|
|
|
transMap.put("hasPhoto", hasPhoto);
|
|
|
-
|
|
|
transMap.put("createId", tbUser.getId());
|
|
|
|
|
|
//mq发送消息start
|
|
@@ -284,7 +283,7 @@ public class TEExamStudentController {
|
|
|
// 往任务表里插一条数据
|
|
|
tbTaskHistory = new TBTaskHistory(TaskTypeEnum.IMPORT_EXAM_STUDENT, examId, TaskStatusEnum.INIT,
|
|
|
SystemConstant.IMPORT_INIT, 0d, tbAttachment.getName(), tbAttachment.getRemark(),
|
|
|
- tbUser.getId());
|
|
|
+ tbUser.getId(), tbUser.getOrgId());
|
|
|
taskHistoryService.save(tbTaskHistory);
|
|
|
transMap.put("tbTaskHistory", tbTaskHistory);
|
|
|
}
|
|
@@ -375,7 +374,7 @@ public class TEExamStudentController {
|
|
|
Map transMap = new HashMap();
|
|
|
TBUser tbUser = (TBUser) ServletUtil.getRequestAccount();
|
|
|
//往任务表里插一条数据
|
|
|
- tbTaskHistory = new TBTaskHistory(TaskTypeEnum.EXPORT_MARK_RESULT_SIMPLE, TaskStatusEnum.INIT, SystemConstant.EXPORT_INIT, 0d, tbUser.getId());
|
|
|
+ tbTaskHistory = new TBTaskHistory(TaskTypeEnum.EXPORT_MARK_RESULT_SIMPLE, TaskStatusEnum.INIT, SystemConstant.EXPORT_INIT, 0d, tbUser.getId(), tbUser.getOrgId());
|
|
|
taskHistoryService.save(tbTaskHistory);
|
|
|
transMap.put("tbTaskHistory", tbTaskHistory);
|
|
|
transMap.put("createId", tbUser.getId());
|
|
@@ -418,7 +417,7 @@ public class TEExamStudentController {
|
|
|
Map transMap = new HashMap();
|
|
|
TBUser tbUser = (TBUser) ServletUtil.getRequestAccount();
|
|
|
//往任务表里插一条数据
|
|
|
- tbTaskHistory = new TBTaskHistory(TaskTypeEnum.EXPORT_MARK_RESULT_STANDARD, TaskStatusEnum.INIT, SystemConstant.EXPORT_INIT, 0d, tbUser.getId());
|
|
|
+ tbTaskHistory = new TBTaskHistory(TaskTypeEnum.EXPORT_MARK_RESULT_STANDARD, TaskStatusEnum.INIT, SystemConstant.EXPORT_INIT, 0d, tbUser.getId(), tbUser.getOrgId());
|
|
|
taskHistoryService.save(tbTaskHistory);
|
|
|
transMap.put("tbTaskHistory", tbTaskHistory);
|
|
|
transMap.put("createId", tbUser.getId());
|