|
@@ -649,7 +649,7 @@ public class TaskServiceImpl extends ServiceImpl<TaskMapper, Task> implements Ta
|
|
|
String initExectorIds="";
|
|
|
String initExectorNames="";
|
|
|
Double initworkHourExector= (double) 0;
|
|
|
- for (int rowIndex = 1; rowIndex <= sheet.getLastRowNum(); rowIndex++) {
|
|
|
+ for (int rowIndex = 2; rowIndex <= sheet.getLastRowNum(); rowIndex++) {
|
|
|
ArrayList<TaskExecutor> taskExecutors = new ArrayList<>();
|
|
|
XSSFRow row = sheet.getRow(rowIndex);
|
|
|
Task task = new Task();
|
|
@@ -957,6 +957,7 @@ public class TaskServiceImpl extends ServiceImpl<TaskMapper, Task> implements Ta
|
|
|
task.setExecutorName(executorStr);
|
|
|
initExectorIds=exectorIds.toString();
|
|
|
initExectorColors=exectorColors.toString();
|
|
|
+ initExectorNames=executorStr;
|
|
|
taskDailyAllocate.setUserId(exectorIds.toString());
|
|
|
task.setExecutorId(exectorIds.toString());
|
|
|
task.setExecutorColor(exectorColors.toString());
|
|
@@ -1777,7 +1778,7 @@ public class TaskServiceImpl extends ServiceImpl<TaskMapper, Task> implements Ta
|
|
|
|
|
|
String infoMsg = project.getProjectName() + "项目的FTE计划审批任务" +
|
|
|
(executorNames.isEmpty() ? "" : ",执行人有:" + executorNames) +
|
|
|
- ",工作计划被驳回";
|
|
|
+ ",工作计划被一级审核人驳回";
|
|
|
information.setMsg(infoMsg);
|
|
|
information.setType(11);
|
|
|
information.setJumpType(2);
|
|
@@ -1807,7 +1808,7 @@ public class TaskServiceImpl extends ServiceImpl<TaskMapper, Task> implements Ta
|
|
|
|
|
|
String infoMsg = project.getProjectName() + "项目的FTE计划审批任务" +
|
|
|
(executorNames.isEmpty() ? "" : ",执行人有:" + executorNames) +
|
|
|
- ",工作计划被驳回";
|
|
|
+ ",工作计划被二级审核人驳回";
|
|
|
information.setMsg(infoMsg);
|
|
|
information.setType(11);
|
|
|
information.setJumpType(2);
|