|
|
@ -23,8 +23,6 @@ import org.springframework.stereotype.Component;
|
|
|
|
|
|
|
|
|
|
|
|
import com.fasterxml.jackson.databind.ObjectMapper;
|
|
|
|
import com.fasterxml.jackson.databind.ObjectMapper;
|
|
|
|
|
|
|
|
|
|
|
|
import cokr.xit.foundation.AbstractComponent;
|
|
|
|
|
|
|
|
import cokr.xit.foundation.data.DataObject;
|
|
|
|
|
|
|
|
import cokr.xit.base.user.service.bean.UserBean;
|
|
|
|
import cokr.xit.base.user.service.bean.UserBean;
|
|
|
|
import cokr.xit.fims.crdn.Crdn;
|
|
|
|
import cokr.xit.fims.crdn.Crdn;
|
|
|
|
import cokr.xit.fims.crdn.dao.CrdnUpdtMapper;
|
|
|
|
import cokr.xit.fims.crdn.dao.CrdnUpdtMapper;
|
|
|
@ -38,6 +36,8 @@ import cokr.xit.fims.nxrp.dao.NisIndivA03Mapper;
|
|
|
|
import cokr.xit.fims.sndb.SndbQuery;
|
|
|
|
import cokr.xit.fims.sndb.SndbQuery;
|
|
|
|
import cokr.xit.fims.sndb.SndngDtl;
|
|
|
|
import cokr.xit.fims.sndb.SndngDtl;
|
|
|
|
import cokr.xit.fims.sndb.dao.SndngDtlMapper;
|
|
|
|
import cokr.xit.fims.sndb.dao.SndngDtlMapper;
|
|
|
|
|
|
|
|
import cokr.xit.foundation.AbstractComponent;
|
|
|
|
|
|
|
|
import cokr.xit.foundation.data.DataObject;
|
|
|
|
|
|
|
|
|
|
|
|
/**과태료 대장 단속 정보 등록 정보 관리 Bean
|
|
|
|
/**과태료 대장 단속 정보 등록 정보 관리 Bean
|
|
|
|
*
|
|
|
|
*
|
|
|
@ -145,7 +145,7 @@ public class NisIndivBean extends AbstractComponent {
|
|
|
|
nisIndivA01.setRprsTxmCd(selectCrdnInfo.string("TXITM_CD")); // 대표세입과목코드
|
|
|
|
nisIndivA01.setRprsTxmCd(selectCrdnInfo.string("TXITM_CD")); // 대표세입과목코드
|
|
|
|
nisIndivA01.setOperItemCd(selectCrdnInfo.string("OPER_ITEM_CD")); // 운영항목코드
|
|
|
|
nisIndivA01.setOperItemCd(selectCrdnInfo.string("OPER_ITEM_CD")); // 운영항목코드
|
|
|
|
// 과태료과징금구분코드 01:과태료 02:과징금
|
|
|
|
// 과태료과징금구분코드 01:과태료 02:과징금
|
|
|
|
if (selectCrdnInfo.string("TASK_SE_CD").equals("PES")) { // 밤샘주차는 과장금(02)
|
|
|
|
if (selectCrdnInfo.string("TASK_SE_CD").equals("PES")) { // 밤샘주차는 과징금(02)
|
|
|
|
nisIndivA01.setFinScrgSeCd("02");
|
|
|
|
nisIndivA01.setFinScrgSeCd("02");
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
nisIndivA01.setFinScrgSeCd("01");
|
|
|
|
nisIndivA01.setFinScrgSeCd("01");
|
|
|
@ -513,6 +513,7 @@ public class NisIndivBean extends AbstractComponent {
|
|
|
|
// SSL 무시 /////////////////////////////////////////////////////////////////
|
|
|
|
// SSL 무시 /////////////////////////////////////////////////////////////////
|
|
|
|
public void ignoreSsl() throws Exception {
|
|
|
|
public void ignoreSsl() throws Exception {
|
|
|
|
HostnameVerifier hv = new HostnameVerifier() {
|
|
|
|
HostnameVerifier hv = new HostnameVerifier() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean verify(String urlHostName, SSLSession session) {
|
|
|
|
public boolean verify(String urlHostName, SSLSession session) {
|
|
|
|
return true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -532,6 +533,7 @@ public class NisIndivBean extends AbstractComponent {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static class miTM implements TrustManager,X509TrustManager {
|
|
|
|
static class miTM implements TrustManager,X509TrustManager {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public X509Certificate[] getAcceptedIssuers() {
|
|
|
|
public X509Certificate[] getAcceptedIssuers() {
|
|
|
|
return null;
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -544,11 +546,13 @@ public class NisIndivBean extends AbstractComponent {
|
|
|
|
return true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void checkServerTrusted(X509Certificate[] certs, String authType)
|
|
|
|
public void checkServerTrusted(X509Certificate[] certs, String authType)
|
|
|
|
throws CertificateException {
|
|
|
|
throws CertificateException {
|
|
|
|
return;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void checkClientTrusted(X509Certificate[] certs, String authType)
|
|
|
|
public void checkClientTrusted(X509Certificate[] certs, String authType)
|
|
|
|
throws CertificateException {
|
|
|
|
throws CertificateException {
|
|
|
|
return;
|
|
|
|
return;
|
|
|
|