|
|
|
@ -36,9 +36,13 @@ public class SzyReportSealedServiceImpl implements ReportSealedService {
|
|
|
|
|
// 住院流水号
|
|
|
|
|
Node jzhNode = xmlUtil.getNode("/Request/INHOSP_NO");
|
|
|
|
|
String jzh = jzhNode.getTextContent();
|
|
|
|
|
// 封存id
|
|
|
|
|
Node sealIdNode = xmlUtil.getNode("/Request/SEAL_ID");
|
|
|
|
|
String sealId = sealIdNode.getTextContent();
|
|
|
|
|
|
|
|
|
|
TSeal condition = new TSeal();
|
|
|
|
|
condition.setJzh(jzh);
|
|
|
|
|
condition.setSealId(sealId);
|
|
|
|
|
|
|
|
|
|
TSeal seal = sealMapper.findByCondition(condition);
|
|
|
|
|
if (Objects.isNull(seal)) {
|
|
|
|
|