통행자료 중복시 사전등록결제 미처리

main
이범준 5 months ago
parent 25d66c8edf
commit 36ba63699b

@ -138,18 +138,19 @@ public class CommHoIrregularController {
mapOrg.put("out_ret", -1);
commRelayServerService.callSP_FARE_INS(mapOrg);
// 사전등록결제 요청인 경우
// 2019.08.29 수정
String strCollect = mapOrg.get("in_collect_new").toString();
if (strCollect.equals("60") || strCollect.equals("61") || strCollect.equals("62") || strCollect.equals("63")
|| strCollect.equals("64") || strCollect.equals("66")) {
System.out.println("##### 사전결제 시작 ####");
callPreRegistPayment(mapOrg);
if(mapOrg.get("out_ret").toString().equals("1")){
// 사전등록결제 요청인 경우
// 2019.08.29 수정
String strCollect = mapOrg.get("in_collect_new").toString();
if (strCollect.equals("60") || strCollect.equals("61") || strCollect.equals("62") || strCollect.equals("63")
|| strCollect.equals("64") || strCollect.equals("66")) {
System.out.println("##### 사전결제 시작 ####");
callPreRegistPayment(mapOrg);
}
}
if (mapOrg.get("out_ret").toString().equals("1") == true) {
result.setMsg(ResultSmartPlatform.STATUS_SUCESS, "정상적으로 처리되었습니다.");
} else if (mapOrg.get("out_ret").toString().equals("2") == true) {

Loading…
Cancel
Save