diff --git a/src/main/java/kcc/kccadr/stts/web/SttsPrcsController.java b/src/main/java/kcc/kccadr/stts/web/SttsPrcsController.java index 3cd5a80e..691a79c4 100644 --- a/src/main/java/kcc/kccadr/stts/web/SttsPrcsController.java +++ b/src/main/java/kcc/kccadr/stts/web/SttsPrcsController.java @@ -121,9 +121,33 @@ public class SttsPrcsController { // 세팅값 String title = "조정처리 현황"; - int[] width = {4000, 5000, 5000, 5000, 5000, 5000, 5000, 20000, 5000, 5000, 5000, 5000, 5000, 5000, 5000, 5000, 5000, 5000}; // 너비 - String[] header = {"접수번호", "접수일자", "신청인", "피신청인", "신청대리인", "피신청대리인", "저작물 유형", "내용", "수수료근거", "조정결과", "성립내역", "조정부", "수수료", "기일변경내역", "기일 출석", "신청인 유형", "신청인 지역", "피신청인 지역"}; // 헤더에 들어갈 이름 - String[] order = {"AdrNo", "ApprDe", "RpplNm1", "RpplNm2", "RpplNm3", "RpplNm4", "CcTy", "ReqCn1", "ApprRson", "ResultNm", "FinalStatCd", "MemDeptNm", "AdrCost", "AppDe", "AssUsrTy", "ReqTy", "RpplAddr1", "RpplAddr2"}; // vo 내부의 필드 이름 (첫글자 대문자, 낙타체 사용) + int[] width = { + 4000, 5000, 5000, 5000, 5000 + , 5000, 5000, 20000, 5000, 5000 + , 5000, 5000, 5000, 5000, 5000 + , 5000, 5000 + , 5000, 5000, 5000 + + , 5000, 5000, 5000 + }; // 너비 + String[] header = { + "접수번호", "접수일자", "신청인", "피신청인", "신청대리인" + , "피신청대리인", "저작물 유형", "분쟁내용", "청구내용", "조정 목적 값(원)" + , "조정결과", "유형", "성립내역", "합의금액(원)", "조정부" + , "위원교체", "수수료" + , "기일수", "기일수(일자)/완료일", "기일 상황(출석여부 등)" + + , "신청인 유형", "신청인 지역", "피신청인 지역", "비고" + }; // 헤더에 들어갈 이름 + String[] order = { + "AdrNo", "ApprDe", "RpplNm1", "RpplNm2", "RpplNm3" + , "RpplNm4", "CcTy", "ReqCn2", "ReqCn1", "SuccPer" + , "ResultNm", "SuccPer", "FinalStatCd", "SuccPer", "MemDeptNm" + , "SuccPer", "AdrCost" + , "SuccPer", "AppDe", "AssUsrTy" + + , "ReqTy", "RpplAddr1", "RpplAddr2", "SuccPer" + }; // vo 내부의 필드 이름 (첫글자 대문자, 낙타체 사용) // 호출 SXSSFWorkbook workbook = ExcelUtil.makeSimpleFruitExcelWorkbook(list, header, order, width, title); model.addAttribute("locale", Locale.KOREA); diff --git a/src/main/resources/egovframework/sqlmap/kccadr/stts/Stts_SQL_Mysql.xml b/src/main/resources/egovframework/sqlmap/kccadr/stts/Stts_SQL_Mysql.xml index 52351913..ef0a4927 100644 --- a/src/main/resources/egovframework/sqlmap/kccadr/stts/Stts_SQL_Mysql.xml +++ b/src/main/resources/egovframework/sqlmap/kccadr/stts/Stts_SQL_Mysql.xml @@ -74,6 +74,7 @@ ,GROUP_CONCAT(IF(ar.rppl_ty = '40', ar.rppl_nm, null) SEPARATOR ', ' ) AS rpplNm4 /* 피신청대리인 */ ,cc_ty.code_nm AS ccTy /* 저작물 유형 */ ,am.req_cn1 AS reqCn1 /* 내용 */ + ,am.req_cn2 AS reqCn2 /* 내용 */ ,apr.appr_rson AS apprRson /* 수수료근거는 있음, 조정목적값은 시스템에서 입력 없음 */ /* ,조정목적값은 시스템에서 입력 없음 */ ,CASE @@ -394,7 +395,8 @@ LEFT OUTER JOIN lettccmmndetailcode req_ty ON M.req_ty = req_ty.code AND req_ty.code_id = 'CC015' /* 신청인 유형 */ INNER JOIN adr_rppl ar ON M.adr_seq = ar.adr_seq /* 관리인 */ WHERE 1=1 - AND M.stat_cd ='400000' /* 현재는 종결된 사건만 필요시 조절한다. */ + AND M.USE_YN != 'N' + AND M.stat_cd ='400000' /* 현재는 종결된 사건만 필요시 조절한다. */ diff --git a/src/main/webapp/WEB-INF/jsp/kccadr/stts/sttsAdjPrcs.jsp b/src/main/webapp/WEB-INF/jsp/kccadr/stts/sttsAdjPrcs.jsp index 7207ff64..6e2dde84 100644 --- a/src/main/webapp/WEB-INF/jsp/kccadr/stts/sttsAdjPrcs.jsp +++ b/src/main/webapp/WEB-INF/jsp/kccadr/stts/sttsAdjPrcs.jsp @@ -160,7 +160,7 @@ $(document).ready(function() { - + @@ -178,7 +178,7 @@ $(document).ready(function() { - + @@ -205,7 +205,7 @@ $(document).ready(function() { - +
피신청인(대리인) 저작물 유형내용분쟁내용 조정결과 ...

...