Commit 19875a91 authored by 刘林's avatar 刘林

fix(jg):压力管道合并登记时已登记装置的数据质量字段未转译

parent 853e41f2
......@@ -5065,7 +5065,9 @@ public class JgUseRegistrationServiceImpl extends BaseService<JgUseRegistrationD
.notIn(!proIds.isEmpty(), BaseEntity::getSequenceNbr, proIds)
.and(w -> w.isNotNull(IdxBizJgProjectContraption::getUseRegistrationCode)
.or().eq(IdxBizJgProjectContraption::getIsFirstMerge, true));
return jgProjectContraptionService.list(wrapper);
List<IdxBizJgProjectContraption> list = jgProjectContraptionService.list(wrapper);
list.forEach(p ->p.setDataQualityScore(commonServiceImpl.castDataQualityScore2Name(p.getDataQualityScore(), p.getIsIntoManagement())));
return list;
}
public Map<String, Object> getDeviceListByProjectContraption(String projectContraptionSeq, String[] originProjectContraptionIds) {
......
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