|
@@ -785,7 +785,7 @@ public class RepairApplicationFormServiceImpl extends BaseServiceImpl<RepairAppl
|
|
|
List<SysFile> applicationFileList = ListUtils.newArrayList();
|
|
|
List<SysFile> repairFileList = ListUtils.newArrayList();
|
|
|
List<SysFile> checkFileList = ListUtils.newArrayList();
|
|
|
- List<SysFile> reportFile = ListUtils.newArrayList();
|
|
|
+ List<SysFile> reportFileList = ListUtils.newArrayList();
|
|
|
sysFiles.forEach(item -> {
|
|
|
if (item.getType().equals(SysFileTypeEnum.REPAIR_APPLICATION_IMGS.getValue())) {
|
|
|
applicationFileList.add(item);
|
|
@@ -796,10 +796,14 @@ public class RepairApplicationFormServiceImpl extends BaseServiceImpl<RepairAppl
|
|
|
if (item.getType().equals(SysFileTypeEnum.REPAIR_CHECK_IMGS.getValue())) {
|
|
|
checkFileList.add(item);
|
|
|
}
|
|
|
+ if(item.getType().equals(SysFileTypeEnum.REPAIR_APPLICATION_FILES.getValue())){
|
|
|
+ reportFileList.add(item);
|
|
|
+ }
|
|
|
});
|
|
|
vo.setRepairFileList(repairFileList);
|
|
|
vo.setApplicationFileList(applicationFileList);
|
|
|
vo.setCheckFileList(checkFileList);
|
|
|
+ vo.setReportFileList(reportFileList);
|
|
|
// 车间位置
|
|
|
SbInfo sbInfo = sbInfoService.getModelById(vo.getSbId());
|
|
|
if(StringUtils.isNotBlank(sbInfo.getPositionId())){
|