Commit 410908c7 authored by suhuiguang's avatar suhuiguang

feat(jyjc): 报检结果接收调整

1.台套类接收结果自测bug修改 2.增加气瓶检验附件表,并在气瓶报检数据接收时进行数据入库及更新 3.检验详情接口增加对老存量数据兼容性
parent 408d00ab
......@@ -146,7 +146,7 @@ public class SingleEquipResultDataProcessor implements SupportableResultDataProc
}
private void fillInspectionFields(JyjcInspectionResult jyjcInspectionResult, IdxBizJgInspectionDetectionInfo info) {
info.setInspectOrgName(jyjcInspectionResult.getInspectionTypeName());
info.setInspectOrgName(jyjcInspectionResult.getInspectionUnitName());
info.setInspectType(jyjcInspectionResult.getInspectionType());
info.setRecord(jyjcInspectionResult.getEquipUnicode());
info.setInspectReport(this.getReport(jyjcInspectionResult));
......
......@@ -120,6 +120,13 @@ public class CommonServiceImpl {
userInfoQueryWrapper.eq(TzsUserInfo::getUnitCode, unitCode);
userInfoQueryWrapper.like(TzsUserInfo::getPost, jyjcUserPost);
userInfoQueryWrapper.eq(BaseEntity::getIsDelete, false);
userInfoQueryWrapper.select(
BaseEntity::getSequenceNbr,
TzsUserInfo::getName,
TzsUserInfo::getCertificateNum,
TzsUserInfo::getPost,
TzsUserInfo::getAmosUserId,
TzsUserInfo::getPhone);
return userInfoMapper.selectList(userInfoQueryWrapper);
}
......
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