|
@@ -235,7 +235,8 @@ public class QcresultInfoServiceImpl extends ServiceImpl<QcresultInfoMapper, Qcr
|
|
|
}
|
|
|
//缺陷分值
|
|
|
String isPlacefile = filterPageVO.getIsPlacefile();
|
|
|
- List<EntryNumDTO> entryScore = baseMapper.entryGroupByEntryScore(hospitalId,isPlacefile, ids);
|
|
|
+ List<EntryNumDTO> entryScore = new ArrayList<>();
|
|
|
+ entryScore = baseMapper.entryGroupByEntryScore(hospitalId,isPlacefile, ids);
|
|
|
for (EntryNumDTO record : records) {
|
|
|
for (EntryNumDTO entryNumDTO : entryScore) {
|
|
|
if(record.getId().equals(entryNumDTO.getId())){
|