Commit e4cfd0af by huangfusuper

补批参数操作

parent 2adceb0b
...@@ -1396,7 +1396,6 @@ public class ApiFlowServiceImpl implements ApiFlowService { ...@@ -1396,7 +1396,6 @@ public class ApiFlowServiceImpl implements ApiFlowService {
//校验时间 //校验时间
for (String repairTime : repairTimeList) { for (String repairTime : repairTimeList) {
List<WaitingTask> waitingTaskDateList = new ArrayList<>();
try { try {
SimpleDateFormat sdf = new SimpleDateFormat(timeFormatName); SimpleDateFormat sdf = new SimpleDateFormat(timeFormatName);
Date repairDate = sdf.parse(repairTime); Date repairDate = sdf.parse(repairTime);
...@@ -1406,7 +1405,7 @@ public class ApiFlowServiceImpl implements ApiFlowService { ...@@ -1406,7 +1405,7 @@ public class ApiFlowServiceImpl implements ApiFlowService {
ValidationUtil.isTrueValidation(true, "补批日期不符合规范,例:" + timeFormatName); ValidationUtil.isTrueValidation(true, "补批日期不符合规范,例:" + timeFormatName);
} }
result.put(repairTime, waitingTaskDateList); result.put(repairTime, waitingTaskList);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment