|
@@ -244,6 +244,7 @@ public class SoapParser {
|
|
|
|
|
|
String consentMstRid = so.getProperty("consentMstRid").toString().trim();
|
|
|
String createUserId = so.getProperty("createUserId").toString().trim();
|
|
|
+ String modifyUserId = so.getProperty("modifyUserId").toString().trim();
|
|
|
String ocrTag = so.getProperty("ocrTag").toString().trim();
|
|
|
String pid = so.getProperty("pid").toString().trim();
|
|
|
|
|
@@ -273,6 +274,8 @@ public class SoapParser {
|
|
|
|
|
|
consentMstRid = consentMstRid.equals(ConsentConfig.RETURN_NULL) ? "" : consentMstRid;
|
|
|
createUserId = createUserId.equals(ConsentConfig.RETURN_NULL) ? "" : createUserId;
|
|
|
+ modifyUserId = modifyUserId.equals(ConsentConfig.RETURN_NULL) ? "" : modifyUserId;
|
|
|
+
|
|
|
ocrTag = ocrTag.equals(ConsentConfig.RETURN_NULL) ? "" : ocrTag;
|
|
|
pid = pid.equals(ConsentConfig.RETURN_NULL) ? "" : pid;
|
|
|
inDd = inDd.equals(ConsentConfig.RETURN_NULL) ? "" : inDd;
|
|
@@ -298,7 +301,7 @@ public class SoapParser {
|
|
|
linkFormCd = linkFormCd.equals(ConsentConfig.RETURN_NULL) ? "" : linkFormCd;
|
|
|
jinjeongCd = jinjeongCd.equals(ConsentConfig.RETURN_NULL) ? "" : jinjeongCd;
|
|
|
|
|
|
- arrayList.add(new ConsentFormListVO(consentMstRid, createUserId, ocrTag, pid, inDd, ordType, ordDeptCd, cretNo, opRsrvNo, patientName, consentState, consentStateEng, formCd, formGuid, formName, formRid, printOnly, pageCnt, ocrTagPrntYn, formPrntNm, certUseYn, opDiagNm, opNm, userDrFlag, linkFormCd, jinjeongCd));
|
|
|
+ arrayList.add(new ConsentFormListVO(consentMstRid, createUserId, modifyUserId, ocrTag, pid, inDd, ordType, ordDeptCd, cretNo, opRsrvNo, patientName, consentState, consentStateEng, formCd, formGuid, formName, formRid, printOnly, pageCnt, ocrTagPrntYn, formPrntNm, certUseYn, opDiagNm, opNm, userDrFlag, linkFormCd, jinjeongCd));
|
|
|
}
|
|
|
}
|
|
|
|