|
@@ -206,7 +206,7 @@ public class IotRhDailyReportController {
|
|
|
List<IotRhDailyReportDO> relocationDays = iotRhDailyReportService.relocationDays(null);
|
|
|
if (CollUtil.isNotEmpty(relocationDays)) {
|
|
|
relocationDays.forEach(day -> {
|
|
|
- relocationDaysPair.put(day.getTaskId(), day.getRelocationDays());
|
|
|
+ relocationDaysPair.put(day.getDeptId(), day.getRelocationDays());
|
|
|
});
|
|
|
}
|
|
|
});
|
|
@@ -221,7 +221,7 @@ public class IotRhDailyReportController {
|
|
|
// 2.4 设计注气量
|
|
|
findAndThen(taskExtPropertyPair, reportVO.getTaskId(), designInjection -> reportVO.setDesignInjection(designInjection));
|
|
|
// 2.5 搬迁安装天数
|
|
|
- findAndThen(relocationDaysPair, reportVO.getTaskId(), relocationDays -> reportVO.setRelocationDays(relocationDays));
|
|
|
+ findAndThen(relocationDaysPair, reportVO.getDeptId(), relocationDays -> reportVO.setRelocationDays(relocationDays));
|
|
|
// 2.6 产能
|
|
|
findAndThen(capacityPair.get(), reportVO.getDeptId(), capacity -> reportVO.setCapacity(capacity));
|
|
|
});
|