diff --git a/pom.xml b/pom.xml index 1e1a6072..2df42f2e 100644 --- a/pom.xml +++ b/pom.xml @@ -545,6 +545,12 @@ 1.5.0 + + com.clipsoft.clipreport + ClipReport4.0 + 1.0.0.71 + + diff --git a/src/main/java/kcc/utill/CertSettingUtill.java b/src/main/java/kcc/utill/CertSettingUtill.java deleted file mode 100644 index 46ede1f9..00000000 --- a/src/main/java/kcc/utill/CertSettingUtill.java +++ /dev/null @@ -1,319 +0,0 @@ -package kcc.utill; - -import java.text.SimpleDateFormat; -import java.util.Calendar; -import java.util.Random; - -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpSession; - -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.springframework.beans.factory.annotation.Value; -import org.springframework.stereotype.Component; -import org.springframework.ui.ModelMap; - -import com.sci.v2.ipin.secu.SciSecuManager; -import com.sci.v2.ipin.secu.hmac.SciHmac; - -import kcc.com.utl.fcc.service.EgovNumberUtil; -import kcc.com.utl.fcc.service.EgovStringUtil; -import seed.utils.SeedUtils; - -@Component -public class CertSettingUtill { - - @Value("#{globalSettings['cert.sServerName']}") - private String sServerName; - - private static final Logger LOGGER = LoggerFactory.getLogger(CertSettingUtill.class); - - public CertSettingUtill() { - } - - public void CertSetting( - HttpSession session - , ModelMap map - , HttpServletRequest req - , String commandCode - ) { - - - //본인인증에 필요한 값들 세팅 - - String nextUrl = req.getParameter("nextUrl"); -// String commandCode = req.getParameter("commandCode"); - - String srvNo = ""; - String hpSrvNo = ""; - String agreeCheck = ""; - String personalCheck = ""; - String mediType = ""; - String retUrl = "";//아이핀 인증후 리턴 페이지 - String hpRetUrl = "";//모바일 인증후 리턴 페이지 - -// String sServerName = req.getServerName(); - - if(commandCode.equals("medi")){//분쟁조정신청 본인인증 - - //개발서버 -// srvNo = "007001";// 아이핀 코드 -// hpSrvNo = "008001";//휴대폰 코드 - - //실서버 - srvNo = "009001";// 아이핀 코드 - hpSrvNo = "012001";//휴대폰 코드 - - agreeCheck = req.getParameter("agreeCheck"); - personalCheck = req.getParameter("personalCheck"); - mediType = req.getParameter("mediType"); - - retUrl = sServerName + "/user/extra/case/siren/ipin_popup_seed/jsp/Page.do"; - hpRetUrl = sServerName + "/user/extra/case/siren/hpParamPop/jsp/Page.do"; - - //hpName존재하면 이미 본인인증을 거쳤기 때문에 다음으로 바로 넘어간다. - if(!SeedUtils.setReplaceNull(session.getAttribute("hpName")).equals("")){ -// nextUrl = "/user/mediation/case/05/154/mediationStep04Ftc.do"; - nextUrl = "/user/mediation/case/05/154/mediationStep04.do"; - } - }else if(commandCode.equals("my")){//마이페이지 본인인증 - //개발서버 -// srvNo = "007002"; -// hpSrvNo = "008002"; - - //실서버 - srvNo = "009002"; - hpSrvNo = "012002"; - - retUrl = sServerName + "/user/extra/case/siren/myPage_ipin_popup_seed/jsp/Page.do"; - hpRetUrl = sServerName + "/user/extra/case/siren/myPage_hpParamPop/jsp/Page.do"; - - }else if(commandCode.equals("online")){//온라인 분쟁조정 상담 본인인증 - //개발서버 - srvNo = "007003"; - hpSrvNo = "008003"; - - //실서버 -// srvNo = "009003"; -// hpSrvNo = "012003"; - - personalCheck = req.getParameter("personalCheck"); - session.setAttribute("personalCheck", personalCheck); - - //개발서버 -// retUrl = "23http://ServerName:8080/user/extra/case/siren/onlineCounsel_ipin_popup_seed/jsp/Page.do"; -// retUrl = retUrl.replaceAll("ServerName", sServerName); - -// hpRetUrl = "32http://ServerName:8080/user/extra/case/siren/onlineCounsel_hpParamPop/jsp/Page.do"; -// hpRetUrl = hpRetUrl.replaceAll("ServerName", sServerName); - - //실서버 - retUrl = "23http://fairnet.kofair.or.kr/user/extra/case/siren/onlineCounsel_ipin_popup_seed/jsp/Page.do"; - - hpRetUrl = "32http://fairnet.kofair.or.kr/user/extra/case/siren/onlineCounsel_hpParamPop/jsp/Page.do"; - - //hpName존재하면 이미 본인인증을 거쳤기 때문에 다음으로 바로 넘어간다. - if(!SeedUtils.setReplaceNull(session.getAttribute("hpName")).equals("")){ - nextUrl = "/user/onlineCounsel/case/01/158/write.do"; - } - }else if(commandCode.equals("law")){ - //개발서버 -// srvNo = "007004"; -// hpSrvNo = "008005"; - - //실서버 - srvNo = "009004"; - hpSrvNo = "012004"; - - personalCheck = req.getParameter("personalCheck"); - session.setAttribute("personalCheck", personalCheck); - - //개발서버 -// retUrl = "23http://ServerName:8080/user/extra/case/siren/lawCounsel_ipin_popup_seed/jsp/Page.do"; -// retUrl = retUrl.replaceAll("ServerName", sServerName); - -// hpRetUrl = "32http://ServerName:8080/user/extra/case/siren/lawCounsel_hpParamPop/jsp/Page.do"; -// hpRetUrl = hpRetUrl.replaceAll("ServerName", sServerName); - - - //실서버 - retUrl = "23http://fairnet.kofair.or.kr/user/extra/case/siren/lawCounsel_ipin_popup_seed/jsp/Page.do"; - - hpRetUrl = "32http://fairnet.kofair.or.kr/user/extra/case/siren/lawCounsel_hpParamPop/jsp/Page.do"; - - //hpName존재하면 이미 본인인증을 거쳤기 때문에 다음으로 바로 넘어간다. - if(!SeedUtils.setReplaceNull(session.getAttribute("hpName")).equals("")){ - nextUrl = "/user/lawCounsel/case/02/159/lawWrite.do"; - } - }else if(commandCode.equals("medi_check")){ - //개발서버 -// srvNo = "007005"; -// hpSrvNo = "008006"; - - //실서버 - srvNo = "009005"; - hpSrvNo = "012005"; - - String caseNo = req.getParameter("caseNo"); - String checkPass = req.getParameter("checkPass"); - - session.setAttribute("caseNo", caseNo); - session.setAttribute("checkPass", checkPass); - - //개발서버 -// retUrl = "23http://ServerName:8080/user/extra/case/siren/checkMedi_ipin_popup_seed/jsp/Page.do"; -// retUrl = retUrl.replaceAll("ServerName", sServerName); - -// hpRetUrl = "32http://ServerName:8080/user/extra/case/siren/checkMedi_hpParamPop/jsp/Page.do"; -// hpRetUrl = hpRetUrl.replaceAll("ServerName", sServerName); - - - //실서버 - retUrl = "23http://fairnet.kofair.or.kr/user/extra/case/siren/checkMedi_ipin_popup_seed/jsp/Page.do"; - - hpRetUrl = "32http://fairnet.kofair.or.kr/user/extra/case/siren/checkMedi_hpParamPop/jsp/Page.do"; - - } - - //나중에 메인 페이지 나오면 튕겨내기 -// if(nextUrl == null || agreeCheck == null){ -// map.put("siteIdx", "case"); -// map.put("url", "/case/index.do"); -// map.put("message", "잘못된 접근 입니다."); -// map.put("opener", ""); -// map.put("append", ""); -// map.put("self", ""); -// -// return "/_common/jsp/umessage"; -// } - - - /** - * 아이핀 인증 시작 */ - - //String sServerName = req.getServerName(); - - //회원사 ID : KFA001 - String id = "KFA001"; - //회원가입화면용 결과 수신 URL : 23http:/211.43.219.170/hp/meb/pinSignupView.do - //String retUrl = "23http://ServerName/user/extra/case/siren/ipin_popup_seed/jsp/Page.do"; - //retUrl = retUrl.replaceAll("ServerName", sServerName); - //분쟁조정신청 서비스 번호 : 006001 - // String srvNo = "006001"; - //요청번호(유닉크한 랜덤값) : 40 byte까지 - String reqNum = "kofair" + EgovStringUtil.getTimeStamp() + EgovNumberUtil.getRandomNum(1000, 9999); - - session.setAttribute("id", id); - session.setAttribute("retUrl", retUrl); - session.setAttribute("srvNo", srvNo); - session.setAttribute("reqNum", reqNum); - //복호화용 임시필드 - - String exVar = "0000000000000000"; - - /** - * - * reqNum 값은 최종 결과값 복호화를 위한 SecuKey로 활용 되므로 중요합니다. - * reqNum 은 아이핀 서비스 요청시 항상 새로운 값으로 중복 되지 않게 생성 해야 합니다. - * 쿠키 또는 Session및 기타 방법을 사용해서 reqNum 값을 - * ipin_result_seed.jsp에서 가져 올 수 있도록 해야 함. - * 샘플을 위해서 쿠키를 사용한 것이므로 참고 하시길 바랍니다. - * - */ - /* Cookie c = new Cookie("reqNum", reqNum); - //c.setMaxAge(1800); // <== 필요시 설정(초단위로 설정됩니다) - response.addCookie(c);*/ - - session.setAttribute("reqNumKey", reqNum); - - // 암호화 모듈 선언 - SciSecuManager seed = new SciSecuManager(); - // 1차 암호화 - String encStr = ""; - String reqInfo = reqNum + "/" + id + "/" + srvNo + "/" + exVar; - encStr = seed.getEncPublic(reqInfo); - // 위변조 검증 값 등록 - SciHmac hmac = new SciHmac(); - String hmacMsg = SciHmac.HMacEncriptPublic(encStr); - // 2차 암호화 - reqInfo = seed.getEncPublic(encStr + "/" + hmacMsg + "/" + "00000000"); - session.setAttribute("reqInfo", reqInfo); - - /** - * 아이핀 인증 끝 */ - - - /** - * 핸드폰 인증 시작 */ - - //날짜 생성 - Calendar today = Calendar.getInstance(); - SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss"); - String day = sdf.format(today.getTime()); - - java.util.Random ran = new Random(); - //랜덤 문자 길이 - int numLength = 6; - String randomStr = ""; - - for (int i = 0; i < numLength; i++) { - //0 ~ 9 랜덤 숫자 생성 - randomStr += ran.nextInt(10); - } - - //reqNum은 최대 40byte 까지 사용 가능 - - String hpId = "SKFA001"; // 본인실명확인 회원사 아이디 - //String hpSrvNo = "005001"; // 본인실명확인 서비스번호 - String hpReqNum = day + randomStr; // 본인실명확인 요청번호 - String hpExVar = "0000000000000000"; // 복호화용 임시필드 - String hpCertDate = day; // 본인실명확인 요청시간 - String hpCertGb = "H"; // 본인실명확인 본인확인 인증수단 - String hpAddVar = ""; // 본인실명확인 추가 파라메터 - - //String hpRetUrl = "32http://ServerName/kmcis/kmcisIdSearch.jsp"; // 본인인증서비스 결과수신 POPUP URL - //String hpRetUrl = "32http://ServerName/user/extra/case/siren/hpParamPop/jsp/Page.do"; - - //hpRetUrl = "32http://kofair2.global-it.co.kr/kmcis/kmcisIdSearch.jsp"; - //hpRetUrl = hpRetUrl.replaceAll("ServerName", sServerName); //오픈할 때 주석으로 교체해줘야함 - - - /** - * - * reqNum 값은 최종 결과값 복호화를 위한 SecuKey로 활용 되므로 중요합니다. - * reqNum 은 본인 확인 요청시 항상 새로운 값으로 중복 되지 않게 생성 해야 합니다. - * 쿠키 또는 Session및 기타 방법을 사용해서 reqNum 값을 - * pcc_V3_result_seed.jsp에서 가져 올 수 있도록 해야 함. - * 샘플을 위해서 쿠키를 사용한 것이므로 참고 하시길 바랍니다. - * - */ - /*Cookie hpC = new Cookie("hpReqNum", hpReqNum); - //c.setMaxAge(1800); // <== 필요시 설정(초단위로 설정됩니다) - response.addCookie(hpC);*/ - - session.setAttribute("hpReqNumKey", hpReqNum); - - //01. 암호화 모듈 선언 - com.sci.v2.pcc.secu.SciSecuManager hpSeed = new com.sci.v2.pcc.secu.SciSecuManager(); - - //02. 1차 암호화 - String hpEncStr = ""; - String hpReqInfo = hpId+"^"+hpSrvNo+"^"+hpReqNum+"^"+hpCertDate+"^"+hpCertGb+"^"+hpAddVar+"^"+hpExVar; // 데이터 암호화 - hpEncStr = hpSeed.getEncPublic(hpReqInfo); - - //03. 위변조 검증 값 생성 - com.sci.v2.pcc.secu.hmac.SciHmac hpHmac = new com.sci.v2.pcc.secu.hmac.SciHmac(); - String hpHmacMsg = hpHmac.HMacEncriptPublic(hpEncStr); - - //03. 2차 암호화 - hpReqInfo = hpSeed.getEncPublic(hpEncStr + "^" + hpHmacMsg + "^" + "0000000000000000"); //2차암호화 - - session.setAttribute("hpRetUrl", hpRetUrl); - session.setAttribute("hpReqInfo", hpReqInfo); - - /** - * 핸드폰 인증 끝 */ - } - - -} \ No newline at end of file diff --git a/src/main/java/kcc/web/MainController.java b/src/main/java/kcc/web/MainController.java index 73bc5c29..82012802 100644 --- a/src/main/java/kcc/web/MainController.java +++ b/src/main/java/kcc/web/MainController.java @@ -1449,7 +1449,7 @@ public class MainController { menuUrl = "/web/kccadr/adjstExp/adjstExpMainPage.do"; } /* 분쟁조정 상담 > 무료법률 상담 */ - else if(menuUrl.contains("/web/user/lawCounsel/case/02/159/step")) { + else if(menuUrl.contains("/web/user/lawCounsel/case/02/159/")) { menuUrl = "/web/user/lawCounsel/case/02/159/step01.do"; } /* 분쟁조정 신청 > 분쟁조정 신청하기 */ diff --git a/src/main/java/kcc/xxx/web/XxxController.java b/src/main/java/kcc/xxx/web/XxxController.java index 2c2605ee..2a2ffe06 100644 --- a/src/main/java/kcc/xxx/web/XxxController.java +++ b/src/main/java/kcc/xxx/web/XxxController.java @@ -22,7 +22,6 @@ import org.springframework.web.bind.annotation.RequestParam; import egovframework.rte.ptl.mvc.tags.ui.pagination.PaginationInfo; import kcc.com.cmm.CmmUtil; import kcc.com.snd.service.SendService; -import kcc.utill.CertSettingUtill; import kcc.utill.OzUtill; import kcc.xxx.service.XxxService; import kcc.xxx.service.XxxVO; @@ -43,9 +42,6 @@ public class XxxController { @Resource private OzUtill ozUtill; - @Resource - private CertSettingUtill certSettingUtill; - @RequestMapping("/xxx/xxxTest.do") public String xxxTest() throws Exception { diff --git a/src/main/java/seed/com/gtm/base/BaseController.java b/src/main/java/seed/com/gtm/base/BaseController.java index 188f3f42..392999e8 100644 --- a/src/main/java/seed/com/gtm/base/BaseController.java +++ b/src/main/java/seed/com/gtm/base/BaseController.java @@ -1,6 +1,7 @@ package seed.com.gtm.base; import java.io.PrintWriter; +import java.net.URLDecoder; import java.net.URLEncoder; import java.text.SimpleDateFormat; import java.util.Date; @@ -369,8 +370,20 @@ public class BaseController { } } } + session.setAttribute("query_clip", URLEncoder.encode(parmes)); + +// String requestQuery = URLDecoder.decode(session.getAttribute("query_clip").toString()); + +// return "redirect:http://" + requstUrl + "/" + pageFolder + "/" + pageName + ".jsp?crfNm="+request.getParameter("crfNm")+"&" + URLEncoder.encode(parmes); + return "/ClipReport4/ClipReportViewer"; + } + + @RequestMapping(value = "/clip/ClipReport4/ClipReportViewer/ClipReport4_clip.do") + public String ClipReport4_clip(HttpServletRequest request, + HttpSession session, Map map) throws Exception { + request.setCharacterEncoding("UTF-8"); - return "redirect:http://" + requstUrl + "/" + pageFolder + "/" + pageName + ".jsp?crfNm="+request.getParameter("crfNm")+"&" + URLEncoder.encode(parmes); + return "/ClipReport4/Clip"; } @RequestMapping(value = "/pop/{pageFolder}/{pageName}/popup.do") diff --git a/src/main/java/seed/com/user/counsel/WebCounselController.java b/src/main/java/seed/com/user/counsel/WebCounselController.java index c84dc141..4770f237 100644 --- a/src/main/java/seed/com/user/counsel/WebCounselController.java +++ b/src/main/java/seed/com/user/counsel/WebCounselController.java @@ -21,6 +21,8 @@ import org.springframework.web.servlet.ModelAndView; import com.ibm.icu.text.SimpleDateFormat; +import kcc.let.uat.uia.service.CertService; +import kcc.let.uat.uia.service.CertVO; import seed.com.gtm.seedfile.SeedFileService; import seed.manager.group.service.ManagerGroupService; import seed.manager.member.service.ManagerMemberService; @@ -61,6 +63,9 @@ public class WebCounselController { @Autowired private SeedFileService fileService; + @Autowired + private CertService certService; + @Value("#{config['member.merge']}") private String memberMerge; @@ -377,6 +382,11 @@ public class WebCounselController { public ModelAndView lawCounselStep02(ModelMap map, HttpSession session, @RequestParam Map paramMap, @PathVariable(value="siteIdx") String siteIdx, @PathVariable(value="siteMenuIdx") Integer siteMenuIdx){ + + // CI 체크 + if(!FairnetUtils.ciCheck(map, session)) { + return new ModelAndView("/_common/jsp/umessage"); + } setSessionMessageRemove(session); @@ -513,6 +523,11 @@ public class WebCounselController { public ModelAndView lawCounselStep03(ModelMap map, HttpSession session, @RequestParam Map paramMap, @PathVariable(value="siteIdx") String siteIdx, @PathVariable(value="siteMenuIdx") Integer siteMenuIdx){ + + // CI 체크 + if(!FairnetUtils.ciCheck(map, session)) { + return new ModelAndView("/_common/jsp/umessage"); + } /* String tempSrvNo = SeedUtils.setReplaceNull(session.getAttribute("srvNo")); @@ -678,24 +693,14 @@ public class WebCounselController { @RequestMapping(value="/web/user/lawCounsel/{siteIdx}/02/{siteMenuIdx}/lawWrite.do", method=RequestMethod.GET) public ModelAndView weblawCounselWrite(ModelMap map, HttpSession session, @RequestParam Map paramMap, @PathVariable(value="siteIdx") String siteIdx, - @PathVariable(value="siteMenuIdx") Integer siteMenuIdx){ - - - String tempHpDi = SeedUtils.setReplaceNull(session.getAttribute("hpDi")); - String tempPersonalCheck = SeedUtils.setReplaceNull(session.getAttribute("personalCheck")); - /* - if(tempHpDi.equals("") || tempPersonalCheck.equals("")){ - map.put("siteIdx", "case"); - map.put("url", "/case/index.do"); - map.put("message", "user.message.medi.alert"); - map.put("opener", ""); - map.put("append", ""); - map.put("self", ""); - - return new ModelAndView("/_common/jsp/umessage"); - } - */ + @PathVariable(value="siteMenuIdx") Integer siteMenuIdx + , HttpServletRequest reqeust){ + // CI 체크 + if(!FairnetUtils.ciCheck(map, session)) { + return new ModelAndView("/_common/jsp/umessage"); + } + setSessionMessageRemove(session); /*----권한체크----*/ @@ -822,6 +827,15 @@ public class WebCounselController { map.put("memberAuthM", memberAuthM); map.put("seedMenuAuth", managerGroupService.getGroupList(siteIdx, memberIdx, memberMerge, memberMergeSiteIdx)); /*----권한체크 종료----*/ + + //certId 구하기 + CertVO certVO = FairnetUtils.getCertSession(reqeust); + try { + certVO = certService.selectCert(certVO); + } catch (Exception e) { + System.out.println(e.getMessage()); + } + map.put("certVO", certVO); return new ModelAndView("/_extra/web/user/onlineCounsel/lawWrite"); } @@ -986,6 +1000,11 @@ public class WebCounselController { String applcntTel03 = SeedUtils.setReplaceNull(paramMap.get("applcntTel03")); String applcntTel = applcntTel01 + "-" + applcntTel02 + "-" + applcntTel03; paramMap.put("applcntTel", applcntTel); + + String applcntEmail1 = SeedUtils.setReplaceNull(paramMap.get("applcntEmail1")); + String applcntEmail2 = SeedUtils.setReplaceNull(paramMap.get("applcntEmail2")); + String applcntEmail = applcntEmail1 + "@" + applcntEmail2; + paramMap.put("applcntEmail", applcntEmail); service.lawCounselInsert(paramMap); paramMap.put("dataIdx", paramMap.get("seq")); diff --git a/src/main/java/seed/com/user/mediation/WebMediationController.java b/src/main/java/seed/com/user/mediation/WebMediationController.java index 8aadb2d8..b532008a 100644 --- a/src/main/java/seed/com/user/mediation/WebMediationController.java +++ b/src/main/java/seed/com/user/mediation/WebMediationController.java @@ -33,6 +33,7 @@ import egovframework.rte.psl.dataaccess.util.EgovMap; import kcc.let.uat.uia.service.CertService; import kcc.let.uat.uia.service.CertVO; import seed.com.gtm.seedfile.SeedFileService; +import seed.com.gtm.util.JSONView; import seed.com.gtm.util.JSPUtil; import seed.com.user.mypage.CaseAuthService; import seed.com.user.mypage.CaseAuthVO; @@ -4666,6 +4667,8 @@ public class WebMediationController { params.put("sql", "trublreqstmngCaseFileInsert"); params.put("memberId", session.getAttribute("hpName")); params.put("memberSeq", session.getAttribute("isSeq")); + + params.put("rceptNo", paramMap.get("rceptNo").toString()); /*서비스 로직*/ try{ @@ -4779,5 +4782,110 @@ public class WebMediationController { } } } + + @RequestMapping(value = "/web/user/mediation/case/caseCommentPop/popup.do") + public ModelAndView checkMediationComment(ModelMap map, HttpServletRequest request, HttpSession session,@RequestParam Map paramMap)throws Exception{ + String isGubun = SeedUtils.setReplaceNull(session.getAttribute("isGubun")); + if(isGubun.equals("")){ + map.put("siteIdx", "case"); + map.put("url", "/user/mediation/case/01/155/checkMediationStep01.do"); + map.put("message", "user.message.medi.alert"); + map.put("opener", ""); + map.put("append", ""); + map.put("self", ""); + return new ModelAndView("/_common/jsp/umessage"); + } + + request.setCharacterEncoding("UTF-8"); + ModelAndView mav = new ModelAndView(); + EgovMap params; + params = JSPUtil.makeRequestParams(request, session, true); + + //시큐어코딩 관련 파라미터는 삭제 + params.remove("SpringSecurityFiltersecurityinterceptorFilterapplied"); + params.remove("SpringSecuritySessionMgmtFilterApplied"); + params.remove("springSecurityContext"); + params.remove("SpringSecurityScpfApplied"); + params.remove("springSecuritySavedRequest"); + + log.warn(">>>>>>>>params<<<<<<<<<"+params); + paramMap.put("isSeq", session.getAttribute("isSeq")); + + map.put("caseComment", service.selectCaseComment(paramMap)); + + mav.addAllObjects(params); + mav.setViewName("/_extra/web/user/mediation/caseCommentPop"); + return mav; + } + + @RequestMapping(value = "/web/user/mediation/case/caseCommentPop/write.do") + public ModelAndView checkMediationCommentWrite(ModelMap map, HttpServletRequest request, HttpSession session,@RequestParam Map paramMap) throws Exception { + String isGubun = SeedUtils.setReplaceNull(session.getAttribute("isGubun")); + if(isGubun.equals("")){ + map.put("siteIdx", "case"); + map.put("url", "/user/mediation/case/01/155/checkMediationStep01.do"); + map.put("message", "user.message.medi.alert"); + map.put("opener", ""); + map.put("append", ""); + map.put("self", ""); + return new ModelAndView("/_common/jsp/umessage"); + } + + EgovMap params; + request.setCharacterEncoding("UTF-8"); + ModelAndView mavjson = new ModelAndView(new JSONView()); + + params = JSPUtil.makeRequestParams(request, session, true); + + //시큐어코딩 관련 파라미터는 삭제 + params.remove("SpringSecurityFiltersecurityinterceptorFilterapplied"); + params.remove("SpringSecuritySessionMgmtFilterApplied"); + params.remove("springSecurityContext"); + params.remove("SpringSecurityScpfApplied"); + params.remove("springSecuritySavedRequest"); + + paramMap.put("isSeq", session.getAttribute("isSeq")); + + //사유 기재 UPDATE + service.commentUpdate(paramMap); + + mavjson.addAllObjects(params); + return mavjson; + } + + @RequestMapping(value = "/web/user/mediation/case/caseCommentPop/cancel.do") + public ModelAndView checkMediationCommentCancel(ModelMap map, HttpServletRequest request, HttpSession session,@RequestParam Map paramMap) throws Exception { + String isGubun = SeedUtils.setReplaceNull(session.getAttribute("isGubun")); + if(isGubun.equals("")){ + map.put("siteIdx", "case"); + map.put("url", "/user/mediation/case/01/155/checkMediationStep01.do"); + map.put("message", "user.message.medi.alert"); + map.put("opener", ""); + map.put("append", ""); + map.put("self", ""); + return new ModelAndView("/_common/jsp/umessage"); + } + + EgovMap params; + request.setCharacterEncoding("UTF-8"); + ModelAndView mavjson = new ModelAndView(new JSONView()); + + params = JSPUtil.makeRequestParams(request, session, true); + + //시큐어코딩 관련 파라미터는 삭제 + params.remove("SpringSecurityFiltersecurityinterceptorFilterapplied"); + params.remove("SpringSecuritySessionMgmtFilterApplied"); + params.remove("springSecurityContext"); + params.remove("SpringSecurityScpfApplied"); + params.remove("springSecuritySavedRequest"); + + paramMap.put("isSeq", session.getAttribute("isSeq")); + + //사유 기재 CANCEL + service.commentCancel(paramMap); + + mavjson.addAllObjects(params); + return mavjson; + } } diff --git a/src/main/java/seed/com/user/mypage/MyPageController.java b/src/main/java/seed/com/user/mypage/MyPageController.java index dfa61e38..3a0ebbb4 100644 --- a/src/main/java/seed/com/user/mypage/MyPageController.java +++ b/src/main/java/seed/com/user/mypage/MyPageController.java @@ -125,11 +125,7 @@ private Logger log = Logger.getLogger(this.getClass()); if(SeedUtils.setReplaceNull(session.getAttribute("myPass")).equals("")){ //본인인증 값셋팅 컨트롤러를 다녀왔나 안다녀왔나 표시 session.setAttribute("myPass", "pass"); -// return new ModelAndView("forward:/user/case/userCheck/setCheckCode/check.do?" + -// "nextUrl=/user/mypage/"+siteIdx+"/01/"+siteMenuIdx+"/myCheck.do" + -// "&commandCode=my" -// ); - certTest(map, req, session, "my"); +// certTest(map, req, session, "my"); } session.removeAttribute("myPass"); @@ -1524,310 +1520,4 @@ private Logger log = Logger.getLogger(this.getClass()); return new ModelAndView("redirect:/user/mypage/case/01/168/myMediationList.do"); } - private void certTest(ModelMap map, HttpServletRequest req, HttpSession session,String commandCode ) { - String nextUrl = req.getParameter("nextUrl"); -// String commandCode = req.getParameter("commandCode"); - - String srvNo = ""; - String hpSrvNo = ""; - String agreeCheck = ""; - String personalCheck = ""; - String mediType = ""; - String retUrl = "";//아이핀 인증후 리턴 페이지 - String hpRetUrl = "";//모바일 인증후 리턴 페이지 - - String sServerName = req.getServerName(); - - if(commandCode.equals("medi")){//분쟁조정신청 본인인증 - - //개발서버 -// srvNo = "007001";// 아이핀 코드 -// hpSrvNo = "008001";//휴대폰 코드 - - //실서버 - srvNo = "009001";// 아이핀 코드 - hpSrvNo = "012001";//휴대폰 코드 - - agreeCheck = req.getParameter("agreeCheck"); - personalCheck = req.getParameter("personalCheck"); - mediType = req.getParameter("mediType"); - - //개발서버 -// retUrl = "23http://ServerName:8080/user/extra/case/siren/ipin_popup_seed/jsp/Page.do"; -// retUrl = retUrl.replaceAll("ServerName", sServerName); - -// hpRetUrl = "32http://ServerName:8080/user/extra/case/siren/hpParamPop/jsp/Page.do"; -// hpRetUrl = hpRetUrl.replaceAll("ServerName", sServerName); - - //실서버 - retUrl = "23http://fairnet.kofair.or.kr/user/extra/case/siren/ipin_popup_seed/jsp/Page.do"; -// retUrl = retUrl.replaceAll("ServerName", sServerName); - - hpRetUrl = "32http://fairnet.kofair.or.kr/user/extra/case/siren/hpParamPop/jsp/Page.do"; -// hpRetUrl = hpRetUrl.replaceAll("ServerName", sServerName); - - session.setAttribute("agreeCheck", agreeCheck); - session.setAttribute("personalCheck", personalCheck); - session.setAttribute("mediType", mediType); - //hpName존재하면 이미 본인인증을 거쳤기 때문에 다음으로 바로 넘어간다. - if(!SeedUtils.setReplaceNull(session.getAttribute("hpName")).equals("")){ -// nextUrl = "/user/mediation/case/05/154/mediationStep04Ftc.do"; - nextUrl = "/user/mediation/case/05/154/mediationStep04.do"; - } - }else if(commandCode.equals("my")){//마이페이지 본인인증 - //개발서버 -// srvNo = "007002"; -// hpSrvNo = "008002"; - - //실서버 - srvNo = "009002"; - hpSrvNo = "012002"; - - //개발서버 -// retUrl = "23http://ServerName:8080/user/extra/case/siren/myPage_ipin_popup_seed/jsp/Page.do"; -// retUrl = retUrl.replaceAll("ServerName", sServerName); - -// hpRetUrl = "32http://ServerName:8080/user/extra/case/siren/myPage_hpParamPop/jsp/Page.do"; -// hpRetUrl = hpRetUrl.replaceAll("ServerName", sServerName); - - //실서버 - retUrl = "23http://fairnet.kofair.or.kr/user/extra/case/siren/myPage_ipin_popup_seed/jsp/Page.do"; -// retUrl = retUrl.replaceAll("ServerName", sServerName); - - hpRetUrl = "32http://fairnet.kofair.or.kr/user/extra/case/siren/myPage_hpParamPop/jsp/Page.do"; -// hpRetUrl = hpRetUrl.replaceAll("ServerName", sServerName); - - }else if(commandCode.equals("online")){//온라인 분쟁조정 상담 본인인증 - //개발서버 - srvNo = "007003"; - hpSrvNo = "008003"; - - //실서버 -// srvNo = "009003"; -// hpSrvNo = "012003"; - - personalCheck = req.getParameter("personalCheck"); - session.setAttribute("personalCheck", personalCheck); - - //개발서버 -// retUrl = "23http://ServerName:8080/user/extra/case/siren/onlineCounsel_ipin_popup_seed/jsp/Page.do"; -// retUrl = retUrl.replaceAll("ServerName", sServerName); - -// hpRetUrl = "32http://ServerName:8080/user/extra/case/siren/onlineCounsel_hpParamPop/jsp/Page.do"; -// hpRetUrl = hpRetUrl.replaceAll("ServerName", sServerName); - - //실서버 - retUrl = "23http://fairnet.kofair.or.kr/user/extra/case/siren/onlineCounsel_ipin_popup_seed/jsp/Page.do"; - - hpRetUrl = "32http://fairnet.kofair.or.kr/user/extra/case/siren/onlineCounsel_hpParamPop/jsp/Page.do"; - - //hpName존재하면 이미 본인인증을 거쳤기 때문에 다음으로 바로 넘어간다. - if(!SeedUtils.setReplaceNull(session.getAttribute("hpName")).equals("")){ - nextUrl = "/user/onlineCounsel/case/01/158/write.do"; - } - }else if(commandCode.equals("law")){ - //개발서버 -// srvNo = "007004"; -// hpSrvNo = "008005"; - - //실서버 - srvNo = "009004"; - hpSrvNo = "012004"; - - personalCheck = req.getParameter("personalCheck"); - session.setAttribute("personalCheck", personalCheck); - - //개발서버 -// retUrl = "23http://ServerName:8080/user/extra/case/siren/lawCounsel_ipin_popup_seed/jsp/Page.do"; -// retUrl = retUrl.replaceAll("ServerName", sServerName); - -// hpRetUrl = "32http://ServerName:8080/user/extra/case/siren/lawCounsel_hpParamPop/jsp/Page.do"; -// hpRetUrl = hpRetUrl.replaceAll("ServerName", sServerName); - - - //실서버 - retUrl = "23http://fairnet.kofair.or.kr/user/extra/case/siren/lawCounsel_ipin_popup_seed/jsp/Page.do"; - - hpRetUrl = "32http://fairnet.kofair.or.kr/user/extra/case/siren/lawCounsel_hpParamPop/jsp/Page.do"; - - //hpName존재하면 이미 본인인증을 거쳤기 때문에 다음으로 바로 넘어간다. - if(!SeedUtils.setReplaceNull(session.getAttribute("hpName")).equals("")){ - nextUrl = "/user/lawCounsel/case/02/159/lawWrite.do"; - } - }else if(commandCode.equals("medi_check")){ - //개발서버 -// srvNo = "007005"; -// hpSrvNo = "008006"; - - //실서버 - srvNo = "009005"; - hpSrvNo = "012005"; - - String caseNo = req.getParameter("caseNo"); - String checkPass = req.getParameter("checkPass"); - - session.setAttribute("caseNo", caseNo); - session.setAttribute("checkPass", checkPass); - - //개발서버 -// retUrl = "23http://ServerName:8080/user/extra/case/siren/checkMedi_ipin_popup_seed/jsp/Page.do"; -// retUrl = retUrl.replaceAll("ServerName", sServerName); - -// hpRetUrl = "32http://ServerName:8080/user/extra/case/siren/checkMedi_hpParamPop/jsp/Page.do"; -// hpRetUrl = hpRetUrl.replaceAll("ServerName", sServerName); - - - //실서버 - retUrl = "23http://fairnet.kofair.or.kr/user/extra/case/siren/checkMedi_ipin_popup_seed/jsp/Page.do"; - - hpRetUrl = "32http://fairnet.kofair.or.kr/user/extra/case/siren/checkMedi_hpParamPop/jsp/Page.do"; - - //hpName존재하면 이미 본인인증을 거쳤기 때문에 다음으로 바로 넘어간다. - /* if(!SeedUtils.setReplaceNull(session.getAttribute("hpName")).equals("")){ - nextUrl = "/user/mediation/case/03/155/checkMediationStep03.do"; - }*/ - } - - //나중에 메인 페이지 나오면 튕겨내기 -// if(nextUrl == null || agreeCheck == null){ -// map.put("siteIdx", "case"); -// map.put("url", "/case/index.do"); -// map.put("message", "잘못된 접근 입니다."); -// map.put("opener", ""); -// map.put("append", ""); -// map.put("self", ""); -// -// return "/_commccon/jsp/umessage"; -// throw new RuntimeException("강제 예외 발생!"); -// } - - - /** - * 아이핀 인증 시작 */ - - //String sServerName = req.getServerName(); - - //회원사 ID : KFA001 - String id = "KFA001"; - //회원가입화면용 결과 수신 URL : 23http:/211.43.219.170/hp/meb/pinSignupView.do - //String retUrl = "23http://ServerName/user/extra/case/siren/ipin_popup_seed/jsp/Page.do"; - //retUrl = retUrl.replaceAll("ServerName", sServerName); - //분쟁조정신청 서비스 번호 : 006001 - // String srvNo = "006001"; - //요청번호(유닉크한 랜덤값) : 40 byte까지 - String reqNum = "kofair" + EgovStringUtil.getTimeStamp() + EgovNumberUtil.getRandomNum(1000, 9999); - - session.setAttribute("id", id); - session.setAttribute("retUrl", retUrl); - session.setAttribute("srvNo", srvNo); - session.setAttribute("reqNum", reqNum); - //복호화용 임시필드 - - String exVar = "0000000000000000"; - - /** - * - * reqNum 값은 최종 결과값 복호화를 위한 SecuKey로 활용 되므로 중요합니다. - * reqNum 은 아이핀 서비스 요청시 항상 새로운 값으로 중복 되지 않게 생성 해야 합니다. - * 쿠키 또는 Session및 기타 방법을 사용해서 reqNum 값을 - * ipin_result_seed.jsp에서 가져 올 수 있도록 해야 함. - * 샘플을 위해서 쿠키를 사용한 것이므로 참고 하시길 바랍니다. - * - */ - /* Cookie c = new Cookie("reqNum", reqNum); - //c.setMaxAge(1800); // <== 필요시 설정(초단위로 설정됩니다) - response.addCookie(c);*/ - - session.setAttribute("reqNumKey", reqNum); - - // 암호화 모듈 선언 - SciSecuManager seed = new SciSecuManager(); - // 1차 암호화 - String encStr = ""; - String reqInfo = reqNum + "/" + id + "/" + srvNo + "/" + exVar; - encStr = seed.getEncPublic(reqInfo); - // 위변조 검증 값 등록 - SciHmac hmac = new SciHmac(); - String hmacMsg = SciHmac.HMacEncriptPublic(encStr); - // 2차 암호화 - reqInfo = seed.getEncPublic(encStr + "/" + hmacMsg + "/" + "00000000"); - session.setAttribute("reqInfo", reqInfo); - - /** - * 아이핀 인증 끝 */ - - - /** - * 핸드폰 인증 시작 */ - - //날짜 생성 - Calendar today = Calendar.getInstance(); - SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss"); - String day = sdf.format(today.getTime()); - - java.util.Random ran = new Random(); - //랜덤 문자 길이 - int numLength = 6; - String randomStr = ""; - - for (int i = 0; i < numLength; i++) { - //0 ~ 9 랜덤 숫자 생성 - randomStr += ran.nextInt(10); - } - - //reqNum은 최대 40byte 까지 사용 가능 - - String hpId = "SKFA001"; // 본인실명확인 회원사 아이디 - //String hpSrvNo = "005001"; // 본인실명확인 서비스번호 - String hpReqNum = day + randomStr; // 본인실명확인 요청번호 - String hpExVar = "0000000000000000"; // 복호화용 임시필드 - String hpCertDate = day; // 본인실명확인 요청시간 - String hpCertGb = "H"; // 본인실명확인 본인확인 인증수단 - String hpAddVar = ""; // 본인실명확인 추가 파라메터 - - //String hpRetUrl = "32http://ServerName/kmcis/kmcisIdSearch.jsp"; // 본인인증서비스 결과수신 POPUP URL - //String hpRetUrl = "32http://ServerName/user/extra/case/siren/hpParamPop/jsp/Page.do"; - - //hpRetUrl = "32http://kofair2.global-it.co.kr/kmcis/kmcisIdSearch.jsp"; - //hpRetUrl = hpRetUrl.replaceAll("ServerName", sServerName); //오픈할 때 주석으로 교체해줘야함 - - - /** - * - * reqNum 값은 최종 결과값 복호화를 위한 SecuKey로 활용 되므로 중요합니다. - * reqNum 은 본인 확인 요청시 항상 새로운 값으로 중복 되지 않게 생성 해야 합니다. - * 쿠키 또는 Session및 기타 방법을 사용해서 reqNum 값을 - * pcc_V3_result_seed.jsp에서 가져 올 수 있도록 해야 함. - * 샘플을 위해서 쿠키를 사용한 것이므로 참고 하시길 바랍니다. - * - */ - /*Cookie hpC = new Cookie("hpReqNum", hpReqNum); - //c.setMaxAge(1800); // <== 필요시 설정(초단위로 설정됩니다) - response.addCookie(hpC);*/ - - session.setAttribute("hpReqNumKey", hpReqNum); - - //01. 암호화 모듈 선언 - com.sci.v2.pcc.secu.SciSecuManager hpSeed = new com.sci.v2.pcc.secu.SciSecuManager(); - - //02. 1차 암호화 - String hpEncStr = ""; - String hpReqInfo = hpId+"^"+hpSrvNo+"^"+hpReqNum+"^"+hpCertDate+"^"+hpCertGb+"^"+hpAddVar+"^"+hpExVar; // 데이터 암호화 - hpEncStr = hpSeed.getEncPublic(hpReqInfo); - - //03. 위변조 검증 값 생성 - com.sci.v2.pcc.secu.hmac.SciHmac hpHmac = new com.sci.v2.pcc.secu.hmac.SciHmac(); - String hpHmacMsg = hpHmac.HMacEncriptPublic(hpEncStr); - - //03. 2차 암호화 - hpReqInfo = hpSeed.getEncPublic(hpEncStr + "^" + hpHmacMsg + "^" + "0000000000000000"); //2차암호화 - - session.setAttribute("hpRetUrl", hpRetUrl); - session.setAttribute("hpReqInfo", hpReqInfo); - - /** - * 핸드폰 인증 끝 */ - - } - } diff --git a/src/main/webapp/WEB-INF/clipreport4/DataConnection.properties b/src/main/webapp/WEB-INF/clipreport4/DataConnection.properties new file mode 100644 index 00000000..f00f796e --- /dev/null +++ b/src/main/webapp/WEB-INF/clipreport4/DataConnection.properties @@ -0,0 +1,42 @@ +# Report Server Connection Config + +# conntype : jdbc, jndi +# jdbc type : SQL_Server, MySQL, Oracle, Tibero, DB2, Sybase, UserCustom + +# version SQL_Server 2000, 2005, 2008, 2012 +dataconnection.count=3 + +dataconnection1.conntype=jdbc +dataconnection1.type=Oracle +#dataconnection1.dbname=oracle1 +dataconnection1.dbname=XE +dataconnection1.version= +#dataconnection1.url=jdbc:oracle:thin:@192.168.0.254:1521:orcl +dataconnection1.url=jdbc:oracle:thin:@192.168.0.60:1523:XE +#dataconnection1.url=jdbc:oracle:thin:@218.234.66.99:1521:orcl +#dataconnection1.url=jdbc:oracle:thin:@211.245.106.115:1521:kofairdb +#dataconnection1.user=case +dataconnection1.user=FAIRNETUR +#dataconnection1.user=newcasedb +#dataconnection1.password=case1234 +dataconnection1.password=FAIRNETUR!@#$ +#dataconnection1.password=newcasedb1130 +dataconnection1.encoding= +dataconnection1.decoding= + +dataconnection2.conntype=jdbc +dataconnection2.type=UserCustom +dataconnection2.dbname=usercustom1 +dataconnection2.version= +dataconnection2.driver=cubrid.jdbc.driver.CUBRIDDriver +dataconnection2.url= +dataconnection2.user= +dataconnection2.password= +dataconnection2.encoding= +dataconnection2.decoding= + +dataconnection3.conntype=jndi +dataconnection3.dbname=dbname +dataconnection3.jndiname=jndiname +dataconnection3.encoding= +dataconnection3.decoding= \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/clipreport4/DataCrypto.properties b/src/main/webapp/WEB-INF/clipreport4/DataCrypto.properties new file mode 100644 index 00000000..e657615d --- /dev/null +++ b/src/main/webapp/WEB-INF/clipreport4/DataCrypto.properties @@ -0,0 +1,19 @@ +# Data Crypto + +####################### +# Data Connection +####################### +# !important property +####################### +data.crypto.use=false +data.crypto.classname= + + +####################### +# Server Connection +####################### +# !important property +####################### +data.server.crypto.use= +data.client.crypto.use= +data.server.url= diff --git a/src/main/webapp/WEB-INF/clipreport4/License.properties b/src/main/webapp/WEB-INF/clipreport4/License.properties new file mode 100644 index 00000000..6cb875d1 --- /dev/null +++ b/src/main/webapp/WEB-INF/clipreport4/License.properties @@ -0,0 +1,9 @@ +# License key Value!! +#\uac1c\ubc1c\uc790\ub85c\uceec +key=license + +#\uac1c\ubc1c\uc11c\ubc84 +#key=qxl04+oK4y3vvoBqp/lqF86H0r88nTliyx1TVIS5+JSjl4/thf9vFFYP4FNkcR78gmwVouVKtzPwERFBD9rh1uhB7YkUPnnSo4EAf9XUHyGF1T/XHBBogB9Nh2Zby7CSTY366djkwF2blTxdbcNHvB6TKolr2pbWQtMhuYhLGbk= + +#\uc2e4\uc11c\ubc84 +#key=I7p8BAksAJfmgja1vI9GE0ecBRpRao1lFo3gItvToaBKHVXv9Zk0BIXtjxbgNXYgVF1H3fkBkKbVSKbHJtBxgr2meVI9FNqMSTwV60mgyRFAhoFHbhsocmtG9zNtrtTAjo9OXaXmTGzCDlDmXmhE6///fNv9h3vUHdRhW8j8FaU= \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/clipreport4/License.properties_bak_local b/src/main/webapp/WEB-INF/clipreport4/License.properties_bak_local new file mode 100644 index 00000000..4974ae50 --- /dev/null +++ b/src/main/webapp/WEB-INF/clipreport4/License.properties_bak_local @@ -0,0 +1,7 @@ +# License key Value!! +#\uac1c\ubc1c\uc790\ub85c\uceec +key=license +#\uac1c\ubc1c\uc11c\ubc84 +#key=qxl04+oK4y3vvoBqp/lqF86H0r88nTliyx1TVIS5+JSjl4/thf9vFFYP4FNkcR78gmwVouVKtzPwERFBD9rh1uhB7YkUPnnSo4EAf9XUHyGF1T/XHBBogB9Nh2Zby7CSTY366djkwF2blTxdbcNHvB6TKolr2pbWQtMhuYhLGbk= +#\uc2e4\uc11c\ubc84 +#key=I7p8BAksAJfmgja1vI9GE0ecBRpRao1lFo3gItvToaBKHVXv9Zk0BIXtjxbgNXYgVF1H3fkBkKbVSKbHJtBxgr2meVI9FNqMSTwV60mgyRFAhoFHbhsocmtG9zNtrtTAjo9OXaXmTGzCDlDmXmhE6///fNv9h3vUHdRhW8j8FaU= \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/clipreport4/OpenFontLicense.clip.xml b/src/main/webapp/WEB-INF/clipreport4/OpenFontLicense.clip.xml new file mode 100644 index 00000000..647b7329 --- /dev/null +++ b/src/main/webapp/WEB-INF/clipreport4/OpenFontLicense.clip.xml @@ -0,0 +1,94 @@ + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/clipreport4/OpenSourceLicense.clip.xml b/src/main/webapp/WEB-INF/clipreport4/OpenSourceLicense.clip.xml new file mode 100644 index 00000000..c6c5a774 --- /dev/null +++ b/src/main/webapp/WEB-INF/clipreport4/OpenSourceLicense.clip.xml @@ -0,0 +1,381 @@ + +. + + 4. Products derived from this software may not be called "JDOM", nor + may "JDOM" appear in their name, without prior written permission + from the JDOM Project Management . + + In addition, we request (but do not require) that you include in the + end-user documentation provided with the redistribution and/or in the + software itself an acknowledgement equivalent to the following: + "This product includes software developed by the + JDOM Project (http://www.jdom.org/)." + Alternatively, the acknowledgment may be graphical using the logos + available at http://www.jdom.org/images/logos. + + THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED + WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES + OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE JDOM AUTHORS OR THE PROJECT + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF + USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT + OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + SUCH DAMAGE. + + This software consists of voluntary contributions made by many + individuals on behalf of the JDOM Project and was originally + created by Jason Hunter and + Brett McLaughlin . For more information + on the JDOM Project, please see . +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- + + +Rhino license +Rhino is available under open source licenses. + +As of Rhino 1.7R4, the majority of the source code for Rhino is available under the MPL 2.0 license. + +License for portions of the Rhino debugger +Additionally, some files (currently the contents of toolsrc/org/mozilla/javascript/tools/debugger/treetable/) are available under the following license: + +* Copyright 1997, 1998 Sun Microsystems, Inc. All Rights Reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * - Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * + * - Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * - Neither the name of Sun Microsystems nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- + +/* + * Bootstrap v2.3.2 + * + * Copyright 2013 Twitter, Inc + * Licensed under the Apache License v2.0 + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Designed and built with all the love in the world by @mdo and @fat. + */ + + The MIT License (MIT) + +Copyright (c) 2011-2015 Twitter, Inc + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- + +H2 license +H2 is dual licensed and available under the MPL 2.0 (Mozilla Public License Version 2.0) or under the EPL 1.0 (Eclipse Public License). There is a license FAQ for both the MPL and the EPL. + +You can use H2 for free. +You can integrate it into your applications (including in commercial applications) and distribute it. +Files containing only your code are not covered by this license (it is 'commercial friendly'). +Modifications to the H2 source code must be published. +You don't need to provide the source code of H2 if you did not modify anything. +If you distribute a binary that includes H2, you need to add a disclaimer of liability - see the example below. +However, nobody is allowed to rename H2, modify it a little, and sell it as a database engine without telling the customers it is in fact H2. This happened to HSQLDB: a company called 'bungisoft' copied HSQLDB, renamed it to 'RedBase', and tried to sell it, hiding the fact that it was in fact just HSQLDB. It seems 'bungisoft' does not exist any more, but you can use the Wayback Machine and visit old web pages of http://www.bungisoft.com. + +About porting the source code to another language (for example C# or C++): converted source code (even if done manually) stays under the same copyright and license as the original code. The copyright of the ported source code does not (automatically) go to the person who ported the code. + +If you distribute a binary that includes H2, you need to add the license and a disclaimer of liability (as you should do for your own code). You should add a disclaimer for each open source library you use. For example, add a file 3rdparty_license.txt in the directory where the jar files are, and list all open source libraries, each one with its license and disclaimer. For H2, a simple solution is to copy the following text below. You may also include a copy of the complete license. + +This software contains unmodified binary redistributions for H2 database engine (http://www.h2database.com/), +which is dual licensed and available under the MPL 2.0 (Mozilla Public License) or under the EPL 1.0 (Eclipse Public License). +An original copy of the license agreement can be found at: http://www.h2database.com/html/license.html + +Eclipse Public License - Version 1.0 +THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. + +1. DEFINITIONS + +"Contribution" means: + +a) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and + +b) in the case of each subsequent Contributor: + +i) changes to the Program, and + +ii) additions to the Program; + +where such changes and/or additions to the Program originate from and are distributed by that particular Contributor. A Contribution 'originates' from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include additions to the Program which: (i) are separate modules of software distributed in conjunction with the Program under their own license agreement, and (ii) are not derivative works of the Program. + +"Contributor" means any person or entity that distributes the Program. + +"Licensed Patents " mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program. + +"Program" means the Contributions distributed in accordance with this Agreement. + +"Recipient" means anyone who receives the Program under this Agreement, including all Contributors. + +2. GRANT OF RIGHTS + +a) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form. + +b) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in source code and object code form. This patent license shall apply to the combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder. + +c) Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow Recipient to distribute the Program, it is Recipient's responsibility to acquire that license before distributing the Program. + +d) Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this Agreement. + +3. REQUIREMENTS + +A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that: + +a) it complies with the terms and conditions of this Agreement; and + +b) its license agreement: + +i) effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose; + +ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits; + +iii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and + +iv) states that source code for the Program is available from such Contributor, and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange. + +When the Program is made available in source code form: + +a) it must be made available under this Agreement; and + +b) a copy of this Agreement must be included with each copy of the Program. + +Contributors may not remove or alter any copyright notices contained within the Program. + +Each Contributor must identify itself as the originator of its Contribution, if any, in a manner that reasonably allows subsequent Recipients to identify the originator of the Contribution. + +4. COMMERCIAL DISTRIBUTION + +Commercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor ("Commercial Contributor") hereby agrees to defend and indemnify every other Contributor ("Indemnified Contributor") against any losses, damages and costs (collectively "Losses") arising from claims, lawsuits and other legal actions brought by a third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an Indemnified Contributor must: a) promptly notify the Commercial Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate with the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense. + +For example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other Contributor to pay any damages as a result, the Commercial Contributor must pay those damages. + +5. NO WARRANTY + +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement, including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations. + +6. DISCLAIMER OF LIABILITY + +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +7. GENERAL + +If any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. + +If Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed. + +All Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and survive. + +Everyone is permitted to copy and distribute copies of this Agreement, but in order to avoid inconsistency the Agreement is copyrighted and may only be modified in the following manner. The Agreement Steward reserves the right to publish new versions (including revisions) of this Agreement from time to time. No one other than the Agreement Steward has the right to modify this Agreement. The Eclipse Foundation is the initial Agreement Steward. The Eclipse Foundation may assign the responsibility to serve as the Agreement Steward to a suitable separate entity. Each new version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to distribute the Program (including its Contributions) under the new version. Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved. + +This Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation. +]]> + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/clipreport4/Printer.properties b/src/main/webapp/WEB-INF/clipreport4/Printer.properties new file mode 100644 index 00000000..b17c80d4 --- /dev/null +++ b/src/main/webapp/WEB-INF/clipreport4/Printer.properties @@ -0,0 +1,3 @@ +printer.count=1 +printer1.name=Printer1 +printer1.driver=Driver1 \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/clipreport4/Service.properties b/src/main/webapp/WEB-INF/clipreport4/Service.properties new file mode 100644 index 00000000..cd1262cc --- /dev/null +++ b/src/main/webapp/WEB-INF/clipreport4/Service.properties @@ -0,0 +1,11 @@ +################################################## +# Server Configuration +# - Service.properties +################################################## + +# service.administrator.password +# password max length = 15 +service.administrator.password=clipreport + +# locale ko_KR, en_US +service.locale=ko_KR \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/clipreport4/clipreport4.properties b/src/main/webapp/WEB-INF/clipreport4/clipreport4.properties new file mode 100644 index 00000000..728cc763 --- /dev/null +++ b/src/main/webapp/WEB-INF/clipreport4/clipreport4.properties @@ -0,0 +1,54 @@ +# Report Server EngineConfig + +# Windows path ex) c:\\clipreport\\report\\ +# Unix/Linux path ex) /root/home/clipreport/report +# %root% clipreport4.properties file path + +# base.file.defaultfont=NanumGothic-Regular.ttf +# base.log.write=console,db,file +# base.log.type=info,warning,error,debug +base.loadbalancing=false +base.eachreport=false +#base.path.reportfolder=D:/project/git/case_seed/WebContent/WEB-INF/clipreport4/temp/ +#base.path.fontfolder=D:/project/git/case_seed/WebContent/WEB-INF/clipreport4/font/ +base.path.reportfolder=%root%/temp/ +base.path.fontfolder=%root%/font/ +#base.path.reportfolder=/usr/local/homepage/WEB-INF/clipreport4/temp/ +#base.path.fontfolder=/usr/local/homepage/WEB-INF/clipreport4/font/ +base.file.defaultfont=NanumGothic-Regular.ttf +base.systemfont=true +base.alwayspng=false +base.image.png.size=512 +base.image.jpg.size=1024 + +# log info +base.log.write=console,file +# log Type +base.log.type=info,warning,error,debug + +# (log write is status) log dbfile save path +#base.path.dbfile=D:/project/git/case_seed/WebContent/WEB-INF/clipreport4/log/log.d +#base.path.logfolder=D:/project/git/case_seed/WebContent//WEB-INF/clipreport4/logs/ +base.path.dbfile=%root%/log/log.d + +base.path.logfolder=%root%/logs/ + +# base.log.file.method=key,date +base.log.file.method=date +# base.log.file.size=2 (mb) +base.log.file.size=1 +# base.log.file.delete.day=7 +base.log.file.delete.day=7 + +# report temp file delete scheduler +# base.scheduler.method=starttime,nowtime +base.scheduler.method=starttime + +# base.scheduler.reportdeleted.starttime.hour=1-24 +base.scheduler.reportdelete.starttime.hour=5 +# base.scheduler.reportdelete.starttime.minute=0-59 +base.scheduler.reportdelete.starttime.minute=0 + +# Hour 1~120, h1~h120, Minute m1~m7200 +base.scheduler.reportdelete.periodtime.hour=24 +base.scheduler.reportdelete.comparetime.hour=23 \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/clipreport4/codelabor-system-xecure-2.0.0.jar b/src/main/webapp/WEB-INF/clipreport4/codelabor-system-xecure-2.0.0.jar new file mode 100644 index 00000000..0805a724 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/codelabor-system-xecure-2.0.0.jar differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/02_1_resultPurpose.crf b/src/main/webapp/WEB-INF/clipreport4/crf/02_1_resultPurpose.crf new file mode 100644 index 00000000..a321b4bf Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/02_1_resultPurpose.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/02_1_resultPurpose.crf_20180201 b/src/main/webapp/WEB-INF/clipreport4/crf/02_1_resultPurpose.crf_20180201 new file mode 100644 index 00000000..8d863037 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/02_1_resultPurpose.crf_20180201 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/02_1_resultPurpose.crf_20180628 b/src/main/webapp/WEB-INF/clipreport4/crf/02_1_resultPurpose.crf_20180628 new file mode 100644 index 00000000..504f9938 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/02_1_resultPurpose.crf_20180628 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/02_1_resultPurpose.crf_20180918 b/src/main/webapp/WEB-INF/clipreport4/crf/02_1_resultPurpose.crf_20180918 new file mode 100644 index 00000000..9aea4bce Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/02_1_resultPurpose.crf_20180918 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/02_1_resultPurpose.crf_20181227 b/src/main/webapp/WEB-INF/clipreport4/crf/02_1_resultPurpose.crf_20181227 new file mode 100644 index 00000000..1a915c4b Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/02_1_resultPurpose.crf_20181227 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/03_1_resultStatsArea.crf b/src/main/webapp/WEB-INF/clipreport4/crf/03_1_resultStatsArea.crf new file mode 100644 index 00000000..85e95551 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/03_1_resultStatsArea.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/03_1_resultStatsArea.crf.20170705 b/src/main/webapp/WEB-INF/clipreport4/crf/03_1_resultStatsArea.crf.20170705 new file mode 100644 index 00000000..90e21451 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/03_1_resultStatsArea.crf.20170705 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/03_1_resultStatsArea.crf_20180109 b/src/main/webapp/WEB-INF/clipreport4/crf/03_1_resultStatsArea.crf_20180109 new file mode 100644 index 00000000..e1c037dd Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/03_1_resultStatsArea.crf_20180109 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/03_1_resultStatsArea.crf_20180628 b/src/main/webapp/WEB-INF/clipreport4/crf/03_1_resultStatsArea.crf_20180628 new file mode 100644 index 00000000..716c0483 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/03_1_resultStatsArea.crf_20180628 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/03_1_resultStatsArea.crf_20180918 b/src/main/webapp/WEB-INF/clipreport4/crf/03_1_resultStatsArea.crf_20180918 new file mode 100644 index 00000000..716c0483 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/03_1_resultStatsArea.crf_20180918 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/03_1_resultStatsArea.crf_20181227 b/src/main/webapp/WEB-INF/clipreport4/crf/03_1_resultStatsArea.crf_20181227 new file mode 100644 index 00000000..8108c05f Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/03_1_resultStatsArea.crf_20181227 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/03_2_economicResult.crf b/src/main/webapp/WEB-INF/clipreport4/crf/03_2_economicResult.crf new file mode 100644 index 00000000..c0a45982 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/03_2_economicResult.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/03_2_economicResult.crf.20170705 b/src/main/webapp/WEB-INF/clipreport4/crf/03_2_economicResult.crf.20170705 new file mode 100644 index 00000000..640ced77 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/03_2_economicResult.crf.20170705 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/03_2_economicResult.crf_20171204 b/src/main/webapp/WEB-INF/clipreport4/crf/03_2_economicResult.crf_20171204 new file mode 100644 index 00000000..1ff975e4 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/03_2_economicResult.crf_20171204 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/03_2_economicResult.crf_20180201 b/src/main/webapp/WEB-INF/clipreport4/crf/03_2_economicResult.crf_20180201 new file mode 100644 index 00000000..1ff975e4 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/03_2_economicResult.crf_20180201 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/03_2_economicResult.crf_20180628 b/src/main/webapp/WEB-INF/clipreport4/crf/03_2_economicResult.crf_20180628 new file mode 100644 index 00000000..e0be476c Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/03_2_economicResult.crf_20180628 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/03_2_economicResult.crf_20180918 b/src/main/webapp/WEB-INF/clipreport4/crf/03_2_economicResult.crf_20180918 new file mode 100644 index 00000000..e0be476c Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/03_2_economicResult.crf_20180918 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/03_2_economicResult.crf_20181228 b/src/main/webapp/WEB-INF/clipreport4/crf/03_2_economicResult.crf_20181228 new file mode 100644 index 00000000..c6d626e3 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/03_2_economicResult.crf_20181228 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/04_1_economicResult.crf b/src/main/webapp/WEB-INF/clipreport4/crf/04_1_economicResult.crf new file mode 100644 index 00000000..a24b8d3d Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/04_1_economicResult.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/04_1_economicResult.crf.20170705 b/src/main/webapp/WEB-INF/clipreport4/crf/04_1_economicResult.crf.20170705 new file mode 100644 index 00000000..35f81ae5 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/04_1_economicResult.crf.20170705 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/04_1_economicResult.crf_20171204 b/src/main/webapp/WEB-INF/clipreport4/crf/04_1_economicResult.crf_20171204 new file mode 100644 index 00000000..b8348fc7 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/04_1_economicResult.crf_20171204 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/04_1_economicResult.crf_20180201 b/src/main/webapp/WEB-INF/clipreport4/crf/04_1_economicResult.crf_20180201 new file mode 100644 index 00000000..b8348fc7 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/04_1_economicResult.crf_20180201 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/04_1_economicResult.crf_20180628 b/src/main/webapp/WEB-INF/clipreport4/crf/04_1_economicResult.crf_20180628 new file mode 100644 index 00000000..d3e6e3fe Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/04_1_economicResult.crf_20180628 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/04_2_economicResultContrast.crf b/src/main/webapp/WEB-INF/clipreport4/crf/04_2_economicResultContrast.crf new file mode 100644 index 00000000..6434bff5 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/04_2_economicResultContrast.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/04_2_economicResultContrast.crf.20170705 b/src/main/webapp/WEB-INF/clipreport4/crf/04_2_economicResultContrast.crf.20170705 new file mode 100644 index 00000000..3d1c3c38 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/04_2_economicResultContrast.crf.20170705 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/04_2_economicResultContrast.crf_20171204 b/src/main/webapp/WEB-INF/clipreport4/crf/04_2_economicResultContrast.crf_20171204 new file mode 100644 index 00000000..7984f8e8 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/04_2_economicResultContrast.crf_20171204 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/04_2_economicResultContrast.crf_20180201 b/src/main/webapp/WEB-INF/clipreport4/crf/04_2_economicResultContrast.crf_20180201 new file mode 100644 index 00000000..7984f8e8 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/04_2_economicResultContrast.crf_20180201 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/04_2_economicResultContrast.crf_20180628 b/src/main/webapp/WEB-INF/clipreport4/crf/04_2_economicResultContrast.crf_20180628 new file mode 100644 index 00000000..affd2bcd Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/04_2_economicResultContrast.crf_20180628 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/04_2_economicResultContrast.crf_20180918 b/src/main/webapp/WEB-INF/clipreport4/crf/04_2_economicResultContrast.crf_20180918 new file mode 100644 index 00000000..358c0de7 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/04_2_economicResultContrast.crf_20180918 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/04_2_economicResultContrast.crf_20181228 b/src/main/webapp/WEB-INF/clipreport4/crf/04_2_economicResultContrast.crf_20181228 new file mode 100644 index 00000000..ead29ee2 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/04_2_economicResultContrast.crf_20181228 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/04_2_economicResultContrast_20180628.crf b/src/main/webapp/WEB-INF/clipreport4/crf/04_2_economicResultContrast_20180628.crf new file mode 100644 index 00000000..affd2bcd Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/04_2_economicResultContrast_20180628.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/07_1_validAdvicePercentage.crf b/src/main/webapp/WEB-INF/clipreport4/crf/07_1_validAdvicePercentage.crf new file mode 100644 index 00000000..ebc076ea Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/07_1_validAdvicePercentage.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/07_1_validAdvicePercentage.crf.20170705 b/src/main/webapp/WEB-INF/clipreport4/crf/07_1_validAdvicePercentage.crf.20170705 new file mode 100644 index 00000000..42db944a Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/07_1_validAdvicePercentage.crf.20170705 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/07_1_validAdvicePercentage.crf_20180628 b/src/main/webapp/WEB-INF/clipreport4/crf/07_1_validAdvicePercentage.crf_20180628 new file mode 100644 index 00000000..fa08ae3c Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/07_1_validAdvicePercentage.crf_20180628 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/07_1_validAdvicePercentage.crf_20180918 b/src/main/webapp/WEB-INF/clipreport4/crf/07_1_validAdvicePercentage.crf_20180918 new file mode 100644 index 00000000..d770f9a3 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/07_1_validAdvicePercentage.crf_20180918 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/07_1_validAdvicePercentage.crf_20181228 b/src/main/webapp/WEB-INF/clipreport4/crf/07_1_validAdvicePercentage.crf_20181228 new file mode 100644 index 00000000..a8c33501 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/07_1_validAdvicePercentage.crf_20181228 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/08_1_examiner.crf b/src/main/webapp/WEB-INF/clipreport4/crf/08_1_examiner.crf new file mode 100644 index 00000000..9034b4fe Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/08_1_examiner.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/08_1_examiner.crf.20170705 b/src/main/webapp/WEB-INF/clipreport4/crf/08_1_examiner.crf.20170705 new file mode 100644 index 00000000..3302b808 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/08_1_examiner.crf.20170705 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/08_1_examiner.crf_20180628 b/src/main/webapp/WEB-INF/clipreport4/crf/08_1_examiner.crf_20180628 new file mode 100644 index 00000000..9ffe7208 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/08_1_examiner.crf_20180628 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/08_1_examiner.crf_20181228 b/src/main/webapp/WEB-INF/clipreport4/crf/08_1_examiner.crf_20181228 new file mode 100644 index 00000000..9ffe7208 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/08_1_examiner.crf_20181228 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/08_2_examinerExcess.crf b/src/main/webapp/WEB-INF/clipreport4/crf/08_2_examinerExcess.crf new file mode 100644 index 00000000..6e2d110b Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/08_2_examinerExcess.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/10_1_routeFild.crf b/src/main/webapp/WEB-INF/clipreport4/crf/10_1_routeFild.crf new file mode 100644 index 00000000..3e5311cd Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/10_1_routeFild.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/10_2_routeYear.crf b/src/main/webapp/WEB-INF/clipreport4/crf/10_2_routeYear.crf new file mode 100644 index 00000000..820b82e7 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/10_2_routeYear.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/15_1_daytimeBusiness.crf b/src/main/webapp/WEB-INF/clipreport4/crf/15_1_daytimeBusiness.crf new file mode 100644 index 00000000..ecc47d0a Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/15_1_daytimeBusiness.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/15_1_daytimeBusiness.crf20200519 b/src/main/webapp/WEB-INF/clipreport4/crf/15_1_daytimeBusiness.crf20200519 new file mode 100644 index 00000000..7e1c9f4b Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/15_1_daytimeBusiness.crf20200519 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/15_1_daytimeBusiness.crf_20170318 b/src/main/webapp/WEB-INF/clipreport4/crf/15_1_daytimeBusiness.crf_20170318 new file mode 100644 index 00000000..c4c972a3 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/15_1_daytimeBusiness.crf_20170318 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/15_1_daytimeBusiness.crf_20180102 b/src/main/webapp/WEB-INF/clipreport4/crf/15_1_daytimeBusiness.crf_20180102 new file mode 100644 index 00000000..846a0eba Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/15_1_daytimeBusiness.crf_20180102 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/15_1_daytimeBusiness.crf_20180201 b/src/main/webapp/WEB-INF/clipreport4/crf/15_1_daytimeBusiness.crf_20180201 new file mode 100644 index 00000000..846a0eba Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/15_1_daytimeBusiness.crf_20180201 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/15_1_daytimeBusiness.crf_20180207 b/src/main/webapp/WEB-INF/clipreport4/crf/15_1_daytimeBusiness.crf_20180207 new file mode 100644 index 00000000..4d7e4faa Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/15_1_daytimeBusiness.crf_20180207 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/15_1_daytimeBusiness.crf_20190110 b/src/main/webapp/WEB-INF/clipreport4/crf/15_1_daytimeBusiness.crf_20190110 new file mode 100644 index 00000000..20d68e9d Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/15_1_daytimeBusiness.crf_20190110 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/15_1_daytimeBusiness.crf__20180913 b/src/main/webapp/WEB-INF/clipreport4/crf/15_1_daytimeBusiness.crf__20180913 new file mode 100644 index 00000000..c7bba7a9 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/15_1_daytimeBusiness.crf__20180913 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/15_1_daytimeBusiness.crf_bak_20171119 b/src/main/webapp/WEB-INF/clipreport4/crf/15_1_daytimeBusiness.crf_bak_20171119 new file mode 100644 index 00000000..1f0650da Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/15_1_daytimeBusiness.crf_bak_20171119 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/15_1_daytimeBusiness_20180917.crf b/src/main/webapp/WEB-INF/clipreport4/crf/15_1_daytimeBusiness_20180917.crf new file mode 100644 index 00000000..a9f4fd8b Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/15_1_daytimeBusiness_20180917.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/15_1_daytimeBusiness_bak_20180207.crf b/src/main/webapp/WEB-INF/clipreport4/crf/15_1_daytimeBusiness_bak_20180207.crf new file mode 100644 index 00000000..4d7e4faa Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/15_1_daytimeBusiness_bak_20180207.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/15_1_daytimeBusiness_bak_20190816.crf b/src/main/webapp/WEB-INF/clipreport4/crf/15_1_daytimeBusiness_bak_20190816.crf new file mode 100644 index 00000000..3eefbc56 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/15_1_daytimeBusiness_bak_20190816.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/15_2_daytimeBusiness.crf b/src/main/webapp/WEB-INF/clipreport4/crf/15_2_daytimeBusiness.crf new file mode 100644 index 00000000..374f0cd6 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/15_2_daytimeBusiness.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/15_2_daytimeBusiness.crf_20190110 b/src/main/webapp/WEB-INF/clipreport4/crf/15_2_daytimeBusiness.crf_20190110 new file mode 100644 index 00000000..5ab25596 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/15_2_daytimeBusiness.crf_20190110 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/15_2_daytimeBusiness.crf_20190702 b/src/main/webapp/WEB-INF/clipreport4/crf/15_2_daytimeBusiness.crf_20190702 new file mode 100644 index 00000000..3bc0f76d Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/15_2_daytimeBusiness.crf_20190702 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/15_2_daytimeBusiness_bak.crf b/src/main/webapp/WEB-INF/clipreport4/crf/15_2_daytimeBusiness_bak.crf new file mode 100644 index 00000000..d51fbf68 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/15_2_daytimeBusiness_bak.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/16_1_receipt.crf b/src/main/webapp/WEB-INF/clipreport4/crf/16_1_receipt.crf new file mode 100644 index 00000000..11435d96 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/16_1_receipt.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/CLIP.crf b/src/main/webapp/WEB-INF/clipreport4/crf/CLIP.crf new file mode 100644 index 00000000..e020b15b Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/CLIP.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/CLIP.crfe b/src/main/webapp/WEB-INF/clipreport4/crf/CLIP.crfe new file mode 100644 index 00000000..802bc33e Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/CLIP.crfe differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/CLIPtoDRM.crf b/src/main/webapp/WEB-INF/clipreport4/crf/CLIPtoDRM.crf new file mode 100644 index 00000000..bd542f04 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/CLIPtoDRM.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/DBTEST.crf b/src/main/webapp/WEB-INF/clipreport4/crf/DBTEST.crf new file mode 100644 index 00000000..0295663a Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/DBTEST.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/cancelPrint.crf b/src/main/webapp/WEB-INF/clipreport4/crf/cancelPrint.crf new file mode 100644 index 00000000..0ecf238b Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/cancelPrint.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/cancelPrint.crf_20200520 b/src/main/webapp/WEB-INF/clipreport4/crf/cancelPrint.crf_20200520 new file mode 100644 index 00000000..c1aaae1b Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/cancelPrint.crf_20200520 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/conciliation.crf b/src/main/webapp/WEB-INF/clipreport4/crf/conciliation.crf new file mode 100644 index 00000000..9f73f3a6 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/conciliation.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/conference01.crf b/src/main/webapp/WEB-INF/clipreport4/crf/conference01.crf new file mode 100644 index 00000000..2820c441 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/conference01.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/conference02.crf b/src/main/webapp/WEB-INF/clipreport4/crf/conference02.crf new file mode 100644 index 00000000..724b5463 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/conference02.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/conference03.crf b/src/main/webapp/WEB-INF/clipreport4/crf/conference03.crf new file mode 100644 index 00000000..456c3bf3 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/conference03.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/endNticeEdit.crf b/src/main/webapp/WEB-INF/clipreport4/crf/endNticeEdit.crf new file mode 100644 index 00000000..4be731bf Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/endNticeEdit.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/endNticeEdit.crf_20170711 b/src/main/webapp/WEB-INF/clipreport4/crf/endNticeEdit.crf_20170711 new file mode 100644 index 00000000..4b926156 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/endNticeEdit.crf_20170711 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/endNticeEdit2.crf b/src/main/webapp/WEB-INF/clipreport4/crf/endNticeEdit2.crf new file mode 100644 index 00000000..06b9c7b4 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/endNticeEdit2.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/lawCounsel.crf b/src/main/webapp/WEB-INF/clipreport4/crf/lawCounsel.crf new file mode 100644 index 00000000..0f7bcaf9 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/lawCounsel.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/lawCounsel.crf_20180905 b/src/main/webapp/WEB-INF/clipreport4/crf/lawCounsel.crf_20180905 new file mode 100644 index 00000000..9a091c66 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/lawCounsel.crf_20180905 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/lawCounsel_bak.crf b/src/main/webapp/WEB-INF/clipreport4/crf/lawCounsel_bak.crf new file mode 100644 index 00000000..91b18551 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/lawCounsel_bak.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/lawCounsel_bak_20171119.crf b/src/main/webapp/WEB-INF/clipreport4/crf/lawCounsel_bak_20171119.crf new file mode 100644 index 00000000..fe787cfc Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/lawCounsel_bak_20171119.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/mediationAllList.crf b/src/main/webapp/WEB-INF/clipreport4/crf/mediationAllList.crf new file mode 100644 index 00000000..657cd421 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/mediationAllList.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/mediationAllList.crf_20170318 b/src/main/webapp/WEB-INF/clipreport4/crf/mediationAllList.crf_20170318 new file mode 100644 index 00000000..ac5cd210 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/mediationAllList.crf_20170318 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/mediationAllList.crf_20170524 b/src/main/webapp/WEB-INF/clipreport4/crf/mediationAllList.crf_20170524 new file mode 100644 index 00000000..ba6d2178 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/mediationAllList.crf_20170524 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/mediationAllList.crf_20180628 b/src/main/webapp/WEB-INF/clipreport4/crf/mediationAllList.crf_20180628 new file mode 100644 index 00000000..b1a1f62b Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/mediationAllList.crf_20180628 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/mediationAllList.crf_20180806 b/src/main/webapp/WEB-INF/clipreport4/crf/mediationAllList.crf_20180806 new file mode 100644 index 00000000..f6f54100 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/mediationAllList.crf_20180806 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/mediationAllList.crf_20180904 b/src/main/webapp/WEB-INF/clipreport4/crf/mediationAllList.crf_20180904 new file mode 100644 index 00000000..a0eabf6b Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/mediationAllList.crf_20180904 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/mediationAllList.crf_20180919 b/src/main/webapp/WEB-INF/clipreport4/crf/mediationAllList.crf_20180919 new file mode 100644 index 00000000..40df3ec0 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/mediationAllList.crf_20180919 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/mediationAllList.crf_20181116 b/src/main/webapp/WEB-INF/clipreport4/crf/mediationAllList.crf_20181116 new file mode 100644 index 00000000..bacdaf41 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/mediationAllList.crf_20181116 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/mediationAllList.crf_20191206 b/src/main/webapp/WEB-INF/clipreport4/crf/mediationAllList.crf_20191206 new file mode 100644 index 00000000..325671af Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/mediationAllList.crf_20191206 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/mediationAllList.crf_20230215 b/src/main/webapp/WEB-INF/clipreport4/crf/mediationAllList.crf_20230215 new file mode 100644 index 00000000..ac2e7d96 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/mediationAllList.crf_20230215 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/mediationAllList.crf_20230327 b/src/main/webapp/WEB-INF/clipreport4/crf/mediationAllList.crf_20230327 new file mode 100644 index 00000000..c30be280 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/mediationAllList.crf_20230327 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/new1_mediationAmount.crf b/src/main/webapp/WEB-INF/clipreport4/crf/new1_mediationAmount.crf new file mode 100644 index 00000000..8f3aaeca Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/new1_mediationAmount.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/new1_mediationAmount.crf_20181228 b/src/main/webapp/WEB-INF/clipreport4/crf/new1_mediationAmount.crf_20181228 new file mode 100644 index 00000000..918dbb19 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/new1_mediationAmount.crf_20181228 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/new2_cfrncData.crf b/src/main/webapp/WEB-INF/clipreport4/crf/new2_cfrncData.crf new file mode 100644 index 00000000..4b1fad86 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/new2_cfrncData.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/new2_cfrncData.crf_20190111 b/src/main/webapp/WEB-INF/clipreport4/crf/new2_cfrncData.crf_20190111 new file mode 100644 index 00000000..19e6ccdb Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/new2_cfrncData.crf_20190111 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/new3_trublchargermng.crf b/src/main/webapp/WEB-INF/clipreport4/crf/new3_trublchargermng.crf new file mode 100644 index 00000000..ab3cbce5 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/new3_trublchargermng.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/news.crf b/src/main/webapp/WEB-INF/clipreport4/crf/news.crf new file mode 100644 index 00000000..893b3a70 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/news.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/onlineCounsel.crf b/src/main/webapp/WEB-INF/clipreport4/crf/onlineCounsel.crf new file mode 100644 index 00000000..e4dddf2d Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/onlineCounsel.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/onlineCounsel.crf_20180806 b/src/main/webapp/WEB-INF/clipreport4/crf/onlineCounsel.crf_20180806 new file mode 100644 index 00000000..4fea4347 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/onlineCounsel.crf_20180806 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/onlineCounsel.crf_20180905 b/src/main/webapp/WEB-INF/clipreport4/crf/onlineCounsel.crf_20180905 new file mode 100644 index 00000000..fda9f199 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/onlineCounsel.crf_20180905 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/onlineCounsel_bak.crf b/src/main/webapp/WEB-INF/clipreport4/crf/onlineCounsel_bak.crf new file mode 100644 index 00000000..fb8d604d Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/onlineCounsel_bak.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/overPrint.crf b/src/main/webapp/WEB-INF/clipreport4/crf/overPrint.crf new file mode 100644 index 00000000..3b053a3a Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/overPrint.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/overPrint.crf_20200520 b/src/main/webapp/WEB-INF/clipreport4/crf/overPrint.crf_20200520 new file mode 100644 index 00000000..7880dbc7 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/overPrint.crf_20200520 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/periodProgress.crf b/src/main/webapp/WEB-INF/clipreport4/crf/periodProgress.crf new file mode 100644 index 00000000..b968f2b0 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/periodProgress.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/periodProgress.crf_20180806 b/src/main/webapp/WEB-INF/clipreport4/crf/periodProgress.crf_20180806 new file mode 100644 index 00000000..78243ada Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/periodProgress.crf_20180806 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/periodProgress.crf_20181023 b/src/main/webapp/WEB-INF/clipreport4/crf/periodProgress.crf_20181023 new file mode 100644 index 00000000..e497ac40 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/periodProgress.crf_20181023 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/periodProgress.crf_20181228 b/src/main/webapp/WEB-INF/clipreport4/crf/periodProgress.crf_20181228 new file mode 100644 index 00000000..5ec18918 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/periodProgress.crf_20181228 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/periodProgress_20180918.crf b/src/main/webapp/WEB-INF/clipreport4/crf/periodProgress_20180918.crf new file mode 100644 index 00000000..7c0c6e67 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/periodProgress_20180918.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/progress.crf b/src/main/webapp/WEB-INF/clipreport4/crf/progress.crf new file mode 100644 index 00000000..7f6af1d0 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/progress.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/progress.crf_20180111 b/src/main/webapp/WEB-INF/clipreport4/crf/progress.crf_20180111 new file mode 100644 index 00000000..0771c14c Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/progress.crf_20180111 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/reqPrint - 복사본.crf b/src/main/webapp/WEB-INF/clipreport4/crf/reqPrint - 복사본.crf new file mode 100644 index 00000000..7635a4c9 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/reqPrint - 복사본.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/reqPrint.crf b/src/main/webapp/WEB-INF/clipreport4/crf/reqPrint.crf new file mode 100644 index 00000000..33f8d390 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/reqPrint.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/reqPrint.crf_20230328 b/src/main/webapp/WEB-INF/clipreport4/crf/reqPrint.crf_20230328 new file mode 100644 index 00000000..be7964a6 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/reqPrint.crf_20230328 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsArea.crf b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsArea.crf new file mode 100644 index 00000000..99eb9d31 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsArea.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsArea.crf.20170705 b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsArea.crf.20170705 new file mode 100644 index 00000000..2c2ccc57 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsArea.crf.20170705 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsArea.crf_20171204 b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsArea.crf_20171204 new file mode 100644 index 00000000..9aeaeefe Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsArea.crf_20171204 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsArea.crf_20171211 b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsArea.crf_20171211 new file mode 100644 index 00000000..4cd6df4b Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsArea.crf_20171211 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsArea.crf_20180628 b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsArea.crf_20180628 new file mode 100644 index 00000000..4cd6df4b Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsArea.crf_20180628 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsArea.crf_20180918 b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsArea.crf_20180918 new file mode 100644 index 00000000..4cd6df4b Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsArea.crf_20180918 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsArea.crf_20181226 b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsArea.crf_20181226 new file mode 100644 index 00000000..2f352c75 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsArea.crf_20181226 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsArea3Year.crf b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsArea3Year.crf new file mode 100644 index 00000000..8ec6280f Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsArea3Year.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsArea3Year.crf.20170705 b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsArea3Year.crf.20170705 new file mode 100644 index 00000000..8297eebf Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsArea3Year.crf.20170705 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsArea3Year.crf_20180628 b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsArea3Year.crf_20180628 new file mode 100644 index 00000000..8ec6280f Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsArea3Year.crf_20180628 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsArea3YearEnd.crf b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsArea3YearEnd.crf new file mode 100644 index 00000000..51753ab3 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsArea3YearEnd.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsArea3YearEnd.crf.20170705 b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsArea3YearEnd.crf.20170705 new file mode 100644 index 00000000..dd5904af Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsArea3YearEnd.crf.20170705 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsArea3YearEnd.crf_20180918 b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsArea3YearEnd.crf_20180918 new file mode 100644 index 00000000..44bad97e Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsArea3YearEnd.crf_20180918 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsArea3YearEnd.crf_20181226 b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsArea3YearEnd.crf_20181226 new file mode 100644 index 00000000..36ee7510 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsArea3YearEnd.crf_20181226 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsYear.crf b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsYear.crf new file mode 100644 index 00000000..5bca84e2 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsYear.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsYear.crf_20171204 b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsYear.crf_20171204 new file mode 100644 index 00000000..6364109a Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsYear.crf_20171204 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsYear.crf_20171211 b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsYear.crf_20171211 new file mode 100644 index 00000000..3b93457a Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsYear.crf_20171211 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsYear.crf_20180201 b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsYear.crf_20180201 new file mode 100644 index 00000000..a22a4b18 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsYear.crf_20180201 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsYear.crf_20180628 b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsYear.crf_20180628 new file mode 100644 index 00000000..5f449193 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsYear.crf_20180628 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsYear.crf_201809018 b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsYear.crf_201809018 new file mode 100644 index 00000000..8b653468 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsYear.crf_201809018 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsYear.crf_20181226 b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsYear.crf_20181226 new file mode 100644 index 00000000..e7a6a0a4 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsYear.crf_20181226 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsYear.crf_20190109 b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsYear.crf_20190109 new file mode 100644 index 00000000..bc308935 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsYear.crf_20190109 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsYear.crf_20190111 b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsYear.crf_20190111 new file mode 100644 index 00000000..af6d05da Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsYear.crf_20190111 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsYear.crf_20200706 b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsYear.crf_20200706 new file mode 100644 index 00000000..c3c4470d Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsYear.crf_20200706 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsYear_20180201.crf b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsYear_20180201.crf new file mode 100644 index 00000000..a22a4b18 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsYear_20180201.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsYear_20180628.crf b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsYear_20180628.crf new file mode 100644 index 00000000..5f449193 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsYear_20180628.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsYear_201809018.crf b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsYear_201809018.crf new file mode 100644 index 00000000..8b653468 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsYear_201809018.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsYear_bak_20171210.crf b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsYear_bak_20171210.crf new file mode 100644 index 00000000..6364109a Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/resultStatsYear_bak_20171210.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/surveyResult.crf b/src/main/webapp/WEB-INF/clipreport4/crf/surveyResult.crf new file mode 100644 index 00000000..7827fb33 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/surveyResult.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/test.crf b/src/main/webapp/WEB-INF/clipreport4/crf/test.crf new file mode 100644 index 00000000..a69192cd Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/test.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/trublcfrncmngList.crf b/src/main/webapp/WEB-INF/clipreport4/crf/trublcfrncmngList.crf new file mode 100644 index 00000000..55c5f30b Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/trublcfrncmngList.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/trublchargermng.crf b/src/main/webapp/WEB-INF/clipreport4/crf/trublchargermng.crf new file mode 100644 index 00000000..0933d5a4 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/trublchargermng.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/trublend.crf b/src/main/webapp/WEB-INF/clipreport4/crf/trublend.crf new file mode 100644 index 00000000..3de75ab4 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/trublend.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/trublend_bak_20171120.crf b/src/main/webapp/WEB-INF/clipreport4/crf/trublend_bak_20171120.crf new file mode 100644 index 00000000..917229bc Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/trublend_bak_20171120.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/trublend_bak_20190523.crf b/src/main/webapp/WEB-INF/clipreport4/crf/trublend_bak_20190523.crf new file mode 100644 index 00000000..8b2ec290 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/trublend_bak_20190523.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/trublprocessmngList.crf b/src/main/webapp/WEB-INF/clipreport4/crf/trublprocessmngList.crf new file mode 100644 index 00000000..7d71c3e0 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/trublprocessmngList.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/crf/trubltrnsferList.crf b/src/main/webapp/WEB-INF/clipreport4/crf/trubltrnsferList.crf new file mode 100644 index 00000000..e0f7e0e3 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/crf/trubltrnsferList.crf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/font/NanumBarunGothic.ttf b/src/main/webapp/WEB-INF/clipreport4/font/NanumBarunGothic.ttf new file mode 100644 index 00000000..9ae31c67 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/font/NanumBarunGothic.ttf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/font/NanumBarunGothicLight.ttf b/src/main/webapp/WEB-INF/clipreport4/font/NanumBarunGothicLight.ttf new file mode 100644 index 00000000..d6faf7fa Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/font/NanumBarunGothicLight.ttf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/font/NanumBarunGothicUltraLight.ttf b/src/main/webapp/WEB-INF/clipreport4/font/NanumBarunGothicUltraLight.ttf new file mode 100644 index 00000000..c291730f Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/font/NanumBarunGothicUltraLight.ttf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/font/NanumGothic-ExtraBold.ttf b/src/main/webapp/WEB-INF/clipreport4/font/NanumGothic-ExtraBold.ttf new file mode 100644 index 00000000..c85adc7d Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/font/NanumGothic-ExtraBold.ttf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/font/NanumGothic-Regular.ttf b/src/main/webapp/WEB-INF/clipreport4/font/NanumGothic-Regular.ttf new file mode 100644 index 00000000..c14ce884 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/font/NanumGothic-Regular.ttf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/font/NanumGothicCoding-Bold.ttf b/src/main/webapp/WEB-INF/clipreport4/font/NanumGothicCoding-Bold.ttf new file mode 100644 index 00000000..9aa9ba2a Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/font/NanumGothicCoding-Bold.ttf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/font/NanumGothicCoding-Regular.ttf b/src/main/webapp/WEB-INF/clipreport4/font/NanumGothicCoding-Regular.ttf new file mode 100644 index 00000000..ba77a9da Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/font/NanumGothicCoding-Regular.ttf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/font/NanumMyeongjo-Bold.ttf b/src/main/webapp/WEB-INF/clipreport4/font/NanumMyeongjo-Bold.ttf new file mode 100644 index 00000000..ecac4470 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/font/NanumMyeongjo-Bold.ttf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/font/NanumMyeongjo-ExtraBold.ttf b/src/main/webapp/WEB-INF/clipreport4/font/NanumMyeongjo-ExtraBold.ttf new file mode 100644 index 00000000..6dd48fbc Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/font/NanumMyeongjo-ExtraBold.ttf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/font/NanumMyeongjo-Regular.ttf b/src/main/webapp/WEB-INF/clipreport4/font/NanumMyeongjo-Regular.ttf new file mode 100644 index 00000000..a47e1a6f Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/font/NanumMyeongjo-Regular.ttf differ diff --git a/src/main/webapp/WEB-INF/clipreport4/log/clip b/src/main/webapp/WEB-INF/clipreport4/log/clip new file mode 100644 index 00000000..e69de29b diff --git a/src/main/webapp/WEB-INF/clipreport4/logs/ClipReport4.2024-12-16-1.log b/src/main/webapp/WEB-INF/clipreport4/logs/ClipReport4.2024-12-16-1.log new file mode 100644 index 00000000..07c3e4cf --- /dev/null +++ b/src/main/webapp/WEB-INF/clipreport4/logs/ClipReport4.2024-12-16-1.log @@ -0,0 +1,654 @@ +[CLIP report Server - Report Key 0ca08d3854df4c6c9e99d2a91cdd5c45 Thread 189. | INFO 2024-12-16 22:19:32] : Report Read Time : TimeMillis : 8ms, HH:MM:SS : 00:00:00 +[CLIP report Server - Report Key 0ca08d3854df4c6c9e99d2a91cdd5c45 Thread 189. | INFO CODE=10 | 2024-12-16 22:19:32] : 리포트 생성을 시작합니다. +[CLIP report Server - Report Key 0ca08d3854df4c6c9e99d2a91cdd5c45 Thread 189. | DEBUG CODE=10100 | 2024-12-16 22:19:32] : [SQLDS2] Data Query : SELECT + CASE_NO, + CASE_GUBUN, + (SELECT MEMBER_NAME FROM T_MEMBER WHERE MEMBER_ID = M.CASE_EXAMINER) AS CASE_EXAMINER, + (CASE + WHEN 'R' = 'A' THEN (SELECT APPLCNT_COMPANY FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + WHEN 'R' = 'R' THEN (SELECT APPLCNT_COMPANY FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND ROWNUM = 1) + END) || (CASE WHEN (SELECT COUNT(*) -1 FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO) > 0 THEN ' 외 ' || (SELECT COUNT(*) -1 FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO) END) AS APPLCNT_COMPANY, + (CASE + WHEN 'R' = 'A' THEN (SELECT COMPANY_CEO FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + WHEN 'R' = 'R' THEN (SELECT COMPANY_CEO FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND ROWNUM = 1) + END) AS COMPANY_CEO, + (CASE + WHEN 'R' = 'A' THEN (SELECT '(' || ZIP || ') ' || ROAD_ADDR1 || ' ' || ROAD_ADDR2 FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + WHEN 'R' = 'R' THEN (SELECT '(' || ZIP || ') ' || ROAD_ADDR1 || ' ' || ROAD_ADDR2 FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND ROWNUM = 1) + END) AS ADDR, + (CASE + WHEN 'R' = 'A' THEN (SELECT RESPONDENT_COMPANY FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND ROWNUM = 1) + WHEN 'R' = 'R' THEN (SELECT RESPONDENT_COMPANY FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + END) || (CASE WHEN (SELECT COUNT(*) -1 FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO) > 0 THEN ' 외 ' || (SELECT COUNT(*) -1 FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO) END) AS RESPONDENT_COMPANY, + (CASE + WHEN 'R' = 'A' THEN (SELECT RESPONDENT_CEO FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND ROWNUM = 1) + WHEN 'R' = 'R' THEN (SELECT RESPONDENT_CEO FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + END) AS RESPONDENT_CEO, + (CASE + WHEN 'R' = 'A' THEN (SELECT '(' || ZIP || ') ' || ROAD_ADDR1 || ' ' || ROAD_ADDR2 FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND ROWNUM = 1) + WHEN 'R' = 'R' THEN (SELECT '(' || ZIP || ') ' || ROAD_ADDR1 || ' ' || ROAD_ADDR2 FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + END) AS ADDR2, + (CASE + WHEN 'R' = 'A' THEN (SELECT CASE_C_COMMENT FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + WHEN 'R' = 'R' THEN (SELECT CASE_C_COMMENT FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + END) AS PRINT_COMMENT, + (CASE + WHEN 'R' = 'A' THEN (SELECT TO_CHAR(CASE_C_DATE, 'YYYY. MM. DD.') FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + WHEN 'R' = 'R' THEN (SELECT TO_CHAR(CASE_C_DATE, 'YYYY. MM. DD.') FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + END) AS PRINT_DATE, + (CASE + WHEN 'R' = 'A' THEN '신청인 ' || (SELECT COMPANY_CEO FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') || ' (인)' + WHEN 'R' = 'R' THEN '피신청인 ' || (SELECT RESPONDENT_CEO FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') || ' (인)' + END) AS PRINT_NM +FROM C_MASTER M +WHERE CASE_NO = '하도2024-0545' +[CLIP report Server - Report Key 0ca08d3854df4c6c9e99d2a91cdd5c45 Thread 189. | DEBUG 2024-12-16 22:19:32] : [SQLDS2] Database Info - Product Name : Oracle, Product Version : Oracle Database 11g Express Edition Release 11.2.0.2.0 - 64bit Production, Driver Name : Oracle JDBC driver, Driver Version : 23.2.0.0.0 +[CLIP report Server - Report Key 0ca08d3854df4c6c9e99d2a91cdd5c45 Thread 189. | INFO 2024-12-16 22:19:32] : [SQLDS2] Connection Time : TimeMillis : 34ms, HH:MM:SS : 00:00:00 +[CLIP report Server - Report Key 0ca08d3854df4c6c9e99d2a91cdd5c45 Thread 189. | INFO 2024-12-16 22:19:32] : [SQLDS2] executeQuery : TimeMillis : 4ms, HH:MM:SS : 00:00:00 +[CLIP report Server - Report Key 0ca08d3854df4c6c9e99d2a91cdd5c45 Thread 189. | INFO CODE=501 | 2024-12-16 22:19:32] : [SQLDS2] Database data load rows : 1 +[CLIP report Server - Report Key 0ca08d3854df4c6c9e99d2a91cdd5c45 Thread 189. | DEBUG CODE=10100 | 2024-12-16 22:19:32] : [SQLDS3] Data Query : SELECT + '신청인' AS USERTYPE, + APPLCNT_COMPANY AS COMPANY, + COMPANY_CEO AS CEO, + '(' || ZIP || ') ' || ROAD_ADDR1 || ' ' || ROAD_ADDR2 AS ADDR +FROM + C_CASEAPPLCNT +WHERE + CASE_NO = '하도2024-0545' + +UNION ALL + +SELECT + '피신청인' AS USERTYPE, + RESPONDENT_COMPANY AS COMPANY, + RESPONDENT_CEO AS CEO, + '(' || ZIP || ') ' || ROAD_ADDR1 || ' ' || ROAD_ADDR2 AS ADDR +FROM + C_CASERESPONDENT +WHERE + CASE_NO = '하도2024-0545' +AND SEQ_NO NOT IN('281') +[CLIP report Server - Report Key 0ca08d3854df4c6c9e99d2a91cdd5c45 Thread 189. | INFO 2024-12-16 22:19:32] : [SQLDS3] executeQuery : TimeMillis : 1ms, HH:MM:SS : 00:00:00 +[CLIP report Server - Report Key 0ca08d3854df4c6c9e99d2a91cdd5c45 Thread 189. | INFO CODE=501 | 2024-12-16 22:19:32] : [SQLDS3] Database data load rows : 2 +[CLIP report Server - Report Key 0ca08d3854df4c6c9e99d2a91cdd5c45 Thread 189. | INFO CODE=11 | 2024-12-16 22:19:32] : 리포트 생성이 끝났습니다. +[CLIP report Server - Report Key 0ca08d3854df4c6c9e99d2a91cdd5c45 Thread 189. | INFO 2024-12-16 22:19:32] : Report Build Time : TimeMillis : 52ms, HH:MM:SS : 00:00:00 +[CLIP report Server - Report Key 0ca08d3854df4c6c9e99d2a91cdd5c45 Thread 189. | INFO 2024-12-16 22:19:32] : Total Page Count saved! +[CLIP report Server - Report Key 0ca08d3854df4c6c9e99d2a91cdd5c45 Thread 189. | INFO 2024-12-16 22:19:32] : Last Document saved! +[CLIP report Server - Report Key 0ca08d3854df4c6c9e99d2a91cdd5c45 Thread 189. | INFO 2024-12-16 22:19:32] : Database Connection Close Start +[CLIP report Server - Report Key 0ca08d3854df4c6c9e99d2a91cdd5c45 Thread 189. | INFO 2024-12-16 22:19:32] : Database Connection Close End : TimeMillis : 2ms, HH:MM:SS : 00:00:00 +[CLIP report Server - Report Key 964bad482b72479aa02558d59b25c97b Thread 190. | INFO 2024-12-16 22:20:12] : Report Read Time : TimeMillis : 7ms, HH:MM:SS : 00:00:00 +[CLIP report Server - Report Key 964bad482b72479aa02558d59b25c97b Thread 190. | INFO CODE=10 | 2024-12-16 22:20:12] : 리포트 생성을 시작합니다. +[CLIP report Server - Report Key 964bad482b72479aa02558d59b25c97b Thread 190. | DEBUG CODE=10100 | 2024-12-16 22:20:12] : [SQLDS2] Data Query : SELECT + CASE_NO, + CASE_GUBUN, + (SELECT MEMBER_NAME FROM T_MEMBER WHERE MEMBER_ID = M.CASE_EXAMINER) AS CASE_EXAMINER, + (CASE + WHEN 'R' = 'A' THEN (SELECT APPLCNT_COMPANY FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + WHEN 'R' = 'R' THEN (SELECT APPLCNT_COMPANY FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND ROWNUM = 1) + END) || (CASE WHEN (SELECT COUNT(*) -1 FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO) > 0 THEN ' 외 ' || (SELECT COUNT(*) -1 FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO) END) AS APPLCNT_COMPANY, + (CASE + WHEN 'R' = 'A' THEN (SELECT COMPANY_CEO FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + WHEN 'R' = 'R' THEN (SELECT COMPANY_CEO FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND ROWNUM = 1) + END) AS COMPANY_CEO, + (CASE + WHEN 'R' = 'A' THEN (SELECT '(' || ZIP || ') ' || ROAD_ADDR1 || ' ' || ROAD_ADDR2 FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + WHEN 'R' = 'R' THEN (SELECT '(' || ZIP || ') ' || ROAD_ADDR1 || ' ' || ROAD_ADDR2 FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND ROWNUM = 1) + END) AS ADDR, + (CASE + WHEN 'R' = 'A' THEN (SELECT RESPONDENT_COMPANY FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND ROWNUM = 1) + WHEN 'R' = 'R' THEN (SELECT RESPONDENT_COMPANY FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + END) || (CASE WHEN (SELECT COUNT(*) -1 FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO) > 0 THEN ' 외 ' || (SELECT COUNT(*) -1 FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO) END) AS RESPONDENT_COMPANY, + (CASE + WHEN 'R' = 'A' THEN (SELECT RESPONDENT_CEO FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND ROWNUM = 1) + WHEN 'R' = 'R' THEN (SELECT RESPONDENT_CEO FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + END) AS RESPONDENT_CEO, + (CASE + WHEN 'R' = 'A' THEN (SELECT '(' || ZIP || ') ' || ROAD_ADDR1 || ' ' || ROAD_ADDR2 FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND ROWNUM = 1) + WHEN 'R' = 'R' THEN (SELECT '(' || ZIP || ') ' || ROAD_ADDR1 || ' ' || ROAD_ADDR2 FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + END) AS ADDR2, + (CASE + WHEN 'R' = 'A' THEN (SELECT CASE_C_COMMENT FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + WHEN 'R' = 'R' THEN (SELECT CASE_C_COMMENT FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + END) AS PRINT_COMMENT, + (CASE + WHEN 'R' = 'A' THEN (SELECT TO_CHAR(CASE_C_DATE, 'YYYY. MM. DD.') FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + WHEN 'R' = 'R' THEN (SELECT TO_CHAR(CASE_C_DATE, 'YYYY. MM. DD.') FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + END) AS PRINT_DATE, + (CASE + WHEN 'R' = 'A' THEN '신청인 ' || (SELECT COMPANY_CEO FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') || ' (인)' + WHEN 'R' = 'R' THEN '피신청인 ' || (SELECT RESPONDENT_CEO FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') || ' (인)' + END) AS PRINT_NM +FROM C_MASTER M +WHERE CASE_NO = '하도2024-0545' +[CLIP report Server - Report Key 964bad482b72479aa02558d59b25c97b Thread 190. | DEBUG 2024-12-16 22:20:12] : [SQLDS2] Database Info - Product Name : Oracle, Product Version : Oracle Database 11g Express Edition Release 11.2.0.2.0 - 64bit Production, Driver Name : Oracle JDBC driver, Driver Version : 23.2.0.0.0 +[CLIP report Server - Report Key 964bad482b72479aa02558d59b25c97b Thread 190. | INFO 2024-12-16 22:20:12] : [SQLDS2] Connection Time : TimeMillis : 35ms, HH:MM:SS : 00:00:00 +[CLIP report Server - Report Key 964bad482b72479aa02558d59b25c97b Thread 190. | INFO 2024-12-16 22:20:12] : [SQLDS2] executeQuery : TimeMillis : 4ms, HH:MM:SS : 00:00:00 +[CLIP report Server - Report Key 964bad482b72479aa02558d59b25c97b Thread 190. | INFO CODE=501 | 2024-12-16 22:20:12] : [SQLDS2] Database data load rows : 1 +[CLIP report Server - Report Key 964bad482b72479aa02558d59b25c97b Thread 190. | DEBUG CODE=10100 | 2024-12-16 22:20:12] : [SQLDS3] Data Query : SELECT + '신청인' AS USERTYPE, + APPLCNT_COMPANY AS COMPANY, + COMPANY_CEO AS CEO, + '(' || ZIP || ') ' || ROAD_ADDR1 || ' ' || ROAD_ADDR2 AS ADDR +FROM + C_CASEAPPLCNT +WHERE + CASE_NO = '하도2024-0545' + +UNION ALL + +SELECT + '피신청인' AS USERTYPE, + RESPONDENT_COMPANY AS COMPANY, + RESPONDENT_CEO AS CEO, + '(' || ZIP || ') ' || ROAD_ADDR1 || ' ' || ROAD_ADDR2 AS ADDR +FROM + C_CASERESPONDENT +WHERE + CASE_NO = '하도2024-0545' +AND SEQ_NO NOT IN('281') +[CLIP report Server - Report Key 964bad482b72479aa02558d59b25c97b Thread 190. | INFO 2024-12-16 22:20:12] : [SQLDS3] executeQuery : TimeMillis : 1ms, HH:MM:SS : 00:00:00 +[CLIP report Server - Report Key 964bad482b72479aa02558d59b25c97b Thread 190. | INFO CODE=501 | 2024-12-16 22:20:12] : [SQLDS3] Database data load rows : 2 +[CLIP report Server - Report Key 964bad482b72479aa02558d59b25c97b Thread 190. | INFO CODE=11 | 2024-12-16 22:20:12] : 리포트 생성이 끝났습니다. +[CLIP report Server - Report Key 964bad482b72479aa02558d59b25c97b Thread 190. | INFO 2024-12-16 22:20:12] : Report Build Time : TimeMillis : 54ms, HH:MM:SS : 00:00:00 +[CLIP report Server - Report Key 964bad482b72479aa02558d59b25c97b Thread 190. | INFO 2024-12-16 22:20:12] : Total Page Count saved! +[CLIP report Server - Report Key 964bad482b72479aa02558d59b25c97b Thread 190. | INFO 2024-12-16 22:20:12] : Last Document saved! +[CLIP report Server - Report Key 964bad482b72479aa02558d59b25c97b Thread 190. | INFO 2024-12-16 22:20:12] : Database Connection Close Start +[CLIP report Server - Report Key 964bad482b72479aa02558d59b25c97b Thread 190. | INFO 2024-12-16 22:20:12] : Database Connection Close End : TimeMillis : 2ms, HH:MM:SS : 00:00:00 +[CLIP report Server - Report Key 705b1cca6d12438ca21bbf8cf0c4ebba Thread 191. | INFO 2024-12-16 22:21:11] : Report Read Time : TimeMillis : 7ms, HH:MM:SS : 00:00:00 +[CLIP report Server - Report Key 705b1cca6d12438ca21bbf8cf0c4ebba Thread 191. | INFO CODE=10 | 2024-12-16 22:21:11] : 리포트 생성을 시작합니다. +[CLIP report Server - Report Key 705b1cca6d12438ca21bbf8cf0c4ebba Thread 191. | DEBUG CODE=10100 | 2024-12-16 22:21:11] : [SQLDS2] Data Query : SELECT + CASE_NO, + CASE_GUBUN, + (SELECT MEMBER_NAME FROM T_MEMBER WHERE MEMBER_ID = M.CASE_EXAMINER) AS CASE_EXAMINER, + (CASE + WHEN 'R' = 'A' THEN (SELECT APPLCNT_COMPANY FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + WHEN 'R' = 'R' THEN (SELECT APPLCNT_COMPANY FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND ROWNUM = 1) + END) || (CASE WHEN (SELECT COUNT(*) -1 FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO) > 0 THEN ' 외 ' || (SELECT COUNT(*) -1 FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO) END) AS APPLCNT_COMPANY, + (CASE + WHEN 'R' = 'A' THEN (SELECT COMPANY_CEO FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + WHEN 'R' = 'R' THEN (SELECT COMPANY_CEO FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND ROWNUM = 1) + END) AS COMPANY_CEO, + (CASE + WHEN 'R' = 'A' THEN (SELECT '(' || ZIP || ') ' || ROAD_ADDR1 || ' ' || ROAD_ADDR2 FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + WHEN 'R' = 'R' THEN (SELECT '(' || ZIP || ') ' || ROAD_ADDR1 || ' ' || ROAD_ADDR2 FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND ROWNUM = 1) + END) AS ADDR, + (CASE + WHEN 'R' = 'A' THEN (SELECT RESPONDENT_COMPANY FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND ROWNUM = 1) + WHEN 'R' = 'R' THEN (SELECT RESPONDENT_COMPANY FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + END) || (CASE WHEN (SELECT COUNT(*) -1 FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO) > 0 THEN ' 외 ' || (SELECT COUNT(*) -1 FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO) END) AS RESPONDENT_COMPANY, + (CASE + WHEN 'R' = 'A' THEN (SELECT RESPONDENT_CEO FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND ROWNUM = 1) + WHEN 'R' = 'R' THEN (SELECT RESPONDENT_CEO FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + END) AS RESPONDENT_CEO, + (CASE + WHEN 'R' = 'A' THEN (SELECT '(' || ZIP || ') ' || ROAD_ADDR1 || ' ' || ROAD_ADDR2 FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND ROWNUM = 1) + WHEN 'R' = 'R' THEN (SELECT '(' || ZIP || ') ' || ROAD_ADDR1 || ' ' || ROAD_ADDR2 FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + END) AS ADDR2, + (CASE + WHEN 'R' = 'A' THEN (SELECT CASE_C_COMMENT FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + WHEN 'R' = 'R' THEN (SELECT CASE_C_COMMENT FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + END) AS PRINT_COMMENT, + (CASE + WHEN 'R' = 'A' THEN (SELECT TO_CHAR(CASE_C_DATE, 'YYYY. MM. DD.') FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + WHEN 'R' = 'R' THEN (SELECT TO_CHAR(CASE_C_DATE, 'YYYY. MM. DD.') FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + END) AS PRINT_DATE, + (CASE + WHEN 'R' = 'A' THEN '신청인 ' || (SELECT COMPANY_CEO FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') || ' (인)' + WHEN 'R' = 'R' THEN '피신청인 ' || (SELECT RESPONDENT_CEO FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') || ' (인)' + END) AS PRINT_NM +FROM C_MASTER M +WHERE CASE_NO = '하도2024-0545' +[CLIP report Server - Report Key 705b1cca6d12438ca21bbf8cf0c4ebba Thread 191. | DEBUG 2024-12-16 22:21:11] : [SQLDS2] Database Info - Product Name : Oracle, Product Version : Oracle Database 11g Express Edition Release 11.2.0.2.0 - 64bit Production, Driver Name : Oracle JDBC driver, Driver Version : 23.2.0.0.0 +[CLIP report Server - Report Key 705b1cca6d12438ca21bbf8cf0c4ebba Thread 191. | INFO 2024-12-16 22:21:11] : [SQLDS2] Connection Time : TimeMillis : 40ms, HH:MM:SS : 00:00:00 +[CLIP report Server - Report Key 705b1cca6d12438ca21bbf8cf0c4ebba Thread 191. | INFO 2024-12-16 22:21:11] : [SQLDS2] executeQuery : TimeMillis : 4ms, HH:MM:SS : 00:00:00 +[CLIP report Server - Report Key 705b1cca6d12438ca21bbf8cf0c4ebba Thread 191. | INFO CODE=501 | 2024-12-16 22:21:11] : [SQLDS2] Database data load rows : 1 +[CLIP report Server - Report Key 705b1cca6d12438ca21bbf8cf0c4ebba Thread 191. | DEBUG CODE=10100 | 2024-12-16 22:21:11] : [SQLDS3] Data Query : SELECT + '신청인' AS USERTYPE, + APPLCNT_COMPANY AS COMPANY, + COMPANY_CEO AS CEO, + '(' || ZIP || ') ' || ROAD_ADDR1 || ' ' || ROAD_ADDR2 AS ADDR +FROM + C_CASEAPPLCNT +WHERE + CASE_NO = '하도2024-0545' + +UNION ALL + +SELECT + '피신청인' AS USERTYPE, + RESPONDENT_COMPANY AS COMPANY, + RESPONDENT_CEO AS CEO, + '(' || ZIP || ') ' || ROAD_ADDR1 || ' ' || ROAD_ADDR2 AS ADDR +FROM + C_CASERESPONDENT +WHERE + CASE_NO = '하도2024-0545' +AND SEQ_NO NOT IN('281') +[CLIP report Server - Report Key 705b1cca6d12438ca21bbf8cf0c4ebba Thread 191. | INFO 2024-12-16 22:21:11] : [SQLDS3] executeQuery : TimeMillis : 2ms, HH:MM:SS : 00:00:00 +[CLIP report Server - Report Key 705b1cca6d12438ca21bbf8cf0c4ebba Thread 191. | INFO CODE=501 | 2024-12-16 22:21:11] : [SQLDS3] Database data load rows : 2 +[CLIP report Server - Report Key 705b1cca6d12438ca21bbf8cf0c4ebba Thread 191. | INFO CODE=11 | 2024-12-16 22:21:11] : 리포트 생성이 끝났습니다. +[CLIP report Server - Report Key 705b1cca6d12438ca21bbf8cf0c4ebba Thread 191. | INFO 2024-12-16 22:21:11] : Report Build Time : TimeMillis : 64ms, HH:MM:SS : 00:00:00 +[CLIP report Server - Report Key 705b1cca6d12438ca21bbf8cf0c4ebba Thread 191. | INFO 2024-12-16 22:21:11] : Total Page Count saved! +[CLIP report Server - Report Key 705b1cca6d12438ca21bbf8cf0c4ebba Thread 191. | INFO 2024-12-16 22:21:11] : Last Document saved! +[CLIP report Server - Report Key 705b1cca6d12438ca21bbf8cf0c4ebba Thread 191. | INFO 2024-12-16 22:21:11] : Database Connection Close Start +[CLIP report Server - Report Key 705b1cca6d12438ca21bbf8cf0c4ebba Thread 191. | INFO 2024-12-16 22:21:11] : Database Connection Close End : TimeMillis : 2ms, HH:MM:SS : 00:00:00 +[CLIP report Server - Report Key aafc4440d4244a79abf0071caa66f3e7 Thread 184. | INFO 2024-12-16 22:24:41] : Report Read Time : TimeMillis : 344ms, HH:MM:SS : 00:00:00 +[CLIP report Server - Report Key aafc4440d4244a79abf0071caa66f3e7 Thread 184. | INFO CODE=10 | 2024-12-16 22:24:41] : 리포트 생성을 시작합니다. +[CLIP report Server - Report Key aafc4440d4244a79abf0071caa66f3e7 Thread 184. | DEBUG CODE=10100 | 2024-12-16 22:24:41] : [SQLDS2] Data Query : SELECT + CASE_NO, + CASE_GUBUN, + (SELECT MEMBER_NAME FROM T_MEMBER WHERE MEMBER_ID = M.CASE_EXAMINER) AS CASE_EXAMINER, + (CASE + WHEN 'R' = 'A' THEN (SELECT APPLCNT_COMPANY FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + WHEN 'R' = 'R' THEN (SELECT APPLCNT_COMPANY FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND ROWNUM = 1) + END) || (CASE WHEN (SELECT COUNT(*) -1 FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO) > 0 THEN ' 외 ' || (SELECT COUNT(*) -1 FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO) END) AS APPLCNT_COMPANY, + (CASE + WHEN 'R' = 'A' THEN (SELECT COMPANY_CEO FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + WHEN 'R' = 'R' THEN (SELECT COMPANY_CEO FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND ROWNUM = 1) + END) AS COMPANY_CEO, + (CASE + WHEN 'R' = 'A' THEN (SELECT '(' || ZIP || ') ' || ROAD_ADDR1 || ' ' || ROAD_ADDR2 FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + WHEN 'R' = 'R' THEN (SELECT '(' || ZIP || ') ' || ROAD_ADDR1 || ' ' || ROAD_ADDR2 FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND ROWNUM = 1) + END) AS ADDR, + (CASE + WHEN 'R' = 'A' THEN (SELECT RESPONDENT_COMPANY FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND ROWNUM = 1) + WHEN 'R' = 'R' THEN (SELECT RESPONDENT_COMPANY FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + END) || (CASE WHEN (SELECT COUNT(*) -1 FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO) > 0 THEN ' 외 ' || (SELECT COUNT(*) -1 FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO) END) AS RESPONDENT_COMPANY, + (CASE + WHEN 'R' = 'A' THEN (SELECT RESPONDENT_CEO FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND ROWNUM = 1) + WHEN 'R' = 'R' THEN (SELECT RESPONDENT_CEO FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + END) AS RESPONDENT_CEO, + (CASE + WHEN 'R' = 'A' THEN (SELECT '(' || ZIP || ') ' || ROAD_ADDR1 || ' ' || ROAD_ADDR2 FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND ROWNUM = 1) + WHEN 'R' = 'R' THEN (SELECT '(' || ZIP || ') ' || ROAD_ADDR1 || ' ' || ROAD_ADDR2 FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + END) AS ADDR2, + (CASE + WHEN 'R' = 'A' THEN (SELECT CASE_C_COMMENT FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + WHEN 'R' = 'R' THEN (SELECT CASE_C_COMMENT FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + END) AS PRINT_COMMENT, + (CASE + WHEN 'R' = 'A' THEN (SELECT TO_CHAR(CASE_C_DATE, 'YYYY. MM. DD.') FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + WHEN 'R' = 'R' THEN (SELECT TO_CHAR(CASE_C_DATE, 'YYYY. MM. DD.') FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + END) AS PRINT_DATE, + (CASE + WHEN 'R' = 'A' THEN '신청인 ' || (SELECT COMPANY_CEO FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') || ' (인)' + WHEN 'R' = 'R' THEN '피신청인 ' || (SELECT RESPONDENT_CEO FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') || ' (인)' + END) AS PRINT_NM +FROM C_MASTER M +WHERE CASE_NO = '하도2024-0545' +[CLIP report Server - Report Key aafc4440d4244a79abf0071caa66f3e7 Thread 184. | DEBUG 2024-12-16 22:24:41] : [SQLDS2] Database Info - Product Name : Oracle, Product Version : Oracle Database 11g Express Edition Release 11.2.0.2.0 - 64bit Production, Driver Name : Oracle JDBC driver, Driver Version : 23.2.0.0.0 +[CLIP report Server - Report Key aafc4440d4244a79abf0071caa66f3e7 Thread 184. | INFO 2024-12-16 22:24:41] : [SQLDS2] Connection Time : TimeMillis : 61ms, HH:MM:SS : 00:00:00 +[CLIP report Server - Report Key aafc4440d4244a79abf0071caa66f3e7 Thread 184. | INFO 2024-12-16 22:24:41] : [SQLDS2] executeQuery : TimeMillis : 7ms, HH:MM:SS : 00:00:00 +[CLIP report Server - Report Key aafc4440d4244a79abf0071caa66f3e7 Thread 184. | INFO CODE=501 | 2024-12-16 22:24:41] : [SQLDS2] Database data load rows : 1 +[CLIP report Server - Report Key aafc4440d4244a79abf0071caa66f3e7 Thread 184. | DEBUG CODE=10100 | 2024-12-16 22:24:42] : [SQLDS3] Data Query : SELECT + '신청인' AS USERTYPE, + APPLCNT_COMPANY AS COMPANY, + COMPANY_CEO AS CEO, + '(' || ZIP || ') ' || ROAD_ADDR1 || ' ' || ROAD_ADDR2 AS ADDR +FROM + C_CASEAPPLCNT +WHERE + CASE_NO = '하도2024-0545' + +UNION ALL + +SELECT + '피신청인' AS USERTYPE, + RESPONDENT_COMPANY AS COMPANY, + RESPONDENT_CEO AS CEO, + '(' || ZIP || ') ' || ROAD_ADDR1 || ' ' || ROAD_ADDR2 AS ADDR +FROM + C_CASERESPONDENT +WHERE + CASE_NO = '하도2024-0545' +AND SEQ_NO NOT IN('281') +[CLIP report Server - Report Key aafc4440d4244a79abf0071caa66f3e7 Thread 184. | INFO 2024-12-16 22:24:42] : [SQLDS3] executeQuery : TimeMillis : 2ms, HH:MM:SS : 00:00:00 +[CLIP report Server - Report Key aafc4440d4244a79abf0071caa66f3e7 Thread 184. | INFO CODE=501 | 2024-12-16 22:24:42] : [SQLDS3] Database data load rows : 2 +[CLIP report Server - Report Key aafc4440d4244a79abf0071caa66f3e7 Thread 184. | INFO CODE=11 | 2024-12-16 22:24:42] : 리포트 생성이 끝났습니다. +[CLIP report Server - Report Key aafc4440d4244a79abf0071caa66f3e7 Thread 184. | INFO 2024-12-16 22:24:42] : Report Build Time : TimeMillis : 945ms, HH:MM:SS : 00:00:00 +[CLIP report Server - Report Key aafc4440d4244a79abf0071caa66f3e7 Thread 184. | INFO 2024-12-16 22:24:42] : Total Page Count saved! +[CLIP report Server - Report Key aafc4440d4244a79abf0071caa66f3e7 Thread 184. | INFO 2024-12-16 22:24:42] : Last Document saved! +[CLIP report Server - Report Key aafc4440d4244a79abf0071caa66f3e7 Thread 184. | INFO 2024-12-16 22:24:42] : Database Connection Close Start +[CLIP report Server - Report Key aafc4440d4244a79abf0071caa66f3e7 Thread 184. | INFO 2024-12-16 22:24:42] : Database Connection Close End : TimeMillis : 2ms, HH:MM:SS : 00:00:00 +[CLIP report Server - Report Key 66ef7c561bbc48a1b31052e27d77043b Thread 188. | INFO 2024-12-16 22:25:06] : Report Read Time : TimeMillis : 21ms, HH:MM:SS : 00:00:00 +[CLIP report Server - Report Key 66ef7c561bbc48a1b31052e27d77043b Thread 188. | INFO CODE=10 | 2024-12-16 22:25:07] : 리포트 생성을 시작합니다. +[CLIP report Server - Report Key 66ef7c561bbc48a1b31052e27d77043b Thread 188. | DEBUG CODE=10100 | 2024-12-16 22:25:07] : [SQLDS2] Data Query : SELECT + CASE_NO, + CASE_GUBUN, + (SELECT MEMBER_NAME FROM T_MEMBER WHERE MEMBER_ID = M.CASE_EXAMINER) AS CASE_EXAMINER, + (CASE + WHEN 'R' = 'A' THEN (SELECT APPLCNT_COMPANY FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + WHEN 'R' = 'R' THEN (SELECT APPLCNT_COMPANY FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND ROWNUM = 1) + END) || (CASE WHEN (SELECT COUNT(*) -1 FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO) > 0 THEN ' 외 ' || (SELECT COUNT(*) -1 FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO) END) AS APPLCNT_COMPANY, + (CASE + WHEN 'R' = 'A' THEN (SELECT COMPANY_CEO FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + WHEN 'R' = 'R' THEN (SELECT COMPANY_CEO FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND ROWNUM = 1) + END) AS COMPANY_CEO, + (CASE + WHEN 'R' = 'A' THEN (SELECT '(' || ZIP || ') ' || ROAD_ADDR1 || ' ' || ROAD_ADDR2 FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + WHEN 'R' = 'R' THEN (SELECT '(' || ZIP || ') ' || ROAD_ADDR1 || ' ' || ROAD_ADDR2 FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND ROWNUM = 1) + END) AS ADDR, + (CASE + WHEN 'R' = 'A' THEN (SELECT RESPONDENT_COMPANY FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND ROWNUM = 1) + WHEN 'R' = 'R' THEN (SELECT RESPONDENT_COMPANY FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + END) || (CASE WHEN (SELECT COUNT(*) -1 FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO) > 0 THEN ' 외 ' || (SELECT COUNT(*) -1 FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO) END) AS RESPONDENT_COMPANY, + (CASE + WHEN 'R' = 'A' THEN (SELECT RESPONDENT_CEO FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND ROWNUM = 1) + WHEN 'R' = 'R' THEN (SELECT RESPONDENT_CEO FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + END) AS RESPONDENT_CEO, + (CASE + WHEN 'R' = 'A' THEN (SELECT '(' || ZIP || ') ' || ROAD_ADDR1 || ' ' || ROAD_ADDR2 FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND ROWNUM = 1) + WHEN 'R' = 'R' THEN (SELECT '(' || ZIP || ') ' || ROAD_ADDR1 || ' ' || ROAD_ADDR2 FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + END) AS ADDR2, + (CASE + WHEN 'R' = 'A' THEN (SELECT CASE_C_COMMENT FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + WHEN 'R' = 'R' THEN (SELECT CASE_C_COMMENT FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + END) AS PRINT_COMMENT, + (CASE + WHEN 'R' = 'A' THEN (SELECT TO_CHAR(CASE_C_DATE, 'YYYY. MM. DD.') FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + WHEN 'R' = 'R' THEN (SELECT TO_CHAR(CASE_C_DATE, 'YYYY. MM. DD.') FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + END) AS PRINT_DATE, + (CASE + WHEN 'R' = 'A' THEN '신청인 ' || (SELECT COMPANY_CEO FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') || ' (인)' + WHEN 'R' = 'R' THEN '피신청인 ' || (SELECT RESPONDENT_CEO FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') || ' (인)' + END) AS PRINT_NM +FROM C_MASTER M +WHERE CASE_NO = '하도2024-0545' +[CLIP report Server - Report Key 66ef7c561bbc48a1b31052e27d77043b Thread 188. | DEBUG 2024-12-16 22:25:07] : [SQLDS2] Database Info - Product Name : Oracle, Product Version : Oracle Database 11g Express Edition Release 11.2.0.2.0 - 64bit Production, Driver Name : Oracle JDBC driver, Driver Version : 23.2.0.0.0 +[CLIP report Server - Report Key 66ef7c561bbc48a1b31052e27d77043b Thread 188. | INFO 2024-12-16 22:25:07] : [SQLDS2] Connection Time : TimeMillis : 41ms, HH:MM:SS : 00:00:00 +[CLIP report Server - Report Key 66ef7c561bbc48a1b31052e27d77043b Thread 188. | INFO 2024-12-16 22:25:07] : [SQLDS2] executeQuery : TimeMillis : 5ms, HH:MM:SS : 00:00:00 +[CLIP report Server - Report Key 66ef7c561bbc48a1b31052e27d77043b Thread 188. | INFO CODE=501 | 2024-12-16 22:25:07] : [SQLDS2] Database data load rows : 1 +[CLIP report Server - Report Key 66ef7c561bbc48a1b31052e27d77043b Thread 188. | DEBUG CODE=10100 | 2024-12-16 22:25:07] : [SQLDS3] Data Query : SELECT + '신청인' AS USERTYPE, + APPLCNT_COMPANY AS COMPANY, + COMPANY_CEO AS CEO, + '(' || ZIP || ') ' || ROAD_ADDR1 || ' ' || ROAD_ADDR2 AS ADDR +FROM + C_CASEAPPLCNT +WHERE + CASE_NO = '하도2024-0545' + +UNION ALL + +SELECT + '피신청인' AS USERTYPE, + RESPONDENT_COMPANY AS COMPANY, + RESPONDENT_CEO AS CEO, + '(' || ZIP || ') ' || ROAD_ADDR1 || ' ' || ROAD_ADDR2 AS ADDR +FROM + C_CASERESPONDENT +WHERE + CASE_NO = '하도2024-0545' +AND SEQ_NO NOT IN('281') +[CLIP report Server - Report Key 66ef7c561bbc48a1b31052e27d77043b Thread 188. | INFO 2024-12-16 22:25:07] : [SQLDS3] executeQuery : TimeMillis : 3ms, HH:MM:SS : 00:00:00 +[CLIP report Server - Report Key 66ef7c561bbc48a1b31052e27d77043b Thread 188. | INFO CODE=501 | 2024-12-16 22:25:07] : [SQLDS3] Database data load rows : 2 +[CLIP report Server - Report Key 66ef7c561bbc48a1b31052e27d77043b Thread 188. | INFO CODE=11 | 2024-12-16 22:25:07] : 리포트 생성이 끝났습니다. +[CLIP report Server - Report Key 66ef7c561bbc48a1b31052e27d77043b Thread 188. | INFO 2024-12-16 22:25:07] : Report Build Time : TimeMillis : 83ms, HH:MM:SS : 00:00:00 +[CLIP report Server - Report Key 66ef7c561bbc48a1b31052e27d77043b Thread 188. | INFO 2024-12-16 22:25:07] : Total Page Count saved! +[CLIP report Server - Report Key 66ef7c561bbc48a1b31052e27d77043b Thread 188. | INFO 2024-12-16 22:25:07] : Last Document saved! +[CLIP report Server - Report Key 66ef7c561bbc48a1b31052e27d77043b Thread 188. | INFO 2024-12-16 22:25:07] : Database Connection Close Start +[CLIP report Server - Report Key 66ef7c561bbc48a1b31052e27d77043b Thread 188. | INFO 2024-12-16 22:25:07] : Database Connection Close End : TimeMillis : 3ms, HH:MM:SS : 00:00:00 +[CLIP report Server - Report Key 14886cdc492c44e4b832fbf81db6ff94 Thread 196. | INFO 2024-12-16 22:33:00] : Report Read Time : TimeMillis : 12ms, HH:MM:SS : 00:00:00 +[CLIP report Server - Report Key 14886cdc492c44e4b832fbf81db6ff94 Thread 196. | INFO CODE=10 | 2024-12-16 22:33:00] : 리포트 생성을 시작합니다. +[CLIP report Server - Report Key 14886cdc492c44e4b832fbf81db6ff94 Thread 196. | DEBUG CODE=10100 | 2024-12-16 22:33:00] : [SQLDS2] Data Query : SELECT + CASE_NO, + CASE_GUBUN, + (SELECT MEMBER_NAME FROM T_MEMBER WHERE MEMBER_ID = M.CASE_EXAMINER) AS CASE_EXAMINER, + (CASE + WHEN 'R' = 'A' THEN (SELECT APPLCNT_COMPANY FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + WHEN 'R' = 'R' THEN (SELECT APPLCNT_COMPANY FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND ROWNUM = 1) + END) || (CASE WHEN (SELECT COUNT(*) -1 FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO) > 0 THEN ' 외 ' || (SELECT COUNT(*) -1 FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO) END) AS APPLCNT_COMPANY, + (CASE + WHEN 'R' = 'A' THEN (SELECT COMPANY_CEO FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + WHEN 'R' = 'R' THEN (SELECT COMPANY_CEO FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND ROWNUM = 1) + END) AS COMPANY_CEO, + (CASE + WHEN 'R' = 'A' THEN (SELECT '(' || ZIP || ') ' || ROAD_ADDR1 || ' ' || ROAD_ADDR2 FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + WHEN 'R' = 'R' THEN (SELECT '(' || ZIP || ') ' || ROAD_ADDR1 || ' ' || ROAD_ADDR2 FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND ROWNUM = 1) + END) AS ADDR, + (CASE + WHEN 'R' = 'A' THEN (SELECT RESPONDENT_COMPANY FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND ROWNUM = 1) + WHEN 'R' = 'R' THEN (SELECT RESPONDENT_COMPANY FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + END) || (CASE WHEN (SELECT COUNT(*) -1 FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO) > 0 THEN ' 외 ' || (SELECT COUNT(*) -1 FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO) END) AS RESPONDENT_COMPANY, + (CASE + WHEN 'R' = 'A' THEN (SELECT RESPONDENT_CEO FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND ROWNUM = 1) + WHEN 'R' = 'R' THEN (SELECT RESPONDENT_CEO FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + END) AS RESPONDENT_CEO, + (CASE + WHEN 'R' = 'A' THEN (SELECT '(' || ZIP || ') ' || ROAD_ADDR1 || ' ' || ROAD_ADDR2 FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND ROWNUM = 1) + WHEN 'R' = 'R' THEN (SELECT '(' || ZIP || ') ' || ROAD_ADDR1 || ' ' || ROAD_ADDR2 FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + END) AS ADDR2, + (CASE + WHEN 'R' = 'A' THEN (SELECT CASE_B_COMMENT FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + WHEN 'R' = 'R' THEN (SELECT CASE_B_COMMENT FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + END) AS PRINT_COMMENT, + (CASE + WHEN 'R' = 'A' THEN (SELECT TO_CHAR(CASE_B_DATE, 'YYYY. MM. DD.') FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + WHEN 'R' = 'R' THEN (SELECT TO_CHAR(CASE_B_DATE, 'YYYY. MM. DD.') FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + END) AS PRINT_DATE, + (CASE + WHEN 'R' = 'A' THEN '신청인 ' || (SELECT COMPANY_CEO FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') || ' (인)' + WHEN 'R' = 'R' THEN '피신청인 ' || (SELECT RESPONDENT_CEO FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') || ' (인)' + END) AS PRINT_NM +FROM C_MASTER M +WHERE CASE_NO = '하도2024-0545' +[CLIP report Server - Report Key 14886cdc492c44e4b832fbf81db6ff94 Thread 196. | DEBUG 2024-12-16 22:33:00] : [SQLDS2] Database Info - Product Name : Oracle, Product Version : Oracle Database 11g Express Edition Release 11.2.0.2.0 - 64bit Production, Driver Name : Oracle JDBC driver, Driver Version : 23.2.0.0.0 +[CLIP report Server - Report Key 14886cdc492c44e4b832fbf81db6ff94 Thread 196. | INFO 2024-12-16 22:33:00] : [SQLDS2] Connection Time : TimeMillis : 37ms, HH:MM:SS : 00:00:00 +[CLIP report Server - Report Key 14886cdc492c44e4b832fbf81db6ff94 Thread 196. | INFO 2024-12-16 22:33:00] : [SQLDS2] executeQuery : TimeMillis : 15ms, HH:MM:SS : 00:00:00 +[CLIP report Server - Report Key 14886cdc492c44e4b832fbf81db6ff94 Thread 196. | INFO CODE=501 | 2024-12-16 22:33:00] : [SQLDS2] Database data load rows : 1 +[CLIP report Server - Report Key 14886cdc492c44e4b832fbf81db6ff94 Thread 196. | DEBUG CODE=10100 | 2024-12-16 22:33:00] : [SQLDS3] Data Query : SELECT + '신청인' AS USERTYPE, + APPLCNT_COMPANY AS COMPANY, + COMPANY_CEO AS CEO, + '(' || ZIP || ') ' || ROAD_ADDR1 || ' ' || ROAD_ADDR2 AS ADDR +FROM + C_CASEAPPLCNT +WHERE + CASE_NO = '하도2024-0545' + +UNION ALL + +SELECT + '피신청인' AS USERTYPE, + RESPONDENT_COMPANY AS COMPANY, + RESPONDENT_CEO AS CEO, + '(' || ZIP || ') ' || ROAD_ADDR1 || ' ' || ROAD_ADDR2 AS ADDR +FROM + C_CASERESPONDENT +WHERE + CASE_NO = '하도2024-0545' +AND SEQ_NO NOT IN('281') +[CLIP report Server - Report Key 14886cdc492c44e4b832fbf81db6ff94 Thread 196. | INFO 2024-12-16 22:33:00] : [SQLDS3] executeQuery : TimeMillis : 1ms, HH:MM:SS : 00:00:00 +[CLIP report Server - Report Key 14886cdc492c44e4b832fbf81db6ff94 Thread 196. | INFO CODE=501 | 2024-12-16 22:33:00] : [SQLDS3] Database data load rows : 2 +[CLIP report Server - Report Key 14886cdc492c44e4b832fbf81db6ff94 Thread 196. | INFO CODE=11 | 2024-12-16 22:33:00] : 리포트 생성이 끝났습니다. +[CLIP report Server - Report Key 14886cdc492c44e4b832fbf81db6ff94 Thread 196. | INFO 2024-12-16 22:33:00] : Report Build Time : TimeMillis : 74ms, HH:MM:SS : 00:00:00 +[CLIP report Server - Report Key 14886cdc492c44e4b832fbf81db6ff94 Thread 196. | INFO 2024-12-16 22:33:00] : Total Page Count saved! +[CLIP report Server - Report Key 14886cdc492c44e4b832fbf81db6ff94 Thread 196. | INFO 2024-12-16 22:33:00] : Last Document saved! +[CLIP report Server - Report Key 14886cdc492c44e4b832fbf81db6ff94 Thread 196. | INFO 2024-12-16 22:33:00] : Database Connection Close Start +[CLIP report Server - Report Key 14886cdc492c44e4b832fbf81db6ff94 Thread 196. | INFO 2024-12-16 22:33:00] : Database Connection Close End : TimeMillis : 2ms, HH:MM:SS : 00:00:00 +[CLIP report Server - Report Key 5fa3a4fc92e9458a8a8e6d14488c060b Thread 202. | INFO 2024-12-16 22:38:21] : Report Read Time : TimeMillis : 6ms, HH:MM:SS : 00:00:00 +[CLIP report Server - Report Key 5fa3a4fc92e9458a8a8e6d14488c060b Thread 202. | INFO CODE=10 | 2024-12-16 22:38:21] : 리포트 생성을 시작합니다. +[CLIP report Server - Report Key 5fa3a4fc92e9458a8a8e6d14488c060b Thread 202. | DEBUG CODE=10100 | 2024-12-16 22:38:21] : [SQLDS2] Data Query : SELECT + CASE_NO, + CASE_GUBUN, + (SELECT MEMBER_NAME FROM T_MEMBER WHERE MEMBER_ID = M.CASE_EXAMINER) AS CASE_EXAMINER, + (CASE + WHEN 'R' = 'A' THEN (SELECT APPLCNT_COMPANY FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + WHEN 'R' = 'R' THEN (SELECT APPLCNT_COMPANY FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND ROWNUM = 1) + END) || (CASE WHEN (SELECT COUNT(*) -1 FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO) > 0 THEN ' 외 ' || (SELECT COUNT(*) -1 FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO) END) AS APPLCNT_COMPANY, + (CASE + WHEN 'R' = 'A' THEN (SELECT COMPANY_CEO FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + WHEN 'R' = 'R' THEN (SELECT COMPANY_CEO FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND ROWNUM = 1) + END) AS COMPANY_CEO, + (CASE + WHEN 'R' = 'A' THEN (SELECT '(' || ZIP || ') ' || ROAD_ADDR1 || ' ' || ROAD_ADDR2 FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + WHEN 'R' = 'R' THEN (SELECT '(' || ZIP || ') ' || ROAD_ADDR1 || ' ' || ROAD_ADDR2 FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND ROWNUM = 1) + END) AS ADDR, + (CASE + WHEN 'R' = 'A' THEN (SELECT RESPONDENT_COMPANY FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND ROWNUM = 1) + WHEN 'R' = 'R' THEN (SELECT RESPONDENT_COMPANY FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + END) || (CASE WHEN (SELECT COUNT(*) -1 FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO) > 0 THEN ' 외 ' || (SELECT COUNT(*) -1 FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO) END) AS RESPONDENT_COMPANY, + (CASE + WHEN 'R' = 'A' THEN (SELECT RESPONDENT_CEO FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND ROWNUM = 1) + WHEN 'R' = 'R' THEN (SELECT RESPONDENT_CEO FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + END) AS RESPONDENT_CEO, + (CASE + WHEN 'R' = 'A' THEN (SELECT '(' || ZIP || ') ' || ROAD_ADDR1 || ' ' || ROAD_ADDR2 FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND ROWNUM = 1) + WHEN 'R' = 'R' THEN (SELECT '(' || ZIP || ') ' || ROAD_ADDR1 || ' ' || ROAD_ADDR2 FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + END) AS ADDR2, + (CASE + WHEN 'R' = 'A' THEN (SELECT CASE_C_COMMENT FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + WHEN 'R' = 'R' THEN (SELECT CASE_C_COMMENT FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + END) AS PRINT_COMMENT, + (CASE + WHEN 'R' = 'A' THEN (SELECT TO_CHAR(CASE_C_DATE, 'YYYY. MM. DD.') FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + WHEN 'R' = 'R' THEN (SELECT TO_CHAR(CASE_C_DATE, 'YYYY. MM. DD.') FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + END) AS PRINT_DATE, + (CASE + WHEN 'R' = 'A' THEN '신청인 ' || (SELECT COMPANY_CEO FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') || ' (인)' + WHEN 'R' = 'R' THEN '피신청인 ' || (SELECT RESPONDENT_CEO FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') || ' (인)' + END) AS PRINT_NM +FROM C_MASTER M +WHERE CASE_NO = '하도2024-0545' +[CLIP report Server - Report Key 5fa3a4fc92e9458a8a8e6d14488c060b Thread 202. | DEBUG 2024-12-16 22:38:21] : [SQLDS2] Database Info - Product Name : Oracle, Product Version : Oracle Database 11g Express Edition Release 11.2.0.2.0 - 64bit Production, Driver Name : Oracle JDBC driver, Driver Version : 23.2.0.0.0 +[CLIP report Server - Report Key 5fa3a4fc92e9458a8a8e6d14488c060b Thread 202. | INFO 2024-12-16 22:38:21] : [SQLDS2] Connection Time : TimeMillis : 39ms, HH:MM:SS : 00:00:00 +[CLIP report Server - Report Key 5fa3a4fc92e9458a8a8e6d14488c060b Thread 202. | INFO 2024-12-16 22:38:21] : [SQLDS2] executeQuery : TimeMillis : 5ms, HH:MM:SS : 00:00:00 +[CLIP report Server - Report Key 5fa3a4fc92e9458a8a8e6d14488c060b Thread 202. | INFO CODE=501 | 2024-12-16 22:38:21] : [SQLDS2] Database data load rows : 1 +[CLIP report Server - Report Key 5fa3a4fc92e9458a8a8e6d14488c060b Thread 202. | DEBUG CODE=10100 | 2024-12-16 22:38:21] : [SQLDS3] Data Query : SELECT + * +FROM + ( + SELECT + '신청인' AS USERTYPE, + APPLCNT_COMPANY AS COMPANY, + COMPANY_CEO AS CEO, + '(' || ZIP || ') ' || ROAD_ADDR1 || ' ' || ROAD_ADDR2 AS ADDR, + ROWNUM AS rnum + FROM + C_CASEAPPLCNT + WHERE + CASE_NO = '하도2024-0545' + ORDER BY + SEQ_NO + ) +WHERE + rnum > 1 + +UNION ALL + +SELECT + * +FROM + ( + SELECT + '피신청인' AS USERTYPE, + RESPONDENT_COMPANY AS COMPANY, + RESPONDENT_CEO AS CEO, + '(' || ZIP || ') ' || ROAD_ADDR1 || ' ' || ROAD_ADDR2 AS ADDR, + ROWNUM AS rnum + FROM + C_CASERESPONDENT + WHERE + CASE_NO = '하도2024-0545' + AND SEQ_NO NOT IN('281') ) +[CLIP report Server - Report Key 5fa3a4fc92e9458a8a8e6d14488c060b Thread 202. | INFO 2024-12-16 22:38:21] : [SQLDS3] executeQuery : TimeMillis : 5ms, HH:MM:SS : 00:00:00 +[CLIP report Server - Report Key 5fa3a4fc92e9458a8a8e6d14488c060b Thread 202. | INFO CODE=501 | 2024-12-16 22:38:21] : [SQLDS3] Database data load rows : 1 +[CLIP report Server - Report Key 5fa3a4fc92e9458a8a8e6d14488c060b Thread 202. | INFO CODE=11 | 2024-12-16 22:38:21] : 리포트 생성이 끝났습니다. +[CLIP report Server - Report Key 5fa3a4fc92e9458a8a8e6d14488c060b Thread 202. | INFO 2024-12-16 22:38:22] : Report Build Time : TimeMillis : 81ms, HH:MM:SS : 00:00:00 +[CLIP report Server - Report Key 5fa3a4fc92e9458a8a8e6d14488c060b Thread 202. | INFO 2024-12-16 22:38:22] : Total Page Count saved! +[CLIP report Server - Report Key 5fa3a4fc92e9458a8a8e6d14488c060b Thread 202. | INFO 2024-12-16 22:38:22] : Last Document saved! +[CLIP report Server - Report Key 5fa3a4fc92e9458a8a8e6d14488c060b Thread 202. | INFO 2024-12-16 22:38:22] : Database Connection Close Start +[CLIP report Server - Report Key 5fa3a4fc92e9458a8a8e6d14488c060b Thread 202. | INFO 2024-12-16 22:38:22] : Database Connection Close End : TimeMillis : 3ms, HH:MM:SS : 00:00:00 +[CLIP report Server - Report Key ef98d45c9eeb4ab8b07a9b1d4bbdc413 Thread 204. | INFO 2024-12-16 22:38:38] : Report Read Time : TimeMillis : 18ms, HH:MM:SS : 00:00:00 +[CLIP report Server - Report Key ef98d45c9eeb4ab8b07a9b1d4bbdc413 Thread 204. | INFO CODE=10 | 2024-12-16 22:38:38] : 리포트 생성을 시작합니다. +[CLIP report Server - Report Key ef98d45c9eeb4ab8b07a9b1d4bbdc413 Thread 204. | DEBUG CODE=10100 | 2024-12-16 22:38:38] : [SQLDS2] Data Query : SELECT + CASE_NO, + CASE_GUBUN, + (SELECT MEMBER_NAME FROM T_MEMBER WHERE MEMBER_ID = M.CASE_EXAMINER) AS CASE_EXAMINER, + (CASE + WHEN 'R' = 'A' THEN (SELECT APPLCNT_COMPANY FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + WHEN 'R' = 'R' THEN (SELECT APPLCNT_COMPANY FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND ROWNUM = 1) + END) || (CASE WHEN (SELECT COUNT(*) -1 FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO) > 0 THEN ' 외 ' || (SELECT COUNT(*) -1 FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO) END) AS APPLCNT_COMPANY, + (CASE + WHEN 'R' = 'A' THEN (SELECT COMPANY_CEO FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + WHEN 'R' = 'R' THEN (SELECT COMPANY_CEO FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND ROWNUM = 1) + END) AS COMPANY_CEO, + (CASE + WHEN 'R' = 'A' THEN (SELECT '(' || ZIP || ') ' || ROAD_ADDR1 || ' ' || ROAD_ADDR2 FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + WHEN 'R' = 'R' THEN (SELECT '(' || ZIP || ') ' || ROAD_ADDR1 || ' ' || ROAD_ADDR2 FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND ROWNUM = 1) + END) AS ADDR, + (CASE + WHEN 'R' = 'A' THEN (SELECT RESPONDENT_COMPANY FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND ROWNUM = 1) + WHEN 'R' = 'R' THEN (SELECT RESPONDENT_COMPANY FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + END) || (CASE WHEN (SELECT COUNT(*) -1 FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO) > 0 THEN ' 외 ' || (SELECT COUNT(*) -1 FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO) END) AS RESPONDENT_COMPANY, + (CASE + WHEN 'R' = 'A' THEN (SELECT RESPONDENT_CEO FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND ROWNUM = 1) + WHEN 'R' = 'R' THEN (SELECT RESPONDENT_CEO FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + END) AS RESPONDENT_CEO, + (CASE + WHEN 'R' = 'A' THEN (SELECT '(' || ZIP || ') ' || ROAD_ADDR1 || ' ' || ROAD_ADDR2 FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND ROWNUM = 1) + WHEN 'R' = 'R' THEN (SELECT '(' || ZIP || ') ' || ROAD_ADDR1 || ' ' || ROAD_ADDR2 FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + END) AS ADDR2, + (CASE + WHEN 'R' = 'A' THEN (SELECT CASE_B_COMMENT FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + WHEN 'R' = 'R' THEN (SELECT CASE_B_COMMENT FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + END) AS PRINT_COMMENT, + (CASE + WHEN 'R' = 'A' THEN (SELECT TO_CHAR(CASE_B_DATE, 'YYYY. MM. DD.') FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + WHEN 'R' = 'R' THEN (SELECT TO_CHAR(CASE_B_DATE, 'YYYY. MM. DD.') FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') + END) AS PRINT_DATE, + (CASE + WHEN 'R' = 'A' THEN '신청인 ' || (SELECT COMPANY_CEO FROM C_CASEAPPLCNT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') || ' (인)' + WHEN 'R' = 'R' THEN '피신청인 ' || (SELECT RESPONDENT_CEO FROM C_CASERESPONDENT WHERE CASE_NO = M.CASE_NO AND SEQ_NO = '281') || ' (인)' + END) AS PRINT_NM +FROM C_MASTER M +WHERE CASE_NO = '하도2024-0545' +[CLIP report Server - Report Key ef98d45c9eeb4ab8b07a9b1d4bbdc413 Thread 204. | DEBUG 2024-12-16 22:38:38] : [SQLDS2] Database Info - Product Name : Oracle, Product Version : Oracle Database 11g Express Edition Release 11.2.0.2.0 - 64bit Production, Driver Name : Oracle JDBC driver, Driver Version : 23.2.0.0.0 +[CLIP report Server - Report Key ef98d45c9eeb4ab8b07a9b1d4bbdc413 Thread 204. | INFO 2024-12-16 22:38:38] : [SQLDS2] Connection Time : TimeMillis : 39ms, HH:MM:SS : 00:00:00 +[CLIP report Server - Report Key ef98d45c9eeb4ab8b07a9b1d4bbdc413 Thread 204. | INFO 2024-12-16 22:38:38] : [SQLDS2] executeQuery : TimeMillis : 5ms, HH:MM:SS : 00:00:00 +[CLIP report Server - Report Key ef98d45c9eeb4ab8b07a9b1d4bbdc413 Thread 204. | INFO CODE=501 | 2024-12-16 22:38:38] : [SQLDS2] Database data load rows : 1 +[CLIP report Server - Report Key ef98d45c9eeb4ab8b07a9b1d4bbdc413 Thread 204. | DEBUG CODE=10100 | 2024-12-16 22:38:38] : [SQLDS3] Data Query : SELECT + * +FROM + ( + SELECT + '신청인' AS USERTYPE, + APPLCNT_COMPANY AS COMPANY, + COMPANY_CEO AS CEO, + '(' || ZIP || ') ' || ROAD_ADDR1 || ' ' || ROAD_ADDR2 AS ADDR, + ROWNUM AS rnum + FROM + C_CASEAPPLCNT + WHERE + CASE_NO = '하도2024-0545' + ORDER BY + SEQ_NO + ) +WHERE + rnum > 1 + +UNION ALL + +SELECT + * +FROM + ( + SELECT + '피신청인' AS USERTYPE, + RESPONDENT_COMPANY AS COMPANY, + RESPONDENT_CEO AS CEO, + '(' || ZIP || ') ' || ROAD_ADDR1 || ' ' || ROAD_ADDR2 AS ADDR, + ROWNUM AS rnum + FROM + C_CASERESPONDENT + WHERE + CASE_NO = '하도2024-0545' + AND SEQ_NO NOT IN('281') ) +[CLIP report Server - Report Key ef98d45c9eeb4ab8b07a9b1d4bbdc413 Thread 204. | INFO 2024-12-16 22:38:38] : [SQLDS3] executeQuery : TimeMillis : 1ms, HH:MM:SS : 00:00:00 +[CLIP report Server - Report Key ef98d45c9eeb4ab8b07a9b1d4bbdc413 Thread 204. | INFO CODE=501 | 2024-12-16 22:38:38] : [SQLDS3] Database data load rows : 1 +[CLIP report Server - Report Key ef98d45c9eeb4ab8b07a9b1d4bbdc413 Thread 204. | INFO CODE=11 | 2024-12-16 22:38:38] : 리포트 생성이 끝났습니다. +[CLIP report Server - Report Key ef98d45c9eeb4ab8b07a9b1d4bbdc413 Thread 204. | INFO 2024-12-16 22:38:38] : Report Build Time : TimeMillis : 88ms, HH:MM:SS : 00:00:00 +[CLIP report Server - Report Key ef98d45c9eeb4ab8b07a9b1d4bbdc413 Thread 204. | INFO 2024-12-16 22:38:38] : Total Page Count saved! +[CLIP report Server - Report Key ef98d45c9eeb4ab8b07a9b1d4bbdc413 Thread 204. | INFO 2024-12-16 22:38:38] : Last Document saved! +[CLIP report Server - Report Key ef98d45c9eeb4ab8b07a9b1d4bbdc413 Thread 204. | INFO 2024-12-16 22:38:38] : Database Connection Close Start +[CLIP report Server - Report Key ef98d45c9eeb4ab8b07a9b1d4bbdc413 Thread 204. | INFO 2024-12-16 22:38:38] : Database Connection Close End : TimeMillis : 2ms, HH:MM:SS : 00:00:00 diff --git a/src/main/webapp/WEB-INF/clipreport4/logs/clip b/src/main/webapp/WEB-INF/clipreport4/logs/clip new file mode 100644 index 00000000..e69de29b diff --git a/src/main/webapp/WEB-INF/clipreport4/securekey.clip b/src/main/webapp/WEB-INF/clipreport4/securekey.clip new file mode 100644 index 00000000..36060b0d --- /dev/null +++ b/src/main/webapp/WEB-INF/clipreport4/securekey.clip @@ -0,0 +1 @@ +( ^ V^ {@ 4 \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/clipreport4/temp/14886cdc492c44e4b832fbf81db6ff942fc16834e48e49d2a4a83fe624edeb71 b/src/main/webapp/WEB-INF/clipreport4/temp/14886cdc492c44e4b832fbf81db6ff942fc16834e48e49d2a4a83fe624edeb71 new file mode 100644 index 00000000..f8b2155a Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/temp/14886cdc492c44e4b832fbf81db6ff942fc16834e48e49d2a4a83fe624edeb71 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/temp/14886cdc492c44e4b832fbf81db6ff947debc9f233a24510884f265bc51d5491 b/src/main/webapp/WEB-INF/clipreport4/temp/14886cdc492c44e4b832fbf81db6ff947debc9f233a24510884f265bc51d5491 new file mode 100644 index 00000000..920d3fda Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/temp/14886cdc492c44e4b832fbf81db6ff947debc9f233a24510884f265bc51d5491 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/temp/14886cdc492c44e4b832fbf81db6ff94count b/src/main/webapp/WEB-INF/clipreport4/temp/14886cdc492c44e4b832fbf81db6ff94count new file mode 100644 index 00000000..f19a28d5 --- /dev/null +++ b/src/main/webapp/WEB-INF/clipreport4/temp/14886cdc492c44e4b832fbf81db6ff94count @@ -0,0 +1 @@ +{"count":2,"endReport":true,"error":false} \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/clipreport4/temp/14886cdc492c44e4b832fbf81db6ff94document b/src/main/webapp/WEB-INF/clipreport4/temp/14886cdc492c44e4b832fbf81db6ff94document new file mode 100644 index 00000000..e08846d8 --- /dev/null +++ b/src/main/webapp/WEB-INF/clipreport4/temp/14886cdc492c44e4b832fbf81db6ff94document @@ -0,0 +1 @@ +{"a":"1.0.0.71","b":"","c":"","d":"","e":"","f":"","g":{"a":[[1,2100,2970,0,50,50,50,50,1,0]],"b":[],"c":[[1,16777215,0,0,0,16777215,16777215],[1,16777215,0,0,0,16777215,0]],"d":[[0,0,0],[1,75,0],[0,0,0],[0,0,0]],"e":[[8,14,true,false,false,false,0,1,-1,1,-1,8],[8,11,false,false,false,false,0,1,-1,1,-1,8],[8,14,false,false,false,false,0,1,-1,1,-1,8],[8,17,true,false,false,false,0,1,-1,1,-1,8],[8,12,true,false,false,false,0,1,-1,1,-1,8]],"f":[[1,1,true,1,5.0,13.0,1,"",0],[1,1,true,1,0.0,10.0,1,"",0],[0,0,true,1,0.0,11.0,1,"",0],[1,1,true,1,0.0,11.0,1,"",0],[1,1,true,1,1.0,11.0,1,"",0],[0,2,true,1,0.0,11.0,1,"",0],[1,1,true,1,0.0,13.0,1,"",0],[0,1,true,1,0.0,0.0,1,"",0],[0,1,true,1,0.0,13.0,1,"",0],[0,0,true,1,0.0,0.0,1,"",0]],"g":[[false,"B","I","B","S","C","O","R","P","O","BR"],[false,"B","I","U","S","C","O","R","P","D","BR"]],"h":[[0,0,0,0],[50,50,50,50],[100,50,100,50],[50,0,50,0],[50,10,50,10],[20,0,0,0]],"i":[[true,true,true,true,true,true,true,true,true,true,true,true]],"j":[],"k":["%EB%82%98%EB%88%94%EB%B0%94%EB%A5%B8%EA%B3%A0%EB%94%95","NanumBarunGothic","%EB%82%98%EB%88%94%EB%B0%94%EB%A5%B8%EA%B3%A0%EB%94%95+Light","NanumBarunGothic+Light","%EB%82%98%EB%88%94%EB%B0%94%EB%A5%B8%EA%B3%A0%EB%94%95+UltraLight","NanumBarunGothic+UltraLight","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95+ExtraBold","NanumGothicExtraBold","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95","NanumGothic","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95%EC%BD%94%EB%94%A9","NanumGothicCoding","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95%EC%BD%94%EB%94%A9-Bold","%EB%82%98%EB%88%94%EB%AA%85%EC%A1%B0","NanumMyeongjo","%EB%82%98%EB%88%94%EB%AA%85%EC%A1%B0+Bold","%EB%82%98%EB%88%94%EB%AA%85%EC%A1%B0+ExtraBold","NanumMyeongjoExtraBold"]},"h":[1,1],"i":2,"j":[0,150,348,477,675,1204,1369,1629,1827,1831,2000],"k":false,"l":[],"m":"","n":"","o":[{"a":"","b":1,"c":[0,150,348,477,675,1204,1369,1629,1827,1831,2000]}],"p":[false,false],"r":{},"s":"D%3A%5Cdv%5Cworkspaceforsts%5Cfairnet%5Csrc%5Cmain%5Cwebapp%5CWEB-INF%5Cclipreport4%2Ftemp%2F%5C14886cdc492c44e4b832fbf81db6ff942fc16834e48e49d2a4a83fe624edeb71",,"t":"D%3A%5Cdv%5Cworkspaceforsts%5Cfairnet%5Csrc%5Cmain%5Cwebapp%5CWEB-INF%5Cclipreport4%2Ftemp%2F%5C14886cdc492c44e4b832fbf81db6ff947debc9f233a24510884f265bc51d5491",} \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/clipreport4/temp/14886cdc492c44e4b832fbf81db6ff94end b/src/main/webapp/WEB-INF/clipreport4/temp/14886cdc492c44e4b832fbf81db6ff94end new file mode 100644 index 00000000..e32b0df9 --- /dev/null +++ b/src/main/webapp/WEB-INF/clipreport4/temp/14886cdc492c44e4b832fbf81db6ff94end @@ -0,0 +1 @@ +end \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/clipreport4/temp/14886cdc492c44e4b832fbf81db6ff94page0 b/src/main/webapp/WEB-INF/clipreport4/temp/14886cdc492c44e4b832fbf81db6ff94page0 new file mode 100644 index 00000000..db5ab757 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/temp/14886cdc492c44e4b832fbf81db6ff94page0 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/temp/14886cdc492c44e4b832fbf81db6ff94page1 b/src/main/webapp/WEB-INF/clipreport4/temp/14886cdc492c44e4b832fbf81db6ff94page1 new file mode 100644 index 00000000..bd16f832 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/temp/14886cdc492c44e4b832fbf81db6ff94page1 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/temp/5fa3a4fc92e9458a8a8e6d14488c060b25a8a201e4874822b9452b0e6ca41f43 b/src/main/webapp/WEB-INF/clipreport4/temp/5fa3a4fc92e9458a8a8e6d14488c060b25a8a201e4874822b9452b0e6ca41f43 new file mode 100644 index 00000000..f8b2155a Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/temp/5fa3a4fc92e9458a8a8e6d14488c060b25a8a201e4874822b9452b0e6ca41f43 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/temp/5fa3a4fc92e9458a8a8e6d14488c060bb04da770fd4c49feb41d8df7568e53e7 b/src/main/webapp/WEB-INF/clipreport4/temp/5fa3a4fc92e9458a8a8e6d14488c060bb04da770fd4c49feb41d8df7568e53e7 new file mode 100644 index 00000000..920d3fda Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/temp/5fa3a4fc92e9458a8a8e6d14488c060bb04da770fd4c49feb41d8df7568e53e7 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/temp/5fa3a4fc92e9458a8a8e6d14488c060bcount b/src/main/webapp/WEB-INF/clipreport4/temp/5fa3a4fc92e9458a8a8e6d14488c060bcount new file mode 100644 index 00000000..514a207e --- /dev/null +++ b/src/main/webapp/WEB-INF/clipreport4/temp/5fa3a4fc92e9458a8a8e6d14488c060bcount @@ -0,0 +1 @@ +{"count":1,"endReport":true,"error":false} \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/clipreport4/temp/5fa3a4fc92e9458a8a8e6d14488c060bdocument b/src/main/webapp/WEB-INF/clipreport4/temp/5fa3a4fc92e9458a8a8e6d14488c060bdocument new file mode 100644 index 00000000..0e81a946 --- /dev/null +++ b/src/main/webapp/WEB-INF/clipreport4/temp/5fa3a4fc92e9458a8a8e6d14488c060bdocument @@ -0,0 +1 @@ +{"a":"1.0.0.71","b":"","c":"","d":"","e":"","f":"","g":{"a":[[1,2100,2970,0,50,50,50,50,1,0]],"b":[],"c":[[1,16777215,0,0,0,16777215,16777215],[1,16777215,0,0,0,16777215,0]],"d":[[0,0,0],[1,75,0],[0,0,0],[0,0,0]],"e":[[8,14,true,false,false,false,0,1,-1,1,-1,8],[8,11,false,false,false,false,0,1,-1,1,-1,8],[8,14,false,false,false,false,0,1,-1,1,-1,8],[8,17,true,false,false,false,0,1,-1,1,-1,8],[8,12,true,false,false,false,0,1,-1,1,-1,8]],"f":[[1,1,true,1,5.0,13.0,1,"",0],[1,1,true,1,0.0,10.0,1,"",0],[0,0,true,1,0.0,11.0,1,"",0],[1,1,true,1,0.0,11.0,1,"",0],[1,1,true,1,1.0,11.0,1,"",0],[0,2,true,1,0.0,11.0,1,"",0],[1,1,true,1,0.0,13.0,1,"",0],[0,1,true,1,0.0,0.0,1,"",0],[0,1,true,1,0.0,13.0,1,"",0],[0,0,true,1,0.0,0.0,1,"",0]],"g":[[false,"B","I","B","S","C","O","R","P","O","BR"],[false,"B","I","U","S","C","O","R","P","D","BR"]],"h":[[0,0,0,0],[50,50,50,50],[100,50,100,50],[50,0,50,0],[50,10,50,10],[20,0,0,0]],"i":[[true,true,true,true,true,true,true,true,true,true,true,true]],"j":[],"k":["%EB%82%98%EB%88%94%EB%B0%94%EB%A5%B8%EA%B3%A0%EB%94%95","NanumBarunGothic","%EB%82%98%EB%88%94%EB%B0%94%EB%A5%B8%EA%B3%A0%EB%94%95+Light","NanumBarunGothic+Light","%EB%82%98%EB%88%94%EB%B0%94%EB%A5%B8%EA%B3%A0%EB%94%95+UltraLight","NanumBarunGothic+UltraLight","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95+ExtraBold","NanumGothicExtraBold","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95","NanumGothic","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95%EC%BD%94%EB%94%A9","NanumGothicCoding","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95%EC%BD%94%EB%94%A9-Bold","%EB%82%98%EB%88%94%EB%AA%85%EC%A1%B0","NanumMyeongjo","%EB%82%98%EB%88%94%EB%AA%85%EC%A1%B0+Bold","%EB%82%98%EB%88%94%EB%AA%85%EC%A1%B0+ExtraBold","NanumMyeongjoExtraBold"]},"h":[1],"i":1,"j":[0,150,348,477,675,1204,1369,1629,1827,2000],"k":false,"l":[],"m":"","n":"","o":[{"a":"","b":1,"c":[0,150,348,477,675,1204,1369,1629,1827,2000]}],"p":[false],"r":{},"s":"D%3A%5Cdv%5Cworkspaceforsts%5Cfairnet%5Csrc%5Cmain%5Cwebapp%5CWEB-INF%5Cclipreport4%2Ftemp%2F%5C5fa3a4fc92e9458a8a8e6d14488c060b25a8a201e4874822b9452b0e6ca41f43",,"t":"D%3A%5Cdv%5Cworkspaceforsts%5Cfairnet%5Csrc%5Cmain%5Cwebapp%5CWEB-INF%5Cclipreport4%2Ftemp%2F%5C5fa3a4fc92e9458a8a8e6d14488c060bb04da770fd4c49feb41d8df7568e53e7",} \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/clipreport4/temp/5fa3a4fc92e9458a8a8e6d14488c060bend b/src/main/webapp/WEB-INF/clipreport4/temp/5fa3a4fc92e9458a8a8e6d14488c060bend new file mode 100644 index 00000000..e32b0df9 --- /dev/null +++ b/src/main/webapp/WEB-INF/clipreport4/temp/5fa3a4fc92e9458a8a8e6d14488c060bend @@ -0,0 +1 @@ +end \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/clipreport4/temp/5fa3a4fc92e9458a8a8e6d14488c060bpage0 b/src/main/webapp/WEB-INF/clipreport4/temp/5fa3a4fc92e9458a8a8e6d14488c060bpage0 new file mode 100644 index 00000000..5a9120dc Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/temp/5fa3a4fc92e9458a8a8e6d14488c060bpage0 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/temp/66ef7c561bbc48a1b31052e27d77043bb6aaf0e372d14cea9d64b25ec58f008c b/src/main/webapp/WEB-INF/clipreport4/temp/66ef7c561bbc48a1b31052e27d77043bb6aaf0e372d14cea9d64b25ec58f008c new file mode 100644 index 00000000..f8b2155a Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/temp/66ef7c561bbc48a1b31052e27d77043bb6aaf0e372d14cea9d64b25ec58f008c differ diff --git a/src/main/webapp/WEB-INF/clipreport4/temp/66ef7c561bbc48a1b31052e27d77043bc03ec1e197974ddb9b1f7759ac356ff3 b/src/main/webapp/WEB-INF/clipreport4/temp/66ef7c561bbc48a1b31052e27d77043bc03ec1e197974ddb9b1f7759ac356ff3 new file mode 100644 index 00000000..920d3fda Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/temp/66ef7c561bbc48a1b31052e27d77043bc03ec1e197974ddb9b1f7759ac356ff3 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/temp/66ef7c561bbc48a1b31052e27d77043bcount b/src/main/webapp/WEB-INF/clipreport4/temp/66ef7c561bbc48a1b31052e27d77043bcount new file mode 100644 index 00000000..f19a28d5 --- /dev/null +++ b/src/main/webapp/WEB-INF/clipreport4/temp/66ef7c561bbc48a1b31052e27d77043bcount @@ -0,0 +1 @@ +{"count":2,"endReport":true,"error":false} \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/clipreport4/temp/66ef7c561bbc48a1b31052e27d77043bdocument b/src/main/webapp/WEB-INF/clipreport4/temp/66ef7c561bbc48a1b31052e27d77043bdocument new file mode 100644 index 00000000..0df0b672 --- /dev/null +++ b/src/main/webapp/WEB-INF/clipreport4/temp/66ef7c561bbc48a1b31052e27d77043bdocument @@ -0,0 +1 @@ +{"a":"1.0.0.71","b":"","c":"","d":"","e":"","f":"","g":{"a":[[1,2100,2970,0,50,50,50,50,1,0]],"b":[],"c":[[1,16777215,0,0,0,16777215,16777215],[1,16777215,0,0,0,16777215,0]],"d":[[0,0,0],[1,75,0],[0,0,0],[0,0,0]],"e":[[8,14,true,false,false,false,0,1,-1,1,-1,8],[8,11,false,false,false,false,0,1,-1,1,-1,8],[8,14,false,false,false,false,0,1,-1,1,-1,8],[8,17,true,false,false,false,0,1,-1,1,-1,8],[8,12,true,false,false,false,0,1,-1,1,-1,8]],"f":[[1,1,true,1,5.0,13.0,1,"",0],[1,1,true,1,0.0,10.0,1,"",0],[0,0,true,1,0.0,11.0,1,"",0],[1,1,true,1,0.0,11.0,1,"",0],[1,1,true,1,1.0,11.0,1,"",0],[0,2,true,1,0.0,11.0,1,"",0],[1,1,true,1,0.0,13.0,1,"",0],[0,1,true,1,0.0,0.0,1,"",0],[0,1,true,1,0.0,13.0,1,"",0],[0,0,true,1,0.0,0.0,1,"",0]],"g":[[false,"B","I","B","S","C","O","R","P","O","BR"],[false,"B","I","U","S","C","O","R","P","D","BR"]],"h":[[0,0,0,0],[50,50,50,50],[100,50,100,50],[50,0,50,0],[50,10,50,10],[20,0,0,0]],"i":[[true,true,true,true,true,true,true,true,true,true,true,true]],"j":[],"k":["%EB%82%98%EB%88%94%EB%B0%94%EB%A5%B8%EA%B3%A0%EB%94%95","NanumBarunGothic","%EB%82%98%EB%88%94%EB%B0%94%EB%A5%B8%EA%B3%A0%EB%94%95+Light","NanumBarunGothic+Light","%EB%82%98%EB%88%94%EB%B0%94%EB%A5%B8%EA%B3%A0%EB%94%95+UltraLight","NanumBarunGothic+UltraLight","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95+ExtraBold","NanumGothicExtraBold","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95","NanumGothic","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95%EC%BD%94%EB%94%A9","NanumGothicCoding","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95%EC%BD%94%EB%94%A9-Bold","%EB%82%98%EB%88%94%EB%AA%85%EC%A1%B0","NanumMyeongjo","%EB%82%98%EB%88%94%EB%AA%85%EC%A1%B0+Bold","%EB%82%98%EB%88%94%EB%AA%85%EC%A1%B0+ExtraBold","NanumMyeongjoExtraBold"]},"h":[1,1],"i":2,"j":[0,150,348,477,675,1204,1369,1629,1827,1831,2000],"k":false,"l":[],"m":"","n":"","o":[{"a":"","b":1,"c":[0,150,348,477,675,1204,1369,1629,1827,1831,2000]}],"p":[false,false],"r":{},"s":"D%3A%5Cdv%5Cworkspaceforsts%5Cfairnet%5Csrc%5Cmain%5Cwebapp%5CWEB-INF%5Cclipreport4%2Ftemp%2F%5C66ef7c561bbc48a1b31052e27d77043bb6aaf0e372d14cea9d64b25ec58f008c",,"t":"D%3A%5Cdv%5Cworkspaceforsts%5Cfairnet%5Csrc%5Cmain%5Cwebapp%5CWEB-INF%5Cclipreport4%2Ftemp%2F%5C66ef7c561bbc48a1b31052e27d77043bc03ec1e197974ddb9b1f7759ac356ff3",} \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/clipreport4/temp/66ef7c561bbc48a1b31052e27d77043bend b/src/main/webapp/WEB-INF/clipreport4/temp/66ef7c561bbc48a1b31052e27d77043bend new file mode 100644 index 00000000..e32b0df9 --- /dev/null +++ b/src/main/webapp/WEB-INF/clipreport4/temp/66ef7c561bbc48a1b31052e27d77043bend @@ -0,0 +1 @@ +end \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/clipreport4/temp/66ef7c561bbc48a1b31052e27d77043bpage0 b/src/main/webapp/WEB-INF/clipreport4/temp/66ef7c561bbc48a1b31052e27d77043bpage0 new file mode 100644 index 00000000..d185f896 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/temp/66ef7c561bbc48a1b31052e27d77043bpage0 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/temp/66ef7c561bbc48a1b31052e27d77043bpage1 b/src/main/webapp/WEB-INF/clipreport4/temp/66ef7c561bbc48a1b31052e27d77043bpage1 new file mode 100644 index 00000000..bd16f832 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/temp/66ef7c561bbc48a1b31052e27d77043bpage1 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/temp/aafc4440d4244a79abf0071caa66f3e79d09831101a3483d953aa6b93223fbc8 b/src/main/webapp/WEB-INF/clipreport4/temp/aafc4440d4244a79abf0071caa66f3e79d09831101a3483d953aa6b93223fbc8 new file mode 100644 index 00000000..f8b2155a Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/temp/aafc4440d4244a79abf0071caa66f3e79d09831101a3483d953aa6b93223fbc8 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/temp/aafc4440d4244a79abf0071caa66f3e7bee00bdf7e3145cbba6b17e4f49672ee b/src/main/webapp/WEB-INF/clipreport4/temp/aafc4440d4244a79abf0071caa66f3e7bee00bdf7e3145cbba6b17e4f49672ee new file mode 100644 index 00000000..920d3fda Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/temp/aafc4440d4244a79abf0071caa66f3e7bee00bdf7e3145cbba6b17e4f49672ee differ diff --git a/src/main/webapp/WEB-INF/clipreport4/temp/aafc4440d4244a79abf0071caa66f3e7count b/src/main/webapp/WEB-INF/clipreport4/temp/aafc4440d4244a79abf0071caa66f3e7count new file mode 100644 index 00000000..f19a28d5 --- /dev/null +++ b/src/main/webapp/WEB-INF/clipreport4/temp/aafc4440d4244a79abf0071caa66f3e7count @@ -0,0 +1 @@ +{"count":2,"endReport":true,"error":false} \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/clipreport4/temp/aafc4440d4244a79abf0071caa66f3e7document b/src/main/webapp/WEB-INF/clipreport4/temp/aafc4440d4244a79abf0071caa66f3e7document new file mode 100644 index 00000000..3325569b --- /dev/null +++ b/src/main/webapp/WEB-INF/clipreport4/temp/aafc4440d4244a79abf0071caa66f3e7document @@ -0,0 +1 @@ +{"a":"1.0.0.71","b":"","c":"","d":"","e":"","f":"","g":{"a":[[1,2100,2970,0,50,50,50,50,1,0]],"b":[],"c":[[1,16777215,0,0,0,16777215,16777215],[1,16777215,0,0,0,16777215,0]],"d":[[0,0,0],[1,75,0],[0,0,0],[0,0,0]],"e":[[8,14,true,false,false,false,0,1,-1,1,-1,8],[8,11,false,false,false,false,0,1,-1,1,-1,8],[8,14,false,false,false,false,0,1,-1,1,-1,8],[8,17,true,false,false,false,0,1,-1,1,-1,8],[8,12,true,false,false,false,0,1,-1,1,-1,8]],"f":[[1,1,true,1,5.0,13.0,1,"",0],[1,1,true,1,0.0,10.0,1,"",0],[0,0,true,1,0.0,11.0,1,"",0],[1,1,true,1,0.0,11.0,1,"",0],[1,1,true,1,1.0,11.0,1,"",0],[0,2,true,1,0.0,11.0,1,"",0],[1,1,true,1,0.0,13.0,1,"",0],[0,1,true,1,0.0,0.0,1,"",0],[0,1,true,1,0.0,13.0,1,"",0],[0,0,true,1,0.0,0.0,1,"",0]],"g":[[false,"B","I","B","S","C","O","R","P","O","BR"],[false,"B","I","U","S","C","O","R","P","D","BR"]],"h":[[0,0,0,0],[50,50,50,50],[100,50,100,50],[50,0,50,0],[50,10,50,10],[20,0,0,0]],"i":[[true,true,true,true,true,true,true,true,true,true,true,true]],"j":[],"k":["%EB%82%98%EB%88%94%EB%B0%94%EB%A5%B8%EA%B3%A0%EB%94%95","NanumBarunGothic","%EB%82%98%EB%88%94%EB%B0%94%EB%A5%B8%EA%B3%A0%EB%94%95+Light","NanumBarunGothic+Light","%EB%82%98%EB%88%94%EB%B0%94%EB%A5%B8%EA%B3%A0%EB%94%95+UltraLight","NanumBarunGothic+UltraLight","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95+ExtraBold","NanumGothicExtraBold","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95","NanumGothic","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95%EC%BD%94%EB%94%A9","NanumGothicCoding","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95%EC%BD%94%EB%94%A9-Bold","%EB%82%98%EB%88%94%EB%AA%85%EC%A1%B0","NanumMyeongjo","%EB%82%98%EB%88%94%EB%AA%85%EC%A1%B0+Bold","%EB%82%98%EB%88%94%EB%AA%85%EC%A1%B0+ExtraBold","NanumMyeongjoExtraBold"]},"h":[1,1],"i":2,"j":[0,150,348,477,675,1204,1369,1629,1827,1831,2000],"k":false,"l":[],"m":"","n":"","o":[{"a":"","b":1,"c":[0,150,348,477,675,1204,1369,1629,1827,1831,2000]}],"p":[false,false],"r":{},"s":"D%3A%5Cdv%5Cworkspaceforsts%5Cfairnet%5Csrc%5Cmain%5Cwebapp%5CWEB-INF%5Cclipreport4%2Ftemp%2F%5Caafc4440d4244a79abf0071caa66f3e79d09831101a3483d953aa6b93223fbc8",,"t":"D%3A%5Cdv%5Cworkspaceforsts%5Cfairnet%5Csrc%5Cmain%5Cwebapp%5CWEB-INF%5Cclipreport4%2Ftemp%2F%5Caafc4440d4244a79abf0071caa66f3e7bee00bdf7e3145cbba6b17e4f49672ee",} \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/clipreport4/temp/aafc4440d4244a79abf0071caa66f3e7end b/src/main/webapp/WEB-INF/clipreport4/temp/aafc4440d4244a79abf0071caa66f3e7end new file mode 100644 index 00000000..e32b0df9 --- /dev/null +++ b/src/main/webapp/WEB-INF/clipreport4/temp/aafc4440d4244a79abf0071caa66f3e7end @@ -0,0 +1 @@ +end \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/clipreport4/temp/aafc4440d4244a79abf0071caa66f3e7page0 b/src/main/webapp/WEB-INF/clipreport4/temp/aafc4440d4244a79abf0071caa66f3e7page0 new file mode 100644 index 00000000..d185f896 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/temp/aafc4440d4244a79abf0071caa66f3e7page0 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/temp/aafc4440d4244a79abf0071caa66f3e7page1 b/src/main/webapp/WEB-INF/clipreport4/temp/aafc4440d4244a79abf0071caa66f3e7page1 new file mode 100644 index 00000000..bd16f832 Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/temp/aafc4440d4244a79abf0071caa66f3e7page1 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/temp/ef98d45c9eeb4ab8b07a9b1d4bbdc41369ca681dbfe44ec886d801c5a773e639 b/src/main/webapp/WEB-INF/clipreport4/temp/ef98d45c9eeb4ab8b07a9b1d4bbdc41369ca681dbfe44ec886d801c5a773e639 new file mode 100644 index 00000000..f8b2155a Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/temp/ef98d45c9eeb4ab8b07a9b1d4bbdc41369ca681dbfe44ec886d801c5a773e639 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/temp/ef98d45c9eeb4ab8b07a9b1d4bbdc413a9fc8facfd1d465c9b422f3193355681 b/src/main/webapp/WEB-INF/clipreport4/temp/ef98d45c9eeb4ab8b07a9b1d4bbdc413a9fc8facfd1d465c9b422f3193355681 new file mode 100644 index 00000000..920d3fda Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/temp/ef98d45c9eeb4ab8b07a9b1d4bbdc413a9fc8facfd1d465c9b422f3193355681 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/temp/ef98d45c9eeb4ab8b07a9b1d4bbdc413count b/src/main/webapp/WEB-INF/clipreport4/temp/ef98d45c9eeb4ab8b07a9b1d4bbdc413count new file mode 100644 index 00000000..f19a28d5 --- /dev/null +++ b/src/main/webapp/WEB-INF/clipreport4/temp/ef98d45c9eeb4ab8b07a9b1d4bbdc413count @@ -0,0 +1 @@ +{"count":2,"endReport":true,"error":false} \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/clipreport4/temp/ef98d45c9eeb4ab8b07a9b1d4bbdc413document b/src/main/webapp/WEB-INF/clipreport4/temp/ef98d45c9eeb4ab8b07a9b1d4bbdc413document new file mode 100644 index 00000000..47c7fb40 --- /dev/null +++ b/src/main/webapp/WEB-INF/clipreport4/temp/ef98d45c9eeb4ab8b07a9b1d4bbdc413document @@ -0,0 +1 @@ +{"a":"1.0.0.71","b":"","c":"","d":"","e":"","f":"","g":{"a":[[1,2100,2970,0,50,50,50,50,1,0]],"b":[],"c":[[1,16777215,0,0,0,16777215,16777215],[1,16777215,0,0,0,16777215,0]],"d":[[0,0,0],[1,75,0],[0,0,0],[0,0,0]],"e":[[8,14,true,false,false,false,0,1,-1,1,-1,8],[8,11,false,false,false,false,0,1,-1,1,-1,8],[8,14,false,false,false,false,0,1,-1,1,-1,8],[8,17,true,false,false,false,0,1,-1,1,-1,8],[8,12,true,false,false,false,0,1,-1,1,-1,8]],"f":[[1,1,true,1,5.0,13.0,1,"",0],[1,1,true,1,0.0,10.0,1,"",0],[0,0,true,1,0.0,11.0,1,"",0],[1,1,true,1,0.0,11.0,1,"",0],[1,1,true,1,1.0,11.0,1,"",0],[0,2,true,1,0.0,11.0,1,"",0],[1,1,true,1,0.0,13.0,1,"",0],[0,1,true,1,0.0,0.0,1,"",0],[0,1,true,1,0.0,13.0,1,"",0],[0,0,true,1,0.0,0.0,1,"",0]],"g":[[false,"B","I","B","S","C","O","R","P","O","BR"],[false,"B","I","U","S","C","O","R","P","D","BR"]],"h":[[0,0,0,0],[50,50,50,50],[100,50,100,50],[50,0,50,0],[50,10,50,10],[20,0,0,0]],"i":[[true,true,true,true,true,true,true,true,true,true,true,true]],"j":[],"k":["%EB%82%98%EB%88%94%EB%B0%94%EB%A5%B8%EA%B3%A0%EB%94%95","NanumBarunGothic","%EB%82%98%EB%88%94%EB%B0%94%EB%A5%B8%EA%B3%A0%EB%94%95+Light","NanumBarunGothic+Light","%EB%82%98%EB%88%94%EB%B0%94%EB%A5%B8%EA%B3%A0%EB%94%95+UltraLight","NanumBarunGothic+UltraLight","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95+ExtraBold","NanumGothicExtraBold","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95","NanumGothic","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95%EC%BD%94%EB%94%A9","NanumGothicCoding","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95%EC%BD%94%EB%94%A9-Bold","%EB%82%98%EB%88%94%EB%AA%85%EC%A1%B0","NanumMyeongjo","%EB%82%98%EB%88%94%EB%AA%85%EC%A1%B0+Bold","%EB%82%98%EB%88%94%EB%AA%85%EC%A1%B0+ExtraBold","NanumMyeongjoExtraBold"]},"h":[1,1],"i":2,"j":[0,150,348,477,675,1204,1369,1629,1827,1831,2000],"k":false,"l":[],"m":"","n":"","o":[{"a":"","b":1,"c":[0,150,348,477,675,1204,1369,1629,1827,1831,2000]}],"p":[false,false],"r":{},"s":"D%3A%5Cdv%5Cworkspaceforsts%5Cfairnet%5Csrc%5Cmain%5Cwebapp%5CWEB-INF%5Cclipreport4%2Ftemp%2F%5Cef98d45c9eeb4ab8b07a9b1d4bbdc41369ca681dbfe44ec886d801c5a773e639",,"t":"D%3A%5Cdv%5Cworkspaceforsts%5Cfairnet%5Csrc%5Cmain%5Cwebapp%5CWEB-INF%5Cclipreport4%2Ftemp%2F%5Cef98d45c9eeb4ab8b07a9b1d4bbdc413a9fc8facfd1d465c9b422f3193355681",} \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/clipreport4/temp/ef98d45c9eeb4ab8b07a9b1d4bbdc413end b/src/main/webapp/WEB-INF/clipreport4/temp/ef98d45c9eeb4ab8b07a9b1d4bbdc413end new file mode 100644 index 00000000..e32b0df9 --- /dev/null +++ b/src/main/webapp/WEB-INF/clipreport4/temp/ef98d45c9eeb4ab8b07a9b1d4bbdc413end @@ -0,0 +1 @@ +end \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/clipreport4/temp/ef98d45c9eeb4ab8b07a9b1d4bbdc413page0 b/src/main/webapp/WEB-INF/clipreport4/temp/ef98d45c9eeb4ab8b07a9b1d4bbdc413page0 new file mode 100644 index 00000000..f400269d Binary files /dev/null and b/src/main/webapp/WEB-INF/clipreport4/temp/ef98d45c9eeb4ab8b07a9b1d4bbdc413page0 differ diff --git a/src/main/webapp/WEB-INF/clipreport4/temp/ef98d45c9eeb4ab8b07a9b1d4bbdc413page1 b/src/main/webapp/WEB-INF/clipreport4/temp/ef98d45c9eeb4ab8b07a9b1d4bbdc413page1 new file mode 100644 index 00000000..448a0429 --- /dev/null +++ b/src/main/webapp/WEB-INF/clipreport4/temp/ef98d45c9eeb4ab8b07a9b1d4bbdc413page1 @@ -0,0 +1,7 @@ +ld/1Vj;ncmiθTD ϫKS̞KttAYށyOYgkQdCfQ=+{ v.➂Lm&q'^wFF}jEs&7266yX܆XWi z5/7L 4 +i8|}oe汏#Go/Cw"ʻϓlH4IdE]݊Zbj2')T,YudZX.}h$5R[$XPW@!eFS`lD&"=;ɎwQSlN}l[7=OI' +:PTe +{س$nh8W$O)&ky09rc[%Wf_O~%< +6s+!Jz~yπP"Ix +n + p@fXo㤺&0dijJk H"nHl sd%+XheҀG \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/ClipReport4/Clip.jsp b/src/main/webapp/WEB-INF/jsp/ClipReport4/Clip.jsp new file mode 100644 index 00000000..491c7a3b --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/ClipReport4/Clip.jsp @@ -0,0 +1,131 @@ +<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> +<%@ taglib uri="http://www.springframework.org/tags/form" prefix="form"%> +<%@page import="java.io.OutputStream"%> +<%@ page import="java.io.File"%> +<%@ page import="com.clipsoft.clipreport.server.service.*" %> +<%@ page import="com.clipsoft.clipreport.server.service.export.*" %> +<%@ page import="com.clipsoft.clipreport.server.service.export.save.SAVEReport" %> +<%@ page import="com.clipsoft.clipreport.server.service.html.PrintHTML" %> +<%@ page import="com.clipsoft.clipreport.server.service.reporteservice.*" %> +<%@page import="com.clipsoft.clipreport.server.service.eform.EFormUpdateDocument"%> +<%@page import="com.clipsoft.clipreport.server.service.eform.EFormPage"%> +<%@include file="Property.jsp"%><% +out.clear(); +out=pageContext.pushBody(); + +//크로스 도메인 설정 +//response.setHeader("Access-Control-Allow-Origin", "*"); + +//세션을 활용하여 리포트키들을 관리하지 않는 옵션 +//request.getSession().setAttribute("ClipReport-SessionList-Allow", false); + +String passName = request.getParameter("ClipID"); + +if(null != passName){ + if("R01".equals(passName)){ + NewReport newReport = new NewReport(); + newReport.doPost(request, response, propertyPath); + } + else if("R02".equals(passName)){ + Page page1 = new Page(); + page1.doPost(request, response, propertyPath); + } + else if("R03".equals(passName)){ + PageCount pageCount = new PageCount(); + pageCount.doPost(request, response, propertyPath); + } + else if("R04".equals(passName)){ + DeleteReport deleteReport = new DeleteReport(); + deleteReport.doPost(request, response); + } + else if("R05".equals(passName)){ + EXCELReport excelReport = new EXCELReport(); + excelReport.doPost(request, response); + } + else if("R06".equals(passName)){ + HTMLReport htmlReport = new HTMLReport(); + htmlReport.doPost(request, response); + } + else if("R07".equals(passName)){ + HWPReport hwpReport = new HWPReport(); + hwpReport.doPost(request, response); + } + else if("R08".equals(passName)){ + PDFReport pdfReport = new PDFReport(); + pdfReport.doPost(request, response); + } + else if("R09".equals(passName)){ + SAVEReport saveReport = new SAVEReport(); + saveReport.doPost(request, response); + + //문서 암호화를 처리하기 위해서는 jsp forward 사용 합니다. + //RequestDispatcher dispatcher = request.getRequestDispatcher("export/exportForEncryption.jsp"); + //dispatcher.forward(request, response); + + } + else if("R10".equals(passName)){ + PagePrint page1 = new PagePrint(); + page1.doPost(request, response); + } + else if("R11".equals(passName)){ + UpDatePage page1 = new UpDatePage(); + page1.doPost(request, response); + } + +// else if("R15".equals(passName)){ +// PrintHTML printHTML = new PrintHTML(); +// printHTML.doPost(request, response); +// } + + else if ("R16".equals(passName)) { + FileDownLoadCheck fileCheck = new FileDownLoadCheck(); + fileCheck.doPost(request, response); + } + else if ("R17".equals(passName)) { + PageImage pageImage = new PageImage(); + pageImage.doPost(request, response); + } + else if("R30".equals(passName)){ + EFormPage eformPage = new EFormPage(); + eformPage.doPost(request, response, propertyPath); + } + else if("R31".equals(passName)){ + EFormUpdateDocument eformUpDate = new EFormUpdateDocument(); + eformUpDate.doPost(request, response); + } + + else if ("R50".equals(passName)) { + PrintLicense printLicense = new PrintLicense(); + printLicense.doPost(request, response, propertyPath); + } + else if ("R51".equals(passName)) { + UpdateLicense updateLicense = new UpdateLicense(); + updateLicense.doPost(request, response, propertyPath); + } + else if ("R52".equals(passName)) { + ConfigurationAuthorization authorization = new ConfigurationAuthorization(); + authorization.doPost(request, response, propertyPath); + } + else if("R99".equals(passName)){ + SVGExport svgExport = new SVGExport(); + svgExport.doPost(request, response); + } + else if ("S01".equals(passName)){ + StringBuffer sessionCookie = new StringBuffer(); + Cookie[] cookies = request.getCookies(); + if(cookies != null) { + for (int i = 0; i < cookies.length; i++) { + Cookie cookie = cookies[i]; + sessionCookie.append(cookie.getName() + "=" + cookie.getValue() + ";"); + } + } + + OutputStream outputStream = response.getOutputStream(); + outputStream.write(sessionCookie.toString().getBytes("UTF-8")); + outputStream.flush(); + outputStream.close(); + } + + // Report +} +%> \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/ClipReport4/ClipAndCAB.jsp b/src/main/webapp/WEB-INF/jsp/ClipReport4/ClipAndCAB.jsp new file mode 100644 index 00000000..5c940691 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/ClipReport4/ClipAndCAB.jsp @@ -0,0 +1,117 @@ +<%@page import="java.io.OutputStream"%> +<%@page import="java.io.FileInputStream"%> +<%@ page import="java.io.File"%> +<%@ page import="com.clipsoft.clipreport.server.service.*" %> +<%@ page import="com.clipsoft.clipreport.server.service.export.*" %> +<%@ page import="com.clipsoft.clipreport.server.service.export.save.SAVEReport" %> +<%@ page import="com.clipsoft.clipreport.server.service.html.PrintHTML" %> +<%@ page import="com.clipsoft.clipreport.server.service.reporteservice.*" %> +<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> +<%@include file="Property.jsp"%><% + +out.clear(); +out=pageContext.pushBody(); + +//크로스 도메인 설정 +//response.setHeader("Access-Control-Allow-Origin", "*"); + +String passName = request.getParameter("ClipID"); +if(null != passName){ + if("R01".equals(passName)){ + NewReport newReport = new NewReport(); + newReport.doPost(request, response, propertyPath); + } + else if("R02".equals(passName)){ + Page page1 = new Page(); + page1.doPost(request, response, propertyPath); + } + else if("R03".equals(passName)){ + PageCount pageCount = new PageCount(); + pageCount.doPost(request, response, propertyPath); + } + else if("R04".equals(passName)){ + DeleteReport deleteReport = new DeleteReport(); + deleteReport.doPost(request, response); + } + else if("R05".equals(passName)){ + EXCELReport excelReport = new EXCELReport(); + excelReport.doPost(request, response); + } + else if("R06".equals(passName)){ + HTMLReport htmlReport = new HTMLReport(); + htmlReport.doPost(request, response); + } + else if("R07".equals(passName)){ + HWPReport hwpReport = new HWPReport(); + hwpReport.doPost(request, response); + } + else if("R08".equals(passName)){ + ExportInfo exportInfo = ClipReportExport.reportToCAB(request, response); + int errorCode = exportInfo.getErrorCode(); + //errorCode == 0 정상 + //errorCode == 1 결과물(document) 파일을 찾을 수 없을 때 오류 + //errorCode == 2 pdf, 바코드에 사용할 html 생성시 오류 + + //저장한 pdf 파일 위치 + System.out.println(exportInfo.getExportfilePath()); + //바코드에 사용할 저장한 html 파일 위치 + System.out.println(exportInfo.getExportDataFilePath()); + + String dstFile = exportInfo.getExportfilePath(); + //DRM PDF 로 변환(변환된 파일주소를 dstFile 변수에 넣어주시면 됩니다.) + + + //변환된 pdf 클라이언트로 파일 내리기 + File downloadFile = new File(dstFile); + FileInputStream inStream = new FileInputStream(downloadFile); + // obtains response's output stream + OutputStream outStream = response.getOutputStream(); + + byte[] buffer = new byte[4096]; + int bytesRead = -1; + + while ((bytesRead = inStream.read(buffer)) != -1) { + outStream.write(buffer, 0, bytesRead); + } + + inStream.close(); + outStream.close(); + + //생성한 파일 삭제 + ClipReportExport.deleteToFile(request, exportInfo); + } + else if("R09".equals(passName)){ + SAVEReport saveReport = new SAVEReport(); + saveReport.doPost(request, response); + } + else if("R10".equals(passName)){ + PagePrint page1 = new PagePrint(); + page1.doPost(request, response); + } + else if("R11".equals(passName)){ + UpDatePage page1 = new UpDatePage(); + page1.doPost(request, response); + } +// else if("R15".equals(passName)){ +// PrintHTML printHTML = new PrintHTML(); +// printHTML.doPost(request, response); +// } + else if ("R16".equals(passName)) { + FileDownLoadCheck fileCheck = new FileDownLoadCheck(); + fileCheck.doPost(request, response); + } + else if ("R17".equals(passName)) { + PageImage pageImage = new PageImage(); + pageImage.doPost(request, response); + } + else if ("R50".equals(passName)) { + PrintLicense printLicense = new PrintLicense(); + printLicense.doPost(request, response, propertyPath); + } + else if ("R51".equals(passName)) { + UpdateLicense updateLicense = new UpdateLicense(); + updateLicense.doPost(request, response, propertyPath); + } + // Report +} +%> \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/ClipReport4/ClipAndFarsoo.jsp b/src/main/webapp/WEB-INF/jsp/ClipReport4/ClipAndFarsoo.jsp new file mode 100644 index 00000000..0d25a864 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/ClipReport4/ClipAndFarsoo.jsp @@ -0,0 +1,102 @@ +<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> +<%@ page import="java.io.File"%> +<%@ page import="com.clipsoft.clipreport.server.service.*" %> +<%@ page import="com.clipsoft.clipreport.server.service.export.*" %> +<%@ page import="com.clipsoft.clipreport.server.service.export.save.SAVEReport" %> +<%@ page import="com.clipsoft.clipreport.server.service.html.PrintHTML" %> +<%@ page import="com.clipsoft.clipreport.server.service.reporteservice.*" %> +<%@include file="Property.jsp"%><% + +out.clear(); +out=pageContext.pushBody(); + +//크로스 도메인 설정 +//response.setHeader("Access-Control-Allow-Origin", "*"); + +//세션을 활용하여 리포트키들을 관리하지 않는 옵션 +//request.getSession().setAttribute("ClipReport-SessionList-Allow", false); + +String passName = request.getParameter("ClipID"); + + +if(null != passName){ + if("R01".equals(passName)){ + NewReport newReport = new NewReport(); + newReport.doPost(request, response, propertyPath); + } + else if("R02".equals(passName)){ + Page page1 = new Page(); + page1.doPost(request, response, propertyPath); + } + else if("R03".equals(passName)){ + PageCount pageCount = new PageCount(); + pageCount.doPost(request, response, propertyPath); + } + else if("R04".equals(passName)){ + DeleteReport deleteReport = new DeleteReport(); + deleteReport.doPost(request, response); + } + else if("R05".equals(passName)){ + EXCELReport excelReport = new EXCELReport(); + excelReport.doPost(request, response); + } + else if("R06".equals(passName)){ + HTMLReport htmlReport = new HTMLReport(); + htmlReport.doPost(request, response); + } + else if("R07".equals(passName)){ + HWPReport hwpReport = new HWPReport(); + hwpReport.doPost(request, response); + } + else if("R08".equals(passName)){ + PDFReport pdfReport = new PDFReport(); + //jsp 변경한 이름을 뒤에 동일하게 넣어줍니다. + pdfReport.doPostToFarsoo(request, response, "ClipAndFarsoo.jsp"); + } + else if("R09".equals(passName)){ + SAVEReport saveReport = new SAVEReport(); + saveReport.doPost(request, response); + + //문서 암호화를 처리하기 위해서는 jsp forward 사용 합니다. + //RequestDispatcher dispatcher = request.getRequestDispatcher("export/exportForEncryption.jsp"); + //dispatcher.forward(request, response); + + } + else if("R10".equals(passName)){ + PagePrint page1 = new PagePrint(); + page1.doPost(request, response); + } + else if("R11".equals(passName)){ + UpDatePage page1 = new UpDatePage(); + page1.doPost(request, response); + } + +// else if("R15".equals(passName)){ +// PrintHTML printHTML = new PrintHTML(); +// printHTML.doPost(request, response); +// } + + else if ("R16".equals(passName)) { + FileDownLoadCheck fileCheck = new FileDownLoadCheck(); + fileCheck.doPost(request, response); + } + else if ("R17".equals(passName)) { + PageImage pageImage = new PageImage(); + pageImage.doPost(request, response); + } + + else if ("R50".equals(passName)) { + PrintLicense printLicense = new PrintLicense(); + printLicense.doPost(request, response, propertyPath); + } + else if ("R51".equals(passName)) { + UpdateLicense updateLicense = new UpdateLicense(); + updateLicense.doPost(request, response, propertyPath); + } + else if ("R52".equals(passName)) { + ConfigurationAuthorization authorization = new ConfigurationAuthorization(); + authorization.doPost(request, response, propertyPath); + } + // Report +} +%> \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/ClipReport4/ClipAndMarkAny.jsp b/src/main/webapp/WEB-INF/jsp/ClipReport4/ClipAndMarkAny.jsp new file mode 100644 index 00000000..bc53efa3 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/ClipReport4/ClipAndMarkAny.jsp @@ -0,0 +1,121 @@ +<%@page import="java.io.OutputStream"%> +<%@page import="java.io.FileInputStream"%> +<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> +<%@ page import="java.io.File"%> +<%@ page import="com.clipsoft.clipreport.server.service.*" %> +<%@ page import="com.clipsoft.clipreport.server.service.export.*" %> +<%@ page import="com.clipsoft.clipreport.server.service.export.save.SAVEReport" %> +<%@ page import="com.clipsoft.clipreport.server.service.html.PrintHTML" %> +<%@ page import="com.clipsoft.clipreport.server.service.reporteservice.*" %> +<%@include file="Property.jsp"%><% + +out.clear(); +out=pageContext.pushBody(); + +//크로스 도메인 설정 +//response.setHeader("Access-Control-Allow-Origin", "*"); + +String passName = request.getParameter("ClipID"); +if(null != passName){ + if("R01".equals(passName)){ + NewReport newReport = new NewReport(); + newReport.doPost(request, response, propertyPath); + } + else if("R02".equals(passName)){ + Page page1 = new Page(); + page1.doPost(request, response, propertyPath); + } + else if("R03".equals(passName)){ + PageCount pageCount = new PageCount(); + pageCount.doPost(request, response, propertyPath); + } + else if("R04".equals(passName)){ + DeleteReport deleteReport = new DeleteReport(); + deleteReport.doPost(request, response); + } + else if("R05".equals(passName)){ + EXCELReport excelReport = new EXCELReport(); + excelReport.doPost(request, response); + } + else if("R06".equals(passName)){ + HTMLReport htmlReport = new HTMLReport(); + htmlReport.doPost(request, response); + } + else if("R07".equals(passName)){ + HWPReport hwpReport = new HWPReport(); + hwpReport.doPost(request, response); + } + else if("R08".equals(passName)){ + //**********MarkAny print 연동부분******************* + ExportInfo exportInfo = ClipReportExport.reportToMarkAny(request, response); + int errorCode = exportInfo.getErrorCode(); + //errorCode == 0 정상 + //errorCode == 1 결과물(document) 파일을 찾을 수 없을 때 오류 + //errorCode == 2 pdf, 바코드데이터 생성시 오류 + + //저장한 pdf 파일 위치 + System.out.println(exportInfo.getExportfilePath()); + //바코드에 사용할 저장한 data 파일 위치 + System.out.println(exportInfo.getExportDataFilePath()); + //pdf 페이지 수 + System.out.println("pageCount:" + exportInfo.getPageCount()); + //바코드 좌표 + System.out.println("left:" +exportInfo.getLeft()+" right:" + exportInfo.getRight() + " top:" + exportInfo.getTop() + " bottom:" + exportInfo.getBottom()); + //세로 문서 : 0 가로 문서 : 1 + System.out.println("PaperOrientation:" + exportInfo.getPaperOrientation()); + + String dstFile = exportInfo.getExportfilePath(); + //DRM PDF 로 변환(변환된 파일주소를 dstFile 변수에 넣어주시면 됩니다.) + + //변환된 pdf 클라이언트로 파일 내리기 + File downloadFile = new File(dstFile); + FileInputStream inStream = new FileInputStream(downloadFile); + // obtains response's output stream + OutputStream outStream = response.getOutputStream(); + + byte[] buffer = new byte[4096]; + int bytesRead = -1; + + while ((bytesRead = inStream.read(buffer)) != -1) { + outStream.write(buffer, 0, bytesRead); + } + inStream.close(); + outStream.close(); + //생성한 파일 삭제 + ClipReportExport.deleteToFile(request, exportInfo); + } + else if("R09".equals(passName)){ + SAVEReport saveReport = new SAVEReport(); + saveReport.doPost(request, response); + } + else if("R10".equals(passName)){ + PagePrint page1 = new PagePrint(); + page1.doPost(request, response); + } + else if("R11".equals(passName)){ + UpDatePage page1 = new UpDatePage(); + page1.doPost(request, response); + } +// else if("R15".equals(passName)){ +// PrintHTML printHTML = new PrintHTML(); +// printHTML.doPost(request, response); +// } + else if ("R16".equals(passName)) { + FileDownLoadCheck fileCheck = new FileDownLoadCheck(); + fileCheck.doPost(request, response); + } + else if ("R17".equals(passName)) { + PageImage pageImage = new PageImage(); + pageImage.doPost(request, response); + } + else if ("R50".equals(passName)) { + PrintLicense printLicense = new PrintLicense(); + printLicense.doPost(request, response, propertyPath); + } + else if ("R51".equals(passName)) { + UpdateLicense updateLicense = new UpdateLicense(); + updateLicense.doPost(request, response, propertyPath); + } + // Report +} +%> \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/ClipReport4/ClipAndRedBC.jsp b/src/main/webapp/WEB-INF/jsp/ClipReport4/ClipAndRedBC.jsp new file mode 100644 index 00000000..66d49add --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/ClipReport4/ClipAndRedBC.jsp @@ -0,0 +1,121 @@ +<%@page import="java.io.OutputStream"%> +<%@page import="java.io.FileInputStream"%> +<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> +<%@ page import="java.io.File"%> +<%@ page import="com.clipsoft.clipreport.server.service.*" %> +<%@ page import="com.clipsoft.clipreport.server.service.export.*" %> +<%@ page import="com.clipsoft.clipreport.server.service.export.save.SAVEReport" %> +<%@ page import="com.clipsoft.clipreport.server.service.html.PrintHTML" %> +<%@ page import="com.clipsoft.clipreport.server.service.reporteservice.*" %> +<%@include file="Property.jsp"%><% + +out.clear(); +out=pageContext.pushBody(); + +//크로스 도메인 설정 +//response.setHeader("Access-Control-Allow-Origin", "*"); + +String passName = request.getParameter("ClipID"); +if(null != passName){ + if("R01".equals(passName)){ + NewReport newReport = new NewReport(); + newReport.doPost(request, response, propertyPath); + } + else if("R02".equals(passName)){ + Page page1 = new Page(); + page1.doPost(request, response, propertyPath); + } + else if("R03".equals(passName)){ + PageCount pageCount = new PageCount(); + pageCount.doPost(request, response, propertyPath); + } + else if("R04".equals(passName)){ + DeleteReport deleteReport = new DeleteReport(); + deleteReport.doPost(request, response); + } + else if("R05".equals(passName)){ + EXCELReport excelReport = new EXCELReport(); + excelReport.doPost(request, response); + } + else if("R06".equals(passName)){ + HTMLReport htmlReport = new HTMLReport(); + htmlReport.doPost(request, response); + } + else if("R07".equals(passName)){ + HWPReport hwpReport = new HWPReport(); + hwpReport.doPost(request, response); + } + else if("R08".equals(passName)){ + //**********RebBC print 연동부분******************* + ExportInfo exportInfo = ClipReportExport.reportToRedBC(request, response); + int errorCode = exportInfo.getErrorCode(); + //errorCode == 0 정상 + //errorCode == 1 결과물(document) 파일을 찾을 수 없을 때 오류 + //errorCode == 2 pdf, 바코드데이터 생성시 오류 + + //저장한 pdf 파일 위치 + System.out.println(exportInfo.getExportfilePath()); + //저장한 pdf 파일 이름 + System.out.println(exportInfo.getExportfileName()); + //바코드에 사용할 저장한 data 파일 위치 + System.out.println(exportInfo.getExportDataFilePath()); + //pdf 페이지 수 + System.out.println(exportInfo.getPageCount()); + + String dstFile = exportInfo.getExportfilePath(); + //DRM PDF 로 변환(변환된 파일주소를 dstFile 변수에 넣어주시면 됩니다.) + + + + //변환된 pdf 클라이언트로 파일 내리기 + File downloadFile = new File(dstFile); + FileInputStream inStream = new FileInputStream(downloadFile); + // obtains response's output stream + OutputStream outStream = response.getOutputStream(); + + byte[] buffer = new byte[4096]; + int bytesRead = -1; + + while ((bytesRead = inStream.read(buffer)) != -1) { + outStream.write(buffer, 0, bytesRead); + } + inStream.close(); + outStream.close(); + //생성한 파일 삭제 + ClipReportExport.deleteToFile(request, exportInfo); + } + else if("R09".equals(passName)){ + SAVEReport saveReport = new SAVEReport(); + saveReport.doPost(request, response); + } + else if("R10".equals(passName)){ + PagePrint page1 = new PagePrint(); + page1.doPost(request, response); + } + else if("R11".equals(passName)){ + UpDatePage page1 = new UpDatePage(); + page1.doPost(request, response); + } +// else if("R15".equals(passName)){ +// PrintHTML printHTML = new PrintHTML(); +// printHTML.doPost(request, response); +// } + else if ("R16".equals(passName)) { + FileDownLoadCheck fileCheck = new FileDownLoadCheck(); + fileCheck.doPost(request, response); + } + else if ("R17".equals(passName)) { + PageImage pageImage = new PageImage(); + pageImage.doPost(request, response); + } + else if ("R50".equals(passName)) { + PrintLicense printLicense = new PrintLicense(); + printLicense.doPost(request, response, propertyPath); + } + else if ("R51".equals(passName)) { + UpdateLicense updateLicense = new UpdateLicense(); + updateLicense.doPost(request, response, propertyPath); + } + // Report +} +%> \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/ClipReport4/ClipReportViewer.jsp b/src/main/webapp/WEB-INF/jsp/ClipReport4/ClipReportViewer.jsp new file mode 100644 index 00000000..38e1d004 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/ClipReport4/ClipReportViewer.jsp @@ -0,0 +1,94 @@ +<%@page import="org.apache.poi.util.SystemOutLogger"%> +<%@page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> +<%@page import="com.clipsoft.clipreport.oof.OOFFile"%> +<%@page import="com.clipsoft.clipreport.oof.OOFDocument"%> +<%@page import="java.io.File"%> +<%@page import="java.util.Enumeration"%> +<%@page import="com.clipsoft.clipreport.server.service.ReportUtil"%> +<%@ page import="java.net.URLDecoder" %> +<% +String crfNm = request.getParameter("crfNm"); +OOFDocument oof = OOFDocument.newOOF(); +OOFFile file = oof.addFile("crf.root", "%root%/crf/"+crfNm+".crf"); +// oof.addConnectionData("*","oracle1"); +oof.addConnectionData("*","XE"); + +// String requestQuery = URLDecoder.decode(request.getQueryString()); +String requestQuery = URLDecoder.decode(session.getAttribute("query_clip").toString()); + +String[] queryList = requestQuery.split("&"); + +for(int i=0; i +<%@include file="Property.jsp"%> +<% +//세션을 활용하여 리포트키들을 관리하지 않는 옵션 +//request.getSession().setAttribute("ClipReport-SessionList-Allow", false); +String resultKey = ReportUtil.createReport(request, oof, "false", "false", request.getRemoteAddr(), propertyPath); + +//oof 문서가 xml 일 경우 (oof.toString()) +//String resultKey = ReportUtil.createReport(request, oof.toString(), "false", "false", "localhost", propertyPath); + +System.out.println(">>>>>>>>>>>>>resultKey>>>>>>>>>>>>>>"+resultKey); +System.out.println(">>>>>>>>>>>>>propertyPath>>>>>>>>>>>>>>"+propertyPath); +%> + + + +Report + + + + + + + + + + + +
+ + diff --git a/src/main/webapp/WEB-INF/jsp/ClipReport4/ClipTo.jsp b/src/main/webapp/WEB-INF/jsp/ClipReport4/ClipTo.jsp new file mode 100644 index 00000000..fe4e9119 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/ClipReport4/ClipTo.jsp @@ -0,0 +1,130 @@ +<%@page import="java.util.Iterator"%> +<%@page import="java.util.Set"%> +<%@page import="java.net.HttpURLConnection"%> +<%@page import="java.util.List"%> +<%@page import="java.net.URLEncoder"%> +<%@page import="java.io.InputStream"%> +<%@page import="java.net.URL"%> +<%@page import="java.net.URLConnection"%> +<%@page import="java.io.OutputStreamWriter"%> +<%@page import="java.util.Arrays"%> +<%@page import="java.util.Map"%> +<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> +<%@ page import="java.io.File"%> +<% +out.clear(); +out=pageContext.pushBody(); + +//크로스 도메인 설정 +//response.setHeader("Access-Control-Allow-Origin", "*"); + +String ReportURL = "http://rexpert.clipsoft.kr/ClipReport/Clip.jsp"; + +StringBuffer params = new StringBuffer(); + +Map map = request.getParameterMap(); + +for (Iterator it = map.entrySet().iterator(); it.hasNext();) { + Map.Entry pairs = (Map.Entry) it.next(); + String key = (String) pairs.getKey(); + String[] value = (String[])map.get(key); + if("oof".equalsIgnoreCase(key) || "data".equalsIgnoreCase(key)){ + params.append(key).append("="); + params.append(URLEncoder.encode(value[0], "UTF-8")).append("&"); + } + else{ + params.append(key).append("=").append(value[0]).append("&"); + } +} + +ServletOutputStream outputStream = response.getOutputStream(); +OutputStreamWriter wr = null; +InputStream inputStream = null; +try{ + URL url = new URL(ReportURL); + HttpURLConnection conn = (HttpURLConnection)url.openConnection(); + conn.setDoInput(true); + conn.setDoOutput(true); + conn.setUseCaches(false); + conn.setRequestProperty("Content-Type", "application/x-www-form-urlencoded;charset=utf-8"); + if(null != session.getAttribute("ClipRSend")){ + conn.setRequestProperty("Cookie","JSESSIONID=" + session.getAttribute("ClipRSend")); + } + + wr = new OutputStreamWriter(conn.getOutputStream()); + wr.write(params.toString()); + wr.flush(); + + response.setContentType(conn.getContentType()); + String contentDisposition = conn.getHeaderField("Content-Disposition"); + + if(null != contentDisposition){ + response.setHeader("Content-Disposition", contentDisposition); + } + + Map httpResponseHeaders = conn.getHeaderFields(); + Iterator ite = httpResponseHeaders.keySet().iterator(); + while(ite.hasNext()) { + String headerFieldKey = (String) ite.next(); + if ("Set-Cookie".equalsIgnoreCase(headerFieldKey)) { + List keyList = (List) httpResponseHeaders.get(headerFieldKey); + Iterator listIter = keyList.iterator(); + while (listIter.hasNext()) { + String listValue = (String) listIter.next(); + String[] fields = listValue.split(";\\s*"); + String cookieValue = fields[0]; + if(-1 != cookieValue.indexOf("JSESSIONID")){ + String[] cookieValues = cookieValue.split("="); + //Cookie cookie = new Cookie(cookieValues[0], cookieValues[1]); + //String path = request.getParameter("path"); + //cookie.setPath(path); + //response.addCookie(cookie); + if(null == session.getAttribute("ClipRSend")){ + session.setAttribute("ClipRSend", cookieValues[1]); + } + } + else{ + String[] cookieValues = cookieValue.split("="); + session.setAttribute("ClipRSend", cookieValues[1]); + } + } + + /* + for(int ic=0; ic \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/ClipReport4/DRMVerify.jsp b/src/main/webapp/WEB-INF/jsp/ClipReport4/DRMVerify.jsp new file mode 100644 index 00000000..18951975 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/ClipReport4/DRMVerify.jsp @@ -0,0 +1,7 @@ +<%@page import="com.clipsoft.clipreport.server.service.drm.ClipReportDRM"%> +<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> +<% +out.clear(); +out=pageContext.pushBody(); +ClipReportDRM.verify(request, response); +%> \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/ClipReport4/Property.jsp b/src/main/webapp/WEB-INF/jsp/ClipReport4/Property.jsp new file mode 100644 index 00000000..ddf63652 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/ClipReport4/Property.jsp @@ -0,0 +1,6 @@ +<%@page import="java.io.File"%> +<%@ page language="java" contentType="text/html; charset=UTF-8"%> +<% + //clipreport4.properties 서버환경에 따라 파일 위치를 지정합니다. + String propertyPath = request.getSession().getServletContext().getRealPath("/") + File.separator + "WEB-INF" + File.separator + "clipreport4" + File.separator + "clipreport4.properties"; +%> \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/ClipReport4/createJSPReport.html b/src/main/webapp/WEB-INF/jsp/ClipReport4/createJSPReport.html new file mode 100644 index 00000000..edd49f73 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/ClipReport4/createJSPReport.html @@ -0,0 +1,26 @@ + + + +Report + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/ClipReport4/createJSPReport.jsp b/src/main/webapp/WEB-INF/jsp/ClipReport4/createJSPReport.jsp new file mode 100644 index 00000000..11d4378a --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/ClipReport4/createJSPReport.jsp @@ -0,0 +1,34 @@ + +<%@page import="com.clipsoft.clipreport.oof.OOFFile"%> +<%@page import="com.clipsoft.clipreport.oof.OOFDocument"%> +<%@page import="java.io.File"%> +<%@page import="java.util.Enumeration"%> +<%@page import="com.clipsoft.clipreport.server.service.ReportUtil"%> +<%@page import="com.clipsoft.org.apache.commons.lang.StringEscapeUtils"%> +<%@page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> +<%@page import="com.clipsoft.org.json.simple.JSONObject"%> +<%@page import="com.clipsoft.org.json.simple.parser.JSONParser"%> +<% +OOFDocument oof = OOFDocument.newOOF(); +OOFFile file = oof.addFile("crf.root", "%root%/crf/DBTEST.crf"); +oof.addConnectionData("*","oracle1"); + +Enumeration e = request.getParameterNames(); +int i = 0; +while (e.hasMoreElements()) { + String key = (String) e.nextElement(); + String[] Values = request.getParameterValues(key); + + if (!key.startsWith("clip.")) + continue; + + System.out.println(">>key"+i+">>"+key); + System.out.println(">>Values"+i+">>"+Values[i]); + // 배열 + oof.addField(key, Values[i]); + i++; +} +%><%@include file="Property.jsp"%><% +String resultKey = ReportUtil.createReport(request, oof, "false", "false", "localhost", propertyPath); +%> +<%=resultKey%> \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/ClipReport4/eform.jsp b/src/main/webapp/WEB-INF/jsp/ClipReport4/eform.jsp new file mode 100644 index 00000000..861afa39 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/ClipReport4/eform.jsp @@ -0,0 +1,75 @@ +<%@page import="com.clipsoft.clipreport.oof.OOFFile"%> +<%@page import="com.clipsoft.clipreport.oof.OOFDocument"%> +<%@page import="java.io.File"%> +<%@page import="com.clipsoft.clipreport.server.service.ReportUtil"%> +<%@page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> +<% +OOFDocument oof = OOFDocument.newOOF(); +OOFFile file = oof.addFile("crfe.root", "%root%/crf/CLIP.crfe"); +%><%@include file="Property.jsp"%><% +//세션을 활용하여 리포트키들을 관리하지 않는 옵션 +//request.getSession().setAttribute("ClipReport-SessionList-Allow", false); +String resultKey = ReportUtil.createEForm(request, oof, "false", "false", request.getRemoteAddr(), propertyPath); +//oof 문서가 xml 일 경우 (oof.toString()) +//String resultKey = ReportUtil.createEForm(request, oof.toString(), "false", "false", "localhost", propertyPath); +%> + + + +EForm + + + + + + + + + + + + + +
+ + diff --git a/src/main/webapp/WEB-INF/jsp/ClipReport4/exportCAB.jsp b/src/main/webapp/WEB-INF/jsp/ClipReport4/exportCAB.jsp new file mode 100644 index 00000000..1deffab0 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/ClipReport4/exportCAB.jsp @@ -0,0 +1,64 @@ +<%@page import="com.clipsoft.clipreport.server.service.ClipReportPDFForCAB"%> +<%@page import="com.clipsoft.clipreport.oof.OOFFile"%> +<%@page import="com.clipsoft.clipreport.oof.OOFDocument"%> +<%@ page import="java.util.*,java.io.*, java.lang.Integer, java.net.*" %> +<%@page import="java.io.FileInputStream"%> +<%@page import="java.io.BufferedInputStream"%> +<%@page import="com.clipsoft.clipreport.server.service.ResultValue"%> +<%@page import="com.clipsoft.clipreport.server.service.ClipReportExport"%> +<%@page import="java.io.OutputStream"%> +<%@page import="java.io.File"%> +<%@page import="java.io.FileOutputStream"%> +<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> +<%@include file="Property.jsp"%> +<% +OOFDocument oof = OOFDocument.newOOF(); +OOFFile file = oof.addFile("crf.root", "%root%/crf/CLIPtoDRM.crf"); + +//pdf 생성 및 바코드 데이터 생성 호출 메소드입니다. +ResultValue result = ClipReportPDFForCAB.create(request, propertyPath, oof.toString()); +int errorCode = result.getErrorCode(); +//errorCode == 0 정상 +//errorCode == 1 리포트 서버 오류 +//errorCode == 2 oof 문서 오류 +//errorCode == 3 리포트 엔진 오류 +//errorCode == 4 결과물(document) 파일을 찾을 수 없을 때 오류 +//errorCode == 5 pdf, html 생성시 오류 + + +//ResultValue 객체를 이용하여 연동하시면 될 것 같습니다. + +//저장된 파일 삭제 (파일을 사용하시고 아래의 메소드를 호출하시면 파일이 삭제됩니다.) +ClipReportPDFForCAB.delete(result); +%> + + + + + +연동 TEST + + +

+쉽게 보실 수 있게 html에 출력하였습니다. +


+서버에 생성된 pdf 위치 : + <%=result.getPdfFilePath()%> +
+서버에 생성된 바코드 데이터(html) 위치 : + <%=result.getDataFilePath()%> +
+ 바코드 좌표 left : + <%=result.getLeft()%> +
+ 바코드 좌표 top : + <%=result.getTop()%> +
+ 바코드 좌표 right : + <%=result.getRight()%> +
+ 바코드 좌표 bottom : + <%=result.getBottom()%> +
+ + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/ClipReport4/exportMarkAny.jsp b/src/main/webapp/WEB-INF/jsp/ClipReport4/exportMarkAny.jsp new file mode 100644 index 00000000..bbcf32fc --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/ClipReport4/exportMarkAny.jsp @@ -0,0 +1,57 @@ +<%@page import="com.clipsoft.clipreport.export.option.PDFOption"%> +<%@page import="com.clipsoft.clipreport.oof.connection.OOFConnectionHTTP"%> +<%@page import="com.clipsoft.clipreport.oof.OOFFile"%> +<%@page import="com.clipsoft.clipreport.oof.OOFDocument"%> +<%@ page import="java.util.*,java.io.*, java.text.*, java.lang.Integer, java.net.*" %> +<%@page import="java.io.FileInputStream"%> +<%@page import="java.io.BufferedInputStream"%> +<%@page import="com.clipsoft.clipreport.server.service.ResultValue"%> +<%@page import="com.clipsoft.clipreport.server.service.ClipReportPDFForMark"%> +<%@page import="com.clipsoft.clipreport.server.service.ClipReportExport"%> +<%@page import="java.io.OutputStream"%> +<%@page import="java.io.File"%> +<%@page import="java.io.FileOutputStream"%> +<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> +<%@include file="Property.jsp"%> +<% +OOFDocument oof = OOFDocument.newOOF(); +OOFFile file = oof.addFile("crf.root", "%root%/crf/CLIPtoDRM.crf"); + + +//pdf 생성할 때 옵션 +PDFOption option = new PDFOption(); +//텍스트를 이미지로 표현할지 여부 +//option.setTextToImage(true); + +ResultValue result = ClipReportPDFForMark.create(request, propertyPath, oof.toString(), option); +int errorCode = result.getErrorCode(); +//errorCode == 0 정상 +//errorCode == 1 리포트 서버 오류 +//errorCode == 2 oof 문서 오류 +//errorCode == 3 리포트 엔진 오류 +//errorCode == 4 결과물(document) 파일을 찾을 수 없을 때 오류 +//errorCode == 5 pdf, dat 생성시 오류 + +//이전 방식도 사용가능 +//ResultValue result = ClipReportPDFForMark.create(request, propertyPath, oof.toString()); + +//바코드로 만든 데이터 파일 위치 +//result.getDataFilePath(); + +//생성된 pdf 파일 위치 +//result.getPdfFilePath(); + +//바코드가 들어갈 좌표 +//result.getLeft(); +//result.getTop(); + +//문서의 세로, 가로 +//세로 0 +//가로 1 +//int paperOrientation = result.getPaperOrientation(); + + +//임시 저장 삭제 +ClipReportPDFForMark.delete(result); + +%> diff --git a/src/main/webapp/WEB-INF/jsp/ClipReport4/exportRedBC.jsp b/src/main/webapp/WEB-INF/jsp/ClipReport4/exportRedBC.jsp new file mode 100644 index 00000000..6190d6a1 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/ClipReport4/exportRedBC.jsp @@ -0,0 +1,71 @@ +<%@page import="com.clipsoft.clipreport.export.option.PDFOption"%> +<%@page import="com.clipsoft.clipreport.oof.OOFFile"%> +<%@page import="com.clipsoft.clipreport.oof.OOFDocument"%> +<%@page import="com.clipsoft.clipreport.server.service.ClipReportPDFForRedBC"%> +<%@ page import="java.util.*,java.io.*, java.lang.Integer, java.net.*" %> +<%@page import="java.io.FileInputStream"%> +<%@page import="java.io.BufferedInputStream"%> +<%@page import="com.clipsoft.clipreport.server.service.ResultValue"%> +<%@page import="com.clipsoft.clipreport.server.service.ClipReportExport"%> +<%@page import="java.io.OutputStream"%> +<%@page import="java.io.File"%> +<%@page import="java.io.FileOutputStream"%> +<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> +<%@include file="Property.jsp"%> +<% +OOFDocument oof = OOFDocument.newOOF(); +OOFFile file = oof.addFile("crf.root", "%root%/crf/CLIPtoDRM.crf"); +//pdf 생성할 때 옵션 +PDFOption option = new PDFOption(); +//텍스트를 이미지로 표현할지 여부 +//option.setTextToImage(true); + +//pdf 생성 및 바코드 데이터 생성 호출 메소드입니다. +ResultValue result = ClipReportPDFForRedBC.create(request, propertyPath, oof.toString(), option); +int errorCode = result.getErrorCode(); +//errorCode == 0 정상 +//errorCode == 1 리포트 서버 인스톨 오류 +//errorCode == 2 oof 문서 오류 +//errorCode == 3 리포트 엔진 오류 +//errorCode == 4 결과물(document) 파일을 찾을 수 없을 때 오류 +//errorCode == 5 pdf, dat 생성시 오류 + +//ResultValue 객체를 이용하여 연동하시면 될 것 같습니다. + +//저장된 파일 삭제 (파일을 사용하시고 아래의 메소드를 호출하시면 파일이 삭제됩니다.) +ClipReportPDFForRedBC.delete(result); +%> + + + + + +연동 TEST + + +

+쉽게 보실 수 있게 html에 출력하였습니다. +


+서버에 생성된 pdf 위치 : + <%=result.getPdfFilePath()%> +
+서버에 생성된 바코드 데이터 위치 : + <%=result.getDataFilePath()%> +
+ 바코드 좌표 left : + <%=result.getLeft()%> +
+ 바코드 좌표 top : + <%=result.getTop()%> +
+ 바코드 좌표 right : + <%=result.getRight()%> +
+ 바코드 좌표 bottom : + <%=result.getBottom()%> +
+ 리포트 Key: + <%=result.getKey()%> +
+ + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/ClipReport4/jdbcConnection.jsp b/src/main/webapp/WEB-INF/jsp/ClipReport4/jdbcConnection.jsp new file mode 100644 index 00000000..cd599974 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/ClipReport4/jdbcConnection.jsp @@ -0,0 +1,37 @@ +<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> +<%@ page import="java.sql.*, javax.naming.*, javax.sql.*" %><% + response.setContentType("text/html;charset=UTF-8"); + Connection conn = null; + Statement stmt = null; + + /* + ClassName + + SQL_Server 2000 - com.microsoft.jdbc.sqlserver.SQLServerDriver + SQL_Server 2005, 2008, 2012 - com.microsoft.sqlserver.jdbc.SQLServerDriver + MySQL - com.mysql.jdbc.Driver + Oracle - oracle.jdbc.driver.OracleDriver + Tibero - com.tmax.tibero.jdbc.TbDriver + + DB2(Universal JDBC Type 2, 4) - com.ibm.db2.jcc.DB2Driver + */ + + String className = ""; + + String url = ""; + String user = ""; + String password = ""; + try { + Class.forName(className); + conn = DriverManager.getConnection(url, user, password); + out.println("

JDBC Connection Success

"); + out.println("
- Product Name : " + conn.getMetaData().getDatabaseProductName() + "
"); + out.println("
- Product Version : " + conn.getMetaData().getDatabaseProductVersion() + "
"); + out.println("
- Driver Name : " + conn.getMetaData().getDriverName()+"
"); + out.println("
- Driver Version : " + conn.getMetaData().getDriverVersion()+"
"); + } catch (Exception e) { + response.getWriter().append("
Exception Message

"); + e.printStackTrace(response.getWriter()); + } + +%> \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/ClipReport4/jndiConnection.jsp b/src/main/webapp/WEB-INF/jsp/ClipReport4/jndiConnection.jsp new file mode 100644 index 00000000..32e100ff --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/ClipReport4/jndiConnection.jsp @@ -0,0 +1,20 @@ +<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> +<%@ page import="java.sql.*, javax.naming.*, javax.sql.*" %> +<% + Connection conn = null; + Statement stmt = null; + String jndiName = ""; + try { + InitialContext ctx = new InitialContext(); + DataSource ds = (DataSource) ctx.lookup(jndiName); + conn = ds.getConnection(); + out.println("
JNDI Connection Success


"); + out.println("
- Product Name : " + conn.getMetaData().getDatabaseProductName() + "
"); + out.println("
- Product Version : " + conn.getMetaData().getDatabaseProductVersion() + "
"); + out.println("
- Driver Name : " + conn.getMetaData().getDriverName()+"
"); + out.println("
- Driver Version : " + conn.getMetaData().getDriverVersion()+"
"); + } catch (Exception e) { + response.getWriter().append("
Exception Message

"); + e.printStackTrace(response.getWriter()); + } +%> \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/ClipReport4/sysinfo.jsp b/src/main/webapp/WEB-INF/jsp/ClipReport4/sysinfo.jsp new file mode 100644 index 00000000..c108488e --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/ClipReport4/sysinfo.jsp @@ -0,0 +1,116 @@ +<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> +<%@page import="java.util.*,java.text.*,java.net.InetAddress,java.text.SimpleDateFormat" %> + + + + +CLIP report Server - System Information + + + + +
+
+

1. Server Information

+
+

- Date : <%= new SimpleDateFormat("yyyy-MM-dd").format(new Date()) %>

+
+
+

- CPU Available Processors : <%= Runtime.getRuntime().availableProcessors() %>

+
+
+

- IP Address : <%= InetAddress.getLocalHost().getHostAddress() %>

+
+
+

- Remote Address : <%= request.getRemoteAddr() %>

+
+
+

- Server : <%= request.getSession().getServletContext().getServerInfo() %>

+
+
+

- Server RealPath : <%= request.getRealPath("/") %>

+
+
+

- Servlet Version : <%= application.getMajorVersion()%>.<%= application.getMinorVersion() %>

+
+
+

- Session MaxInactiveInterval : <%= request.getSession().getMaxInactiveInterval() %>

+
+
+
+

2. System Environment

+
+ + + + + + + + +
#KeyValue
+
+
+ + + <% Map env = System.getenv(); Iterator it = env.keySet().iterator(); int environmentIndex = 1; while (it.hasNext()) { String key = it.next();%> + + + + + + <% } %> + +
<%= environmentIndex++ %><%= key %><%= env.get(key) %>
+
+ +
+
+

3. System Properties

+
+ + + + + + + + +
#KeyValue
+
+
+ + + <% Enumeration properties = System.getProperties().keys(); int propertyIndex = 1; while (properties.hasMoreElements()) { %> + + <% String key = (String) properties.nextElement(); %> + + + + + <% } %> + +
<%= propertyIndex++ %><%= key %><%= System.getProperty(key) %>
+
+ + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/ClipReport4/test.html b/src/main/webapp/WEB-INF/jsp/ClipReport4/test.html new file mode 100644 index 00000000..579f624a --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/ClipReport4/test.html @@ -0,0 +1,30 @@ + + + +Report + + + + + + + + + + + + +
+ + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/ClipReport4/test.jsp b/src/main/webapp/WEB-INF/jsp/ClipReport4/test.jsp new file mode 100644 index 00000000..adf2c327 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/ClipReport4/test.jsp @@ -0,0 +1,71 @@ +<%@page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> +<%@ taglib uri="http://www.springframework.org/tags/form" prefix="form"%> +<%@page import="com.clipsoft.clipreport.oof.OOFFile"%> +<%@page import="com.clipsoft.clipreport.oof.OOFDocument"%> +<%@page import="java.io.File"%> +<%@page import="java.util.Enumeration"%> +<%@page import="com.clipsoft.clipreport.server.service.ReportUtil"%> +<% +String crfNm = request.getParameter("crfNm"); +OOFDocument oof = OOFDocument.newOOF(); +OOFFile file = oof.addFile("crf.root", "%root%/crf/"+crfNm+".crf"); +oof.addConnectionData("*","oracle1"); +Enumeration e = request.getParameterNames(); +int i = 0; +while (e.hasMoreElements()) { + String key = (String) e.nextElement(); + String[] Values = request.getParameterValues(key); + + if (!key.startsWith("CLIP")) + continue; + + System.out.println(">>key"+i+">>"+key); + System.out.println(">>Values"+i+">>"+Values[i]); + // 배열 + oof.addField(key, Values[i]); + i++; +} +%> +<%@include file="Property.jsp"%> +<% +//세션을 활용하여 리포트키들을 관리하지 않는 옵션 +//request.getSession().setAttribute("ClipReport-SessionList-Allow", false); +String resultKey = ReportUtil.createReport(request, oof, "false", "false", request.getRemoteAddr(), propertyPath); +//oof 문서가 xml 일 경우 (oof.toString()) +//String resultKey = ReportUtil.createReport(request, oof.toString(), "false", "false", "localhost", propertyPath); + +System.out.println(">>>>>>>>>>>>>resultKey>>>>>>>>>>>>>>"+resultKey); +System.out.println(">>>>>>>>>>>>>propertyPath>>>>>>>>>>>>>>"+propertyPath); +%> + + + +Report + + + + + + + + + + + +
+ + diff --git a/src/main/webapp/WEB-INF/jsp/ClipReport4/test1.jsp b/src/main/webapp/WEB-INF/jsp/ClipReport4/test1.jsp new file mode 100644 index 00000000..9025ec68 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/ClipReport4/test1.jsp @@ -0,0 +1,52 @@ +<%@page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> +<%@ taglib uri="http://www.springframework.org/tags/form" prefix="form"%> +<%@page import="com.clipsoft.clipreport.oof.OOFFile"%> +<%@page import="com.clipsoft.clipreport.oof.OOFDocument"%> +<%@page import="java.io.File"%> +<%@page import="com.clipsoft.clipreport.server.service.ReportUtil"%> +<% +//String crfNm = request.getParameter("crfNm"); +//OOFDocument oof = OOFDocument.newOOF(); +//OOFFile file = oof.addFile("crf.root", "%root%/crf/"+crfNm+".crf"); +//oof.addConnectionData("*","oracle1"); +%> + +<% +//세션을 활용하여 리포트키들을 관리하지 않는 옵션 +//request.getSession().setAttribute("ClipReport-SessionList-Allow", false); +//String resultKey = ReportUtil.createReport(request, oof, "false", "false", request.getRemoteAddr(), propertyPath); +//oof 문서가 xml 일 경우 (oof.toString()) +//String resultKey = ReportUtil.createReport(request, oof.toString(), "false", "false", "localhost", propertyPath); +%> + + + +Report + + + + + + + + + + + +
+ + diff --git a/src/main/webapp/WEB-INF/jsp/_extra/web/user/mediation/checkMediationStep03.jsp b/src/main/webapp/WEB-INF/jsp/_extra/web/user/mediation/checkMediationStep03.jsp index f2c71adf..6af06d05 100644 --- a/src/main/webapp/WEB-INF/jsp/_extra/web/user/mediation/checkMediationStep03.jsp +++ b/src/main/webapp/WEB-INF/jsp/_extra/web/user/mediation/checkMediationStep03.jsp @@ -18,6 +18,7 @@ +