1. 차적조회시 지번,호,건물본번,건물부번 반환값 보정

2. 주석 수정(연계url)
main
이범준 10 months ago
parent 73ddc7a345
commit 873167fb64

@ -110,7 +110,7 @@ public class CommSmartPlatformFISController {
System.out.println("==== callCarInfoListJson.do 6 ");
// 차적정보조회 웹서비스 호출
//String url = "http://192.168.0.137:8081/cfs/trsmrcv/testCallSearchCarInfo11111.do";
//String url = "http://98.42.34.216:19736/fis/rest/api/getCarBasicInfo";
String url = cfsCommonService.findCommonSecureGet("ITF_CFS_O_001");
System.out.println("==== callCarInfoListJson.do " + url);
CallWebService callWebService = new CallWebService(url);
@ -251,7 +251,7 @@ public class CommSmartPlatformFISController {
logger.info("차적조회 찾기 6");
Thread.sleep(200);
// 차적정보조회 웹서비스 호출
//String url = "http://192.168.0.137:8081/cfs/trsmrcv/testCallSearchCarInfo11111.do";
//String url = "http://98.42.34.216:19736/fis/rest/api/getCarBasicInfo";
String url = cfsCommonService.findCommonSecureGet("ITF_CFS_O_001");
CallWebService callWebService = new CallWebService(url);
logger.info("차적조회 찾기 6-1");
@ -403,7 +403,7 @@ public class CommSmartPlatformFISController {
System.out.println("시설공단 확인 3");
// 차적정보조회 웹서비스 호출
//String url = "http://192.168.0.137:8081/cfs/trsmrcv/testCallSearchCarInfo11111.do";
//String url = "http://98.42.34.216:19736/fis/rest/api/getCarBasicInfo";
String url = cfsCommonService.findCommonSecureGet("ITF_CFS_O_062");
CallWebService callWebService = new CallWebService(url);
System.out.println("시설공단 확인 4");
@ -487,7 +487,7 @@ public class CommSmartPlatformFISController {
System.out.println("차적조회 찾기 6");
// 차적정보조회 웹서비스 호출
//String url = "http://192.168.0.137:8081/cfs/trsmrcv/testCallSearchCarInfo11111.do";
//String url = "http://98.42.34.216:19736/fis/rest/api/getCarBasicInfo";
String url = cfsCommonService.findCommonSecureGet("ITF_CFS_O_001");
CallWebService callWebService = new CallWebService(url);
System.out.println("차적조회 찾기 6");
@ -1087,7 +1087,7 @@ public class CommSmartPlatformFISController {
Thread.sleep(200);
// 차적정보조회 웹서비스 호출
//String url = "http://192.168.0.137:8081/cfs/trsmrcv/testCallSearchCarInfo11111.do";
//String url = "http://98.42.34.216:19736/fis/rest/api/getCarBasicInfo";
String url = cfsCommonService.findCommonSecureGet("ITF_CFS_O_001");
CallWebService callWebService = new CallWebService(url);
@ -1429,7 +1429,7 @@ public class CommSmartPlatformFISController {
logger.info("========================== 4");
Thread.sleep(200);
// 차적정보조회 웹서비스 호출
//String url = "http://192.168.0.137:8081/cfs/trsmrcv/testCallSearchCarInfo11111.do";
//String url = "http://98.42.34.216:19736/fis/rest/api/getCarBasicInfo";
String url = cfsCommonService.findCommonSecureGet("ITF_CFS_O_001");
CallWebService callWebService = new CallWebService(url);
@ -2148,7 +2148,7 @@ public class CommSmartPlatformFISController {
logger.info("========================== 4");
Thread.sleep(500);
// 차적정보조회 웹서비스 호출
//String url = "http://192.168.0.137:8081/cfs/trsmrcv/testCallSearchCarInfo11111.do";
//String url = "http://98.42.34.216:19736/fis/rest/api/getCarBasicInfo";
String url = cfsCommonService.findCommonSecureGet("ITF_CFS_O_001");
CallWebService callWebService = new CallWebService(url);
@ -3120,10 +3120,10 @@ public class CommSmartPlatformFISController {
param.put("useStrnghldMntn", jsonParam.get("useStrnghldMntn").toString());
}
if(jsonParam.get("useStrnghldLnbr") != null){
param.put("useStrnghldLnbr", jsonParam.get("useStrnghldLnbr").toString());
param.put("useStrnghldLnbr", onlyDigit(jsonParam.get("useStrnghldLnbr").toString()));
}
if(jsonParam.get("useStrnghldHo") != null){
param.put("useStrnghldHo", jsonParam.get("useStrnghldHo").toString());
param.put("useStrnghldHo", onlyDigit(jsonParam.get("useStrnghldHo").toString()));
}
if(jsonParam.get("useStrnghldAdresNm") != null){
param.put("useStrnghldAdresNm", jsonParam.get("useStrnghldAdresNm").toString());
@ -3135,10 +3135,10 @@ public class CommSmartPlatformFISController {
param.put("usgsrhldUndgrndBuldSeCode", jsonParam.get("usgsrhldUndgrndBuldSeCode").toString());
}
if(jsonParam.get("useStrnghldBuldMainNo") != null){
param.put("useStrnghldBuldMainNo", jsonParam.get("useStrnghldBuldMainNo").toString());
param.put("useStrnghldBuldMainNo", onlyDigit(jsonParam.get("useStrnghldBuldMainNo").toString()));
}
if(jsonParam.get("useStrnghldBuldSubNo") != null){
param.put("useStrnghldBuldSubNo", jsonParam.get("useStrnghldBuldSubNo").toString());
param.put("useStrnghldBuldSubNo", onlyDigit(jsonParam.get("useStrnghldBuldSubNo").toString()));
}
if(jsonParam.get("mberSeCode") != null){
param.put("mberSeCode", jsonParam.get("mberSeCode").toString());
@ -3162,10 +3162,10 @@ public class CommSmartPlatformFISController {
param.put("ownerMntn", jsonParam.get("ownerMntn").toString());
}
if(jsonParam.get("ownerLnbr") != null){
param.put("ownerLnbr", jsonParam.get("ownerLnbr").toString());
param.put("ownerLnbr", onlyDigit(jsonParam.get("ownerLnbr").toString()));
}
if(jsonParam.get("ownerHo") != null){
param.put("ownerHo", jsonParam.get("ownerHo").toString());
param.put("ownerHo", onlyDigit(jsonParam.get("ownerHo").toString()));
}
if(jsonParam.get("ownerAdresNm") != null){
param.put("ownerAdresNm", jsonParam.get("ownerAdresNm").toString());
@ -3177,10 +3177,10 @@ public class CommSmartPlatformFISController {
param.put("ownerUndgrndBuldSeCode", jsonParam.get("ownerUndgrndBuldSeCode").toString());
}
if(jsonParam.get("ownerBuldMainNo") != null){
param.put("ownerBuldMainNo", jsonParam.get("ownerBuldMainNo").toString());
param.put("ownerBuldMainNo", onlyDigit(jsonParam.get("ownerBuldMainNo").toString()));
}
if(jsonParam.get("ownerBuldSubNo") != null){
param.put("ownerBuldSubNo", jsonParam.get("ownerBuldSubNo").toString());
param.put("ownerBuldSubNo", onlyDigit(jsonParam.get("ownerBuldSubNo").toString()));
}
if(jsonParam.get("ownerAdresFull") != null){
param.put("ownerAdresFull", jsonParam.get("ownerAdresFull").toString());
@ -3353,6 +3353,14 @@ public class CommSmartPlatformFISController {
}
private String onlyDigit(String str){
if(str == null){
return "";
}
String result = str.replaceAll("[^0-9]", "");
return result;
}
private void sendMobileNoficationNew(Map<String, String> param, Map<String, String> mapOrg, ResultSmartPlatform result) {
try {

Loading…
Cancel
Save