车辆问题修改

This commit is contained in:
jiang 2025-12-11 10:56:04 +08:00
parent 043eb8b461
commit e0d39c5ea6
1 changed files with 2 additions and 2 deletions

View File

@ -178,9 +178,9 @@ public class SupDispatchCarServiceImpl implements SupDispatchCarService {
List<FileUploadVo> operaImage = uploadService.getFileList(detailsVo.getOperaUserId(), "car_driver_info", "");
detailsVo.setOperaImage(operaImage);
}
List<AuditRecordVo> recordList=recordService.getRecordList(vo.getPlanId());
List<AuditRecordVo> recordList = recordService.getRecordList(vo.getPlanId());
List<AuditRecordVo> record = recordService.getRecordList("out-" + data.getId());
List<AuditRecordVo> supRecord = recordService.getSupRecordList(data.getId());
List<AuditRecordVo> supRecord = recordService.getSupRecordList(vo.getPlanId());
record.addAll(supRecord);
recordList.addAll(record);
vo.setRecordList(recordList);