사용자 송달문서 상세보기 (진행중)

SNS 간편로그인 (진행중)
This commit is contained in:
JooYoung 2022-09-19 12:35:00 +09:00
parent 9d8f0988bd
commit ac09daefaa
13 changed files with 9726 additions and 1 deletions

View File

@ -0,0 +1,369 @@
package kcc.kccadr.certDoc.web;
import java.util.List;
import javax.annotation.Resource;
import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.RequestMapping;
import egovframework.rte.ptl.mvc.tags.ui.pagination.PaginationInfo;
import kcc.com.cmm.EgovMessageSource;
import kcc.com.cmm.util.StringUtil;
import kcc.com.utl.user.service.CheckLoginUtil;
import kcc.kccadr.adjPgrMgr.arm.service.CmntVO;
import kcc.kccadr.adjPgrMgr.cmm.service.CloseVO;
import kcc.kccadr.adjPgrMgr.cmm.service.PgrCmmService;
import kcc.kccadr.adjPgrMgr.cmm.service.PgrCmmVO;
import kcc.kccadr.adjPgrMgr.dlvinfo.service.DlvinfoService;
import kcc.kccadr.adjPgrMgr.dlvinfo.service.DlvinfoVO;
import kcc.kccadr.adjPgrMgr.dnt.service.DntService;
import kcc.kccadr.adjPgrMgr.dnt.service.DntVO;
import kcc.kccadr.adjPgrMgr.drt.service.AssVO;
import kcc.kccadr.adjPgrMgr.drt.service.DrtService;
import kcc.kccadr.adjPgrMgr.drt.service.DrtVO;
import kcc.kccadr.adjPgrMgr.drtctr.service.AssCtrVO;
import kcc.kccadr.adjPgrMgr.drtctr.service.DrtCtrService;
import kcc.kccadr.adjPgrMgr.drtctr.service.DrtCtrVO;
import kcc.kccadr.adjcclt.service.AdjstConciliatorService;
import kcc.kccadr.adjcclt.service.AdjstConciliatorVO;
import kcc.kccadr.cmm.KccadrConstants;
import kcc.let.utl.fcc.service.EgovCryptoUtil;
/**
* 대국민(사용자)
* 인증을 통한 송달서류 조회 controller 클래스를 정의한다.
* @author 김봉호
* @since 2022.08.29
* @version 1.0
* @see
*
* <pre>
* << 개정이력(Modification Information) >>
*
* 수정일 수정자 수정내용
* ------- -------- ---------------------------
* 2022.08.29 안주영 최초 생성
*
* </pre>
*/
@Controller
public class CertDocController {
//private static final Logger LOGGER = LoggerFactory.getLogger(AdjstChangeDateController.class);
// eGov 공통 메세지
@Resource(name = "egovMessageSource")
EgovMessageSource egovMessageSource;
//로그인 체크 util
@Resource(name = "checkLoginUtil")
private CheckLoginUtil checkLoginUtil;
//암복호화 유틸
@Resource(name = "egovCryptoUtil")
EgovCryptoUtil egovCryptoUtil;
@Resource(name = "pgrCmmService")
private PgrCmmService cmmService;
@Resource(name = "dlvinfoService")
private DlvinfoService dlvinfoService;
@Resource(name = "drtCtrService")
private DrtCtrService drtCtrService;
@Resource(name = "dntService")
private DntService dntService;
@Resource(name = "drtService")
private DrtService drtService;
@Resource(name="adjstConciliatorService")
private AdjstConciliatorService adjstConciliatorService;
/**
* 확정증명원 상세
*/
@RequestMapping("/web/kccadr/certDoc/cfrmDetail.do")
public String cfrmDetail(@ModelAttribute("cmmVO") PgrCmmVO cmmVO, ModelMap model) throws Exception {
//TEST CODE START
cmmVO.setAdrSeq("ADR_0000000000002620");
cmmVO.setAdrSn("1");
//TEST CODE END
//사건 정보 불러오기
model.addAttribute("info", cmmService.selectPgrCmm(cmmVO));
//종결문서에서 확정증명서 불러오기
CloseVO closeVO = new CloseVO();
closeVO.setAdrSeq(cmmVO.getAdrSeq());
closeVO.setAdrSn(cmmVO.getAdrSn());
closeVO.setCloseDocTy(KccadrConstants.ADR_CLOSE_DOC_TY_80);
model.addAttribute("closeDocInfo", cmmService.selectCloseDoc(closeVO));
//송달정보 count 조회해오기
DlvinfoVO dlvInfoVO = new DlvinfoVO();
dlvInfoVO.setSrcCon("10"); //조정번호 검색 조건 입력 - 10: 사건번호, 20: 신청인/피신청인 이름
dlvInfoVO.setSrcTxt(cmmVO.getAdrNo()); //사건번호 입력
dlvInfoVO.setSrcDocty(KccadrConstants.ADR_CLOSE_DOC_TY_80); //송달 문서 종류 코드번호
model.addAttribute("dlvCnt", dlvinfoService.selectAdjustDeliveryInfoListCnt(dlvInfoVO));
return "/web/kccadr/certDoc/cfrmDetail";
}
/**
* 기일통지서 상세
*/
@RequestMapping(value = "/web/kccadr/certDoc/dntDetail.do")
public String dntDetail(@ModelAttribute("dntVO") PgrCmmVO cmmVO, ModelMap model) throws Exception {
//TEST CODE START
cmmVO.setAdrSeq("ADR_0000000000002620");
cmmVO.setAdrSn("1");
//TEST CODE END
PgrCmmVO dntVO = getDntInfo(cmmVO);
model.addAttribute("info", dntVO);
if(cmmVO.getSearchKeyword().equals("update")) {
// 조정기일 변경 조회
DntVO dntNoticeVO = new DntVO();
dntNoticeVO.setAdrSn(cmmVO.getAdrSn());
dntNoticeVO.setAdrSeq(cmmVO.getAdrSeq());
DntVO selectDateNoticeDate = dntService.selectDateNoticeDate(dntNoticeVO);
model.addAttribute("date",selectDateNoticeDate);
}
//송달정보 count 조회해오기
DlvinfoVO dlvInfoVO = new DlvinfoVO();
dlvInfoVO.setSrcCon("10");
dlvInfoVO.setSrcTxt(cmmVO.getAdrNo());
model.addAttribute("dlvCnt", dlvinfoService.selectAdjustDeliveryInfoListCnt(dlvInfoVO));
return "/web/kccadr/certDoc/dntDetail";
}
/**
* 기일조서 상세
*/
@RequestMapping(value = "/web/kccadr/certDoc/drtDetail.do")
public String drtDetail(PgrCmmVO cmmVO, DrtVO drtVO, ModelMap model) throws Exception {
List<AssVO> assList = drtService.selectAssList(drtVO);
PgrCmmVO info = cmmService.selectPgrCmm(cmmVO);
//송달정보 count 조회해오기
DlvinfoVO dlvInfoVO = new DlvinfoVO();
dlvInfoVO.setSrcCon("10");
dlvInfoVO.setSrcDocty("20"); //송달 문서 종류 코드번호
dlvInfoVO.setSrcTxt(cmmVO.getAdrNo());
dlvInfoVO.setAdrSeq(cmmVO.getAdrSeq());
dlvInfoVO.setAdrSn(drtVO.getAdrSn());
model.addAttribute("dlvCnt", dlvinfoService.selectAdjustDeliveryInfoListCnt(dlvInfoVO));
model.addAttribute("assList", assList);
model.addAttribute("info", info);
//조정위원 정보 불러오기
PgrCmmVO dntVO = getDntInfo(cmmVO);
model.addAttribute("uiwonInfo", dntVO);
return "/web/kccadr/certDoc/drtDetail";
}
/**
* 조정권고안 상세
*/
@RequestMapping(value = "/web/kccadr/certDoc/armDetail.do")
public String armDetail(@ModelAttribute("closeVO") CloseVO closeVO, ModelMap model) throws Exception {
//TEST CODE START
closeVO.setAdrSeq("ADR_0000000000002762");
closeVO.setAdrSn("1");
//TEST CODE END
//조정기일 배석 정보 불러오기
DrtCtrVO drtCtrVO = new DrtCtrVO();
drtCtrVO.setAdrSeq(closeVO.getAdrSeq());
drtCtrVO.setAdrSn(closeVO.getAdrSn());
List<AssCtrVO> assList = drtCtrService.selectAssList(drtCtrVO);
//기일조서 정보 불러오기
PgrCmmVO pgrCmmVO = new PgrCmmVO();
pgrCmmVO.setAdrSeq(closeVO.getAdrSeq());
pgrCmmVO.setPrtclSeq(closeVO.getPrtclSeq());
PgrCmmVO info = cmmService.selectPgrCmm(pgrCmmVO);
//직권조정 조서 정보 가져오기
model.addAttribute("assList", assList);
model.addAttribute("info", info);
closeVO.setCloseDocTy("30");
model.addAttribute("drtCtrVO", cmmService.selectCloseDoc(closeVO));
//송달정보 count 조회해오기
DlvinfoVO dlvInfoVO = new DlvinfoVO();
dlvInfoVO.setSrcCon("10");
dlvInfoVO.setSrcTxt(closeVO.getAdrNo());
model.addAttribute("dlvCnt", dlvinfoService.selectAdjustDeliveryInfoListCnt(dlvInfoVO));
CmntVO cmntVO = new CmntVO();
cmntVO.setAdrSeq(closeVO.getAdrSeq());
cmntVO.setAdrSn(closeVO.getAdrSn());
cmntVO.setCmntSeq(closeVO.getCmntSeq());
cmntVO.setCmntTy("30");
//조정위원 의견 리스트
model.addAttribute("list", cmmService.selectCmnList(cmntVO));
return "/web/kccadr/certDoc/armDetail";
}
/**
* 조정조서 상세
*/
@RequestMapping("/web/kccadr/certDoc/drtCtrDetail.do")
public String drtCtrDetail(PgrCmmVO cmmVO, DrtCtrVO drtCtrVO, ModelMap model) throws Exception {
//조정기일 배석 정보 불러오기
List<AssCtrVO> assList = drtCtrService.selectAssList(drtCtrVO);
//기일조서 정보 불러오기
PgrCmmVO info = cmmService.selectPgrCmm(cmmVO);
//조정조서 정보 불러오기
DrtCtrVO resultDrtCtrVO = drtCtrService.selectDrtCtrReport(drtCtrVO);
//송달정보 count 조회해오기
DlvinfoVO dlvInfoVO = new DlvinfoVO();
dlvInfoVO.setSrcCon("10");
dlvInfoVO.setSrcTxt(cmmVO.getAdrNo());
model.addAttribute("dlvCnt", dlvinfoService.selectAdjustDeliveryInfoListCnt(dlvInfoVO));
model.addAttribute("assList", assList);
model.addAttribute("info", info);
model.addAttribute("drtCtrVO", resultDrtCtrVO);
return "/web/kccadr/certDoc/drtCtrDetail";
}
/**
* 취하종결통보서 상세
*/
@RequestMapping(value = "/web/kccadr/certDoc/entDetail.do")
public String entDetail(@ModelAttribute("closeVO") CloseVO closeVO, ModelMap model) throws Exception {
model.addAttribute("info", cmmService.selectPgrCmm(closeVO));
//송달정보 count 조회해오기
DlvinfoVO dlvInfoVO = new DlvinfoVO();
dlvInfoVO.setSrcCon("10");
dlvInfoVO.setSrcDocty("50"); //송달 문서 종류 코드번호
dlvInfoVO.setSrcTxt(closeVO.getAdrNo());
model.addAttribute("dlvCnt", dlvinfoService.selectAdjustDeliveryInfoListCnt(dlvInfoVO));
return "/web/kccadr/certDoc/entDetail";
}
/**
* 직권조정결정서 상세
*/
@RequestMapping(value = "/web/kccadr/certDoc/oadDetail.do")
public String oadDetail(@ModelAttribute("closeVO") CloseVO closeVO, ModelMap model) throws Exception {
//조정기일 배석 정보 불러오기
DrtCtrVO drtCtrVO = new DrtCtrVO();
drtCtrVO.setAdrSeq(closeVO.getAdrSeq());
drtCtrVO.setAdrSn(closeVO.getAdrSn());
List<AssCtrVO> assList = drtCtrService.selectAssList(drtCtrVO);
model.addAttribute("assList", assList);
//기일조서 정보 불러오기
PgrCmmVO pgrCmmVO = new PgrCmmVO();
pgrCmmVO.setAdrSeq(closeVO.getAdrSeq());
pgrCmmVO.setPrtclSeq(closeVO.getPrtclSeq());
PgrCmmVO info = cmmService.selectPgrCmm(pgrCmmVO);
model.addAttribute("info", info);
//직권조정 조서 정보 가져오기
closeVO.setCloseDocTy("60");
model.addAttribute("drtCtrVO", cmmService.selectCloseDoc(closeVO));
//송달정보 count 조회해오기
DlvinfoVO dlvInfoVO = new DlvinfoVO();
dlvInfoVO.setSrcCon("10");
dlvInfoVO.setSrcDocty("60"); //송달 문서 종류 코드번호
dlvInfoVO.setSrcTxt(closeVO.getAdrNo());
model.addAttribute("dlvCnt", dlvinfoService.selectAdjustDeliveryInfoListCnt(dlvInfoVO));
//조정위원들 의견 정보 불러오기(전체 불러오기 - memSeq로 그룹핑해서 중복 제거했음) 20220209 - 우영두 추가
AdjstConciliatorVO adjstConciliatorVO = new AdjstConciliatorVO();
adjstConciliatorVO.setAdrSeq(closeVO.getAdrSeq());
adjstConciliatorVO.setAdrSn(closeVO.getAdrSn());
adjstConciliatorVO.setCmntTy(dlvInfoVO.getSrcDocty()); //문서종류 코드 번호 전달
PaginationInfo paginationInfo = new PaginationInfo();
paginationInfo.setCurrentPageNo(adjstConciliatorVO.getPageIndex());
paginationInfo.setRecordCountPerPage(100);
paginationInfo.setPageSize(adjstConciliatorVO.getPageSize());
adjstConciliatorVO.setFirstIndex(paginationInfo.getFirstRecordIndex());
adjstConciliatorVO.setLastIndex(paginationInfo.getLastRecordIndex());
adjstConciliatorVO.setRecordCountPerPage(paginationInfo.getRecordCountPerPage());
List<AdjstConciliatorVO> cmnList = adjstConciliatorService.selectAdjstRecommendationCommentListGroup(adjstConciliatorVO);
model.addAttribute("cmnList",cmnList);
return "/web/kccadr/certDoc/oadDetail";
}
/**
* 불성립종결통보서 상세
*/
@RequestMapping(value = "crtDetail.do")
public String crtDetail(@ModelAttribute("closeVO") CloseVO closeVO, ModelMap model) throws Exception {
model.addAttribute("info", cmmService.selectPgrCmm(closeVO));
//송달정보 count 조회해오기
DlvinfoVO dlvInfoVO = new DlvinfoVO();
dlvInfoVO.setSrcCon("10");
dlvInfoVO.setSrcTxt(closeVO.getAdrNo());
dlvInfoVO.setSrcDocty("70");//불성립종결통보서 송달 문서 코드번호
model.addAttribute("dlvCnt", dlvinfoService.selectAdjustDeliveryInfoListCnt(dlvInfoVO));
return "/web/kccadr/certDoc/crtDetail";
}
private PgrCmmVO getDntInfo(PgrCmmVO cmmVO) throws Exception {
PgrCmmVO dntVO = cmmService.selectPgrCmm(cmmVO);
if (!StringUtil.isEmpty(dntVO.getMemNames())) {
String[] memNames = dntVO.getMemNames().split(", ");
String[] assSeqes = dntVO.getAssSeqes().split(", ");
if(memNames.length==1) {
dntVO.setAddUsrNm0(memNames[0]);
dntVO.setAssSeq0(assSeqes[0]);
}else if(memNames.length>1) {
dntVO.setAddUsrNm0(memNames[0]);
dntVO.setAssSeq0(assSeqes[0]);
dntVO.setAddUsrNm1(memNames[1]);
dntVO.setAssSeq1(assSeqes[1]);
}
}
return dntVO;
}
}

View File

@ -33,7 +33,7 @@ Globals.DriverClassName=cubrid.jdbc.driver.CUBRIDDriver
#\ud074\ub77c\uc6b0\ub4dc \uc11c\ubc84 #\ud074\ub77c\uc6b0\ub4dc \uc11c\ubc84
#Globals.Url=jdbc:cubrid:158.247.225.133:30000:kcc_adrs4:::?charset=utf8 #Globals.Url=jdbc:cubrid:158.247.225.133:30000:kcc_adrs4:::?charset=utf8
#\uac1c\ubc1c\uc11c\ubc84 #\uac1c\ubc1c\uc11c\ubc84
Globals.Url=jdbc:cubrid:192.168.0.176:30000:cubdb:::?charset=utf8 Globals.Url=jdbc:cubrid:119.193.215.98:30000:kcc_adr_advc:::?charset=utf8
#\uc2e4\uc11c\ubc84 #\uc2e4\uc11c\ubc84
#Globals.Url=jdbc:cubrid:192.168.39.14:30000:kcc_adrs4:::?charset=utf8 #Globals.Url=jdbc:cubrid:192.168.39.14:30000:kcc_adrs4:::?charset=utf8

View File

@ -0,0 +1,182 @@
<%@ page contentType="text/html; charset=utf-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui"%>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%>
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
<!DOCTYPE html>
<html lang="ko">
<head>
<title>조정권고안 상세</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<script type="text/javaScript" language="javascript">
</script>
</head>
<body>
<form:form id="createForm" name="createForm" commandName="adjstChangeDateVO" onsubmit="return false;">
<input type="hidden" id="adrSeq" name="adrSeq" value="<c:out value="${info.adrSeq }"></c:out>" />
<input type="hidden" id="adrSn" name="adrSn" value="<c:out value="${info.adrSn }"></c:out>" />
<input type="hidden" id="closeDocTy" name="closeDocTy" value="<c:out value="${info.closeDocTy }"></c:out>" />
<input type="hidden" id="closeDoc" name="closeDoc" value="<c:out value="${info.closeDoc }"></c:out>" />
<input type="hidden" id="memSeq" name="memSeq" value=""/>
<!-- cont -->
<div class="cont_wrap sub02_1" id="sub">
<div class="inner">
<div class="cont_tit">
<h2>조정권고안</h2>
</div>
<div class="tb_wrap">
<div class="tb_top">
<p>조정권고안</p>
</div>
<table class="tbType01 tb_offeree">
<caption>조정권고안 정보</caption>
<colgroup>
<col style="width: 120px;">
<col style="width: 120px;">
<col style="width: auto;">
</colgroup>
<tbody>
<tr>
<th colspan="2">조정부</th>
<td>
<p>
<c:out value="${info.memDeptNm }"></c:out>
</p>
</td>
</tr>
<tr>
<th colspan="2">사건</th>
<td>
<p>
<c:out value="${info.adrNo }"></c:out>
</p>
</td>
</tr>
<tr>
<th colspan="2">신청인</th>
<td>
<p>
<c:out value="${info.appliCantNm }"></c:out>
</p>
</td>
</tr>
<tr>
<th colspan="2">피신청인</th>
<td>
<p>
<c:out value="${info.resPonDentNm }"></c:out>
</p>
</td>
</tr>
<tr>
<th colspan="2">권고일</th>
<td colspan="3">
<div class="sel_date">
<input type="text" class="rplyEndDeDay inp" title="검색시작일" id="rplyEndDeDay" name="rplyEndDeDay" value="<c:out value="${drtCtrVO.rplyEndDeDay }"></c:out>" data-datecontrol="true">
<div class="calendar_in" id="calendarName_startDate" style="z-index: 9;">
<button type="button" value="달력 팝업 열기" onclick="return calendarOpen('rplyEndDeDay-lry','',this)" class="btn_cal"></button>
<div id="rplyEndDeDay-lry" class="calendarPop" style="display: none;">
<iframe id="rplyEndDeDay-ifrm" name="rplyEndDeDay-ifrm" class="calendar-frame" src="/kccadrPb/adm/calendar.html" title=" 달력 팝업" frameborder="0" scrolling="no"></iframe>
</div>
</div>
</div>
</td>
</tr>
<tr>
<th rowspan="2">신청의표시</th>
<th>신청취지</th>
<td>
<p>별지 조정신청 해당란 기재와 같다.</p>
</td>
</tr>
<tr>
<th>신청원인</th>
<td>
<p>별지 조정신청 해당란 기재와 같다.</p>
</td>
</tr>
<tr>
<th colspan="2">조정조항</th>
<td class="td_cause">
<textarea name="closeCn1" id="closeCn1" cols="30" rows="2"><c:out value="${drtCtrVO.closeCn1 }"></c:out> </textarea>
</td>
</tr>
<tr>
<th colspan="2">조정부장</th>
<td>
<p>
<c:out value="${info.memName }"></c:out>
</p>
</td>
</tr>
<tr>
<th colspan="2">조정위원</th>
<td>
<p>
<c:out value="${info.memNames }"></c:out>
</p>
</td>
</tr>
<tr>
<th colspan="2">조사관</th>
<td>
<p>
<c:out value="${info.adrAdmNm }"></c:out>
</p>
</td>
</tr>
</tbody>
</table>
<table class="tbType02">
<colgroup>
<col style="width: 15%">
<col style="width: auto;">
<col style="width: 15%;">
</colgroup>
<thead>
<tr>
<th>
등록일자
<!-- <button type="button" class="btn_sort">▲</button> -->
</th>
<th>의견 내용</th>
<th>조정위원</th>
</tr>
</thead>
<tbody>
<c:choose>
<c:when test="${not empty list}">
<c:forEach var="item" items="${list}" varStatus="status">
<tr>
<td>
<p>${item.frstRegistDay }</p>
</td>
<td class="tb_ctt">
<p>
<a href="#" onclick="cmtnPop ('<c:out value="${item.cmntSeq}" />')"> ${item.cmntCn } </a>
</p>
</td>
<td>
<p>${item.memName}</p>
</td>
</tr>
</c:forEach>
</c:when>
<c:otherwise>
<tr>
<td colspan="3">등록된 의견이 없습니다.</td>
</tr>
</c:otherwise>
</c:choose>
</tbody>
</table>
</div>
</div>
</div>
<!-- //cont -->
</form:form>
</body>
</html>

View File

@ -0,0 +1,195 @@
<%@ page contentType="text/html; charset=utf-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui"%>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%>
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
<!DOCTYPE html>
<html lang="ko">
<head>
<title>송달 서류 목록</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<script type="text/javaScript" language="javascript">
</script>
</head>
<body>
<form:form id="createForm" name="createForm" commandName="adjstChangeDateVO" onsubmit="return false;">
<input type="hidden" id="adrSeq" name="adrSeq" value="<c:out value="${info.adrSeq }"></c:out>" />
<input type="hidden" id="adrSn" name="adrSn" value="<c:out value="${info.adrSn }"></c:out>" />
<input type="hidden" id="closeDocTy" name="closeDocTy" value="<c:out value="${info.closeDocTy }"></c:out>" />
<input type="hidden" id="closeDoc" name="closeDoc" value="<c:out value="${info.closeDoc }"></c:out>" />
<input type="hidden" id="memSeq" name="memSeq" value=""/>
<!-- cont -->
<div class="cont_wrap sub02_1" id="sub">
<div class="inner">
<div class="cont_tit">
<h2>송달 서류 목록</h2>
</div>
<div class="tb_wrap">
<div class="tb_top">
<p>송달 서류 목록</p>
</div>
<table class="tbType01 tb_offeree">
<caption>송달 서류 목록</caption>
목록 수정 필요
<colgroup>
<col style="width: 120px;">
<col style="width: 120px;">
<col style="width: auto;">
</colgroup>
<tbody>
<tr>
<th colspan="2">조정부</th>
<td>
<p>
<c:out value="${info.memDeptNm }"></c:out>
</p>
</td>
</tr>
<tr>
<th colspan="2">사건</th>
<td>
<p>
<c:out value="${info.adrNo }"></c:out>
</p>
</td>
</tr>
<tr>
<th colspan="2">신청인</th>
<td>
<p>
<c:out value="${info.appliCantNm }"></c:out>
</p>
</td>
</tr>
<tr>
<th colspan="2">피신청인</th>
<td>
<p>
<c:out value="${info.resPonDentNm }"></c:out>
</p>
</td>
</tr>
<tr>
<th colspan="2">권고일</th>
<td colspan="3">
<div class="sel_date">
<input type="text" class="rplyEndDeDay inp" title="검색시작일" id="rplyEndDeDay" name="rplyEndDeDay" value="<c:out value="${drtCtrVO.rplyEndDeDay }"></c:out>" data-datecontrol="true">
<div class="calendar_in" id="calendarName_startDate" style="z-index: 9;">
<button type="button" value="달력 팝업 열기" onclick="return calendarOpen('rplyEndDeDay-lry','',this)" class="btn_cal"></button>
<div id="rplyEndDeDay-lry" class="calendarPop" style="display: none;">
<iframe id="rplyEndDeDay-ifrm" name="rplyEndDeDay-ifrm" class="calendar-frame" src="/kccadrPb/adm/calendar.html" title=" 달력 팝업" frameborder="0" scrolling="no"></iframe>
</div>
</div>
</div>
</td>
</tr>
<tr>
<th rowspan="2">신청의표시</th>
<th>신청취지</th>
<td>
<p>별지 조정신청 해당란 기재와 같다.</p>
</td>
</tr>
<tr>
<th>신청원인</th>
<td>
<p>별지 조정신청 해당란 기재와 같다.</p>
</td>
</tr>
<tr>
<th colspan="2">조정조항</th>
<td class="td_cause">
<textarea name="closeCn1" id="closeCn1" cols="30" rows="2"><c:out value="${drtCtrVO.closeCn1 }"></c:out> </textarea>
</td>
</tr>
<tr>
<th colspan="2">조정부장</th>
<td>
<p>
<c:out value="${info.memName }"></c:out>
</p>
</td>
</tr>
<tr>
<th colspan="2">조정위원</th>
<td>
<p>
<c:out value="${info.memNames }"></c:out>
</p>
</td>
</tr>
<tr>
<th colspan="2">조사관</th>
<td>
<p>
<c:out value="${info.adrAdmNm }"></c:out>
</p>
</td>
</tr>
</tbody>
</table>
<table class="tbType02">
<colgroup>
<col style="width: 15%">
<col style="width: auto;">
<col style="width: 15%;">
</colgroup>
<thead>
<tr>
<th>
등록일자
<!-- <button type="button" class="btn_sort">▲</button> -->
</th>
<th>의견 내용</th>
<th>조정위원</th>
</tr>
</thead>
<tbody>
<c:choose>
<c:when test="${not empty list}">
<c:forEach var="item" items="${list}" varStatus="status">
<tr>
<td>
<p>${item.frstRegistDay }</p>
</td>
<td class="tb_ctt">
<p>
<a href="#" onclick="cmtnPop ('<c:out value="${item.cmntSeq}" />')"> ${item.cmntCn } </a>
</p>
</td>
<td>
<p>${item.memName}</p>
</td>
</tr>
</c:forEach>
</c:when>
<c:otherwise>
<tr>
<td colspan="3">등록된 의견이 없습니다.</td>
</tr>
</c:otherwise>
</c:choose>
</tbody>
</table>
</div>
</div>
</div>
<!-- //cont -->
</form:form>
</body>
</html>

View File

@ -0,0 +1,253 @@
<%@ page contentType="text/html; charset=utf-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui"%>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%>
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
<!DOCTYPE html>
<html lang="ko">
<head>
<title>확정증명원 상세</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<script type="text/javaScript" language="javascript">
</script>
<script src="<c:url value='/js/kccadr/kakaojs/kakao.js' />"></script>
<script src="<c:url value='/js/kccadr/naverjs/naveridlogin_js_sdk_2.0.2.js' />"></script>
</head>
<body>
<form:form id="createForm" name="createForm" commandName="adjstChangeDateVO" onsubmit="return false;">
<input type="hidden" id="adrSeq" name="adrSeq" value="<c:out value="${info.adrSeq }"></c:out>" />
<input type="hidden" id="adrSn" name="adrSn" value="<c:out value="${info.adrSn }"></c:out>" />
<!-- cont -->
<div class="cont_wrap sub02_1" id="sub">
<div class="inner">
<div class="cont_tit">
<h2>확정증명원</h2>
</div>
<div class="tb_wrap">
<div class="tb_top">
<p>확정증명원</p>
</div>
<table class="tbType01 tb_offeree">
<caption>확정증명원 정보</caption>
<colgroup>
<col style="width: 120px;">
<col style="width: 120px;">
<col style="width: auto;">
</colgroup>
<tbody>
<tr>
<th colspan="2">조정부</th>
<td>
<p>
<c:out value="${info.memDeptNm }"></c:out>
</p>
</td>
</tr>
<tr>
<th colspan="2">사건</th>
<td>
<p>
<c:out value="${info.adrNo }"></c:out>
</p>
</td>
</tr>
<tr>
<th colspan="2">신청인</th>
<td>
<p>
<c:out value="${info.appliCantNm }"></c:out>
</p>
</td>
</tr>
<tr>
<th colspan="2">피신청인</th>
<td>
<p>
<c:out value="${info.resPonDentNm }"></c:out>
</p>
</td>
</tr>
<tr>
<th colspan="2">확정일자</th>
<td colspan="3">
<div class="sel_date">
<input type="text" class="rplyEndDeDay inp" title="검색시작일" id="rplyEndDeDay" name="rplyEndDeDay" onclick="return calendarOpen('rplyEndDeDay-lry','',this)" value="<c:out value='${closeDocInfo.rplyEndDeDay}'/>" data-datecontrol="true" readonly>
<div class="calendar_in" id="calendarName_startDate" style="z-index: 9;">
<button type="button" value="달력 팝업 열기" onclick="return calendarOpen('rplyEndDeDay-lry','',this)" class="btn_cal"></button>
<div id="rplyEndDeDay-lry" class="calendarPop" style="display: none;">
<iframe id="rplyEndDeDay-ifrm" name="rplyEndDeDay-ifrm" class="calendar-frame" src="/kccadrPb/adm/calendar.html" title=" 달력 팝업" frameborder="0" scrolling="no"></iframe>
</div>
</div>
</div>
</td>
</tr>
<tr>
<th colspan="2">확정 증명 내용</th>
<td class="td_cause">
<c:out value="${closeDocInfo.closeCn1}"/>
</td>
</tr>
<tr>
<th colspan="2">조정부장</th>
<td>
<p>
<c:out value="${info.memName }" />
</p>
</td>
</tr>
<tr>
<th colspan="2">조정위원</th>
<td>
<p>
<c:out value="${info.memNames }" />
</p>
</td>
</tr>
<tr>
<th colspan="2">조정조사관</th>
<td>
<p>
<c:out value="${info.adrAdmNm }" />
</p>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!-- TEST CODE -->
<ul>
<li onclick="kakaoLogin();">
<a href="javascript:void(0)">
<span>카카오 로그인</span>
</a>
</li>
<li onclick="kakaoLogout();">
<a href="javascript:void(0)">
<span>카카오 로그아웃</span>
</a>
</li>
</ul>
<br><br><br><br><br><br>
<div class="login-area">
<div id="message">
로그인 버튼을 눌러 로그인 해주세요.
</div>
<div id="button_area">
<div id="naverIdLogin"></div>
</div>
</div>
<!-- 카카오 스크립트 -->
<script>
Kakao.init('5a964d4a736ef47416f326a646bcfc5e'); //발급받은 키 중 javascript키를 사용해준다.
console.log(Kakao.isInitialized()); // sdk초기화여부판단
//카카오로그인
function kakaoLogin() {
Kakao.Auth.login({
success: function (response) {
Kakao.API.request({
url: '/v2/user/me',
success: function (response) {
console.log(response)
},
fail: function (error) {
console.log(error)
},
})
},
fail: function (error) {
console.log(error)
},
})
}
//카카오로그아웃
function kakaoLogout() {
if (Kakao.Auth.getAccessToken()) {
Kakao.API.request({
url: '/v1/user/unlink',
success: function (response) {
console.log(response)
},
fail: function (error) {
console.log(error)
},
})
Kakao.Auth.setAccessToken(undefined)
}
}
const naverLogin = new naver.LoginWithNaverId(
{
clientId: "iMGwQvTUeD4tVwv41haJ",
callbackUrl: "http://localhost:8089/web/kccadr/certDoc/cfrmDetail.do",
loginButton: {color: "green", type: 2, height: 40}
}
);
naverLogin.init(); // 로그인 설정
naverLogin.getLoginStatus(function (status) {
alert(status);
if (status) {
const email=naverLogin.user.getEmail();
const name=naverLogin.user.getName();
const mobile=naverLogin.user.getMobile();
//필수사항을 선택하지 않으면 선택창으로 돌아갑니다.
if(email===null||email===undefined ){
alert("이메일이 필요합니다. 정보제공을 동의해주세요.");
naverLogin.reprompt();
return ;
} else if(name===null||name===undefined ){
alert("이름이 필요합니다. 정보제공을 동의해주세요.");
naverLogin.reprompt();
return ;
} else if(mobile===null||mobile===undefined ){
alert("휴대폰번호가 필요합니다. 정보제공을 동의해주세요.");
naverLogin.reprompt();
return ;
} else{
setLoginStatus(); //모든 필수 정보 제공 동의하면 실행하는 함수
}
}
const message_area=document.getElementById('message');
message_area.innerHTML=`
<h3> Login 성공 </h3>
<div>user email : ${naverLogin.user.email}</div>
<div>user name : ${naverLogin.user.name}</div>
<div>user mobile : ${naverLogin.user.mobile}</div>
`;
});
console.log(naverLogin);
function setLoginStatus(){
const button_area=document.getElementById('button_area');
button_area.innerHTML="<button id='btn_logout'>로그아웃</button>";
const logout=document.getElementById('btn_logout');
logout.addEventListener('click',(e)=>{
naverLogin.logout();
location.reload(true);
})
}
</script>
<!-- //cont -->
</form:form>
</body>
</html>

View File

@ -0,0 +1,113 @@
<%@ page contentType="text/html; charset=utf-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui"%>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%>
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
<!DOCTYPE html>
<html lang="ko">
<head>
<title>불성립종결통보서 상세</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<script type="text/javaScript" language="javascript">
</script>
</head>
<body>
<form:form id="createForm" name="createForm" commandName="adjstChangeDateVO" onsubmit="return false;">
<input type="hidden" id="adrSeq" name="adrSeq" value="<c:out value="${info.adrSeq }"></c:out>" />
<input type="hidden" id="adrSn" name="adrSn" value="<c:out value="${info.adrSn }"></c:out>" />
<input type="hidden" id="closeDocTy" name="closeDocTy" value="<c:out value="${info.closeDocTy }"></c:out>" />
<input type="hidden" id="closeDoc" name="closeDoc" value="<c:out value="${info.closeDoc }"></c:out>" />
<input type="hidden" id="memSeq" name="memSeq" value=""/>
<!-- cont -->
<div class="cont_wrap sub02_1" id="sub">
<div class="inner">
<div class="cont_tit">
<h2>불성립종결통보서</h2>
</div>
<div class="tb_wrap">
<div class="tb_top">
<p>불성립종결통보서</p>
</div>
<table class="tbType01 tb_offeree">
<caption>불성립종결통보서 정보</caption>
<colgroup>
<col style="width: 120px;">
<col style="width: 120px;">
<col style="width: auto;">
</colgroup>
<tbody>
<tr>
<th colspan="2">조정부</th>
<td>
<p>
<c:out value="${info.memDeptNm }"></c:out>
</p>
</td>
</tr>
<tr>
<th colspan="2">사건</th>
<td>
<p>
<c:out value="${info.adrNo }"></c:out>
</p>
</td>
</tr>
<tr>
<th colspan="2">신청내용</th>
<td>
<p>
<c:out value="${info.ccTyTx }"></c:out>
</p>
</td>
</tr>
<tr>
<th colspan="2">제목</th>
<td>
<p>
불성립 종결 통보
<%-- <c:out value="${info.appliCantNm }"></c:out> --%>
</p>
</td>
</tr>
<tr>
<th rowspan="2">수신</th>
<th>신청인</th>
<td>
<p>
<c:out value="${info.appliCantNm }"></c:out>
</p>
</td>
</tr>
<tr>
<th>피신청인</th>
<td>
<p>
<c:out value="${info.resPonDentNm }"></c:out>
</p>
</td>
</tr>
<tr>
<th colspan="2">이 유</th>
<td class="td_cause">
<textarea name="closeCn1" id="closeCn1" cols="30" rows="2"><c:out value="${info.closeCn1 }"/></textarea>
</td>
</tr>
<tr>
<th colspan="2">조정부장</th>
<td>
<p>
<c:out value="${info.memName }"></c:out>
</p>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!-- //cont -->
</form:form>
</body>
</html>

View File

@ -0,0 +1,123 @@
<%@ page contentType="text/html; charset=utf-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui"%>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%>
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
<!DOCTYPE html>
<html lang="ko">
<head>
<title>기일통지서 상세</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<script type="text/javaScript" language="javascript">
</script>
</head>
<body>
<form:form id="createForm" name="createForm" commandName="adjstChangeDateVO" onsubmit="return false;">
<input type="hidden" id="adrSeq" name="adrSeq" value="<c:out value="${info.adrSeq }"></c:out>" />
<input type="hidden" id="adrSn" name="adrSn" value="<c:out value="${info.adrSn }"></c:out>" />
<input type="hidden" id="appSeq" name="appSeq" value="<c:out value="${info.appSeq }"></c:out>" />
<input type="hidden" id="assSeq0" name="assSeq0" value="<c:out value="${info.assSeq0 }"></c:out>" />
<input type="hidden" id="assSeq1" name="assSeq1" value="<c:out value="${info.assSeq1 }"></c:out>" />
<input type="hidden" id="assSeq2" name="assSeq2" value="<c:out value="${info.assSeq2 }"></c:out>" />
<input type="hidden" id="addUsrId0" name="addUsrId0" />
<input type="hidden" id="addUsrId1" name="addUsrId1" />
<input type="hidden" id="addUsrId2" name="addUsrId2" />
<input type="hidden" id="addChgYn0" name="addChgYn0" />
<input type="hidden" id="addChgYn1" name="addChgYn1" />
<input type="hidden" id="addChgYn2" name="addChgYn2" />
<!-- cont -->
<div class="cont_wrap sub02_1" id="sub">
<div class="inner">
<div class="cont_tit">
<h2>기일통지서</h2>
</div>
<div class="tb_wrap">
<div class="tb_top">
<p>기일통지서</p>
</div>
<table class="tbType01 tb_offeree">
<caption>기일통지서 정보</caption>
<colgroup>
<col style="width: 210px;">
<col style="width: auto;">
<col style="width: 210px;">
<col style="width: auto;">
</colgroup>
<tbody>
<tr>
<th>조 정 부</th>
<td colspan="3">
<c:out value="${info.memDeptNm }"/>
</td>
</tr>
<tr>
<th>차 수</th>
<td colspan="3">
<c:out value="${info.adrSn}"/>
</td>
</tr>
<tr>
<th>사 건</th>
<td>
<c:out value="${info.adrNo }"/>
</td>
<th>사건내용</th>
<td>
<c:out value="${info.ccTyTx }"/>
</td>
</tr>
<tr>
<th>신청인</th>
<td colspan="3">
<c:out value="${info.appliCantNm }"/>
</td>
</tr>
<tr>
<th>피신청인</th>
<td colspan="3">
<c:out value="${info.resPonDentNm }"/>
</td>
</tr>
<c:if test="${dntVO.searchKeyword eq 'update' && date.appDeDay ne null}">
<tr>
<th>변경기일</th>
<td colspan="3">
<c:out value="${date.appDeDay }"/>
&nbsp;&nbsp;
<c:out value="${date.appDeTime }"/>
</td>
</tr>
</c:if>
<tr>
<th>조정기일</th>
<td colspan="3">
<c:out value="${info.appDeDay }"/>
&nbsp;&nbsp;
<c:out value="${info.appDeTime }"/>
</td>
</tr>
<tr>
<th>장소</th>
<td colspan="3">
<kc:code codeId="CC020" code="${info.appPlaceTy }"/>
</td>
</tr>
<tr>
<th>주소</th>
<td colspan="3">
<kc:code codeId="CC021" code="${info.appPlaceAddrTy }"/>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!-- //cont -->
</form:form>
</body>
</html>

View File

@ -0,0 +1,193 @@
<%@ page contentType="text/html; charset=utf-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui"%>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%>
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
<!DOCTYPE html>
<html lang="ko">
<head>
<title>조정조서 상세</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<script type="text/javaScript" language="javascript">
</script>
</head>
<body>
<form:form id="createForm" name="createForm" commandName="adjstChangeDateVO" onsubmit="return false;">
<input type="hidden" id="adrSeq" name="adrSeq" value="<c:out value="${info.adrSeq }"></c:out>" />
<input type="hidden" id="adrSn" name="adrSn" value="<c:out value="${info.adrSn }"></c:out>" />
<input type="hidden" id="closeDocTy" name="closeDocTy" value="<c:out value="${info.closeDocTy }"></c:out>" />
<input type="hidden" id="closeDoc" name="closeDoc" value="<c:out value="${info.closeDoc }"></c:out>" />
<input type="hidden" id="memSeq" name="memSeq" value=""/>
<!-- cont -->
<div class="cont_wrap sub02_1" id="sub">
<div class="inner">
<div class="cont_tit">
<h2>조정조서</h2>
</div>
<div class="tb_wrap">
<div class="tb_top">
<p>조정조서</p>
</div>
<table class="tbType01 tb_offeree">
<caption>조정조서 정보</caption>
<colgroup>
<col style="width: 20%;">
<col style="width: 35%;">
<col style="width: 15%;">
<col style="width: 30%;">
</colgroup>
<tbody>
<tr>
<th>조 정 부</th>
<td colspan="3">
<c:out value="${info.memDeptNm }"></c:out>
</td>
</tr>
<tr>
<th>차 수</th>
<td colspan="3">
<c:out value="${info.adrSn}"></c:out>
</td>
</tr>
<tr>
<th>사 건</th>
<td>
<c:out value="${info.adrNo }"></c:out>
</td>
<th>사건내용</th>
<td>
<c:out value="${info.ccTyTx }"></c:out>
</td>
</tr>
<tr>
<th>신청인</th>
<td>
<c:forEach var="ass" items="${assList}">
<c:if test="${ass.assUsrTy=='10'}">
<p>
<c:out value="${ass.addUsrNm }"></c:out>
</p>
<select name="addUsrIdList" id="addUsrIdList" class="wid_120" disabled>
<option value="<c:out value="${ass.addUsrId }|${ass.assUsrTy }|Y|${ass.assSeq}"></c:out>" <c:if test="${ass.addYn=='Y' }">selected="selected"</c:if>>출석</option>
<option value="<c:out value="${ass.addUsrId }|${ass.assUsrTy }|N|${ass.assSeq}"></c:out>" <c:if test="${ass.addYn=='N' }">selected="selected"</c:if>>불출석</option>
</select>
<br/>
</c:if>
</c:forEach>
</td>
<th>대리인</th>
<td>
<c:forEach var="ass" items="${assList}">
<c:if test="${ass.assUsrTy=='30'}">
<p>
<c:out value="${ass.addUsrNm }"></c:out>
</p>
<select name="addUsrIdList" id="addUsrIdList" class="wid_120" disabled>
<option value="<c:out value="${ass.addUsrId }|${ass.assUsrTy }|Y|${ass.assSeq}"></c:out>" <c:if test="${ass.addYn=='Y' }">selected="selected"</c:if>>출석</option>
<option value="<c:out value="${ass.addUsrId }|${ass.assUsrTy }|N|${ass.assSeq}"></c:out>" <c:if test="${ass.addYn=='N' }">selected="selected"</c:if>>불출석</option>
</select>
<br/>
</c:if>
</c:forEach>
</td>
</tr>
<tr>
<th>피신청인</th>
<td>
<c:forEach var="ass" items="${assList}">
<c:if test="${ass.assUsrTy=='20'}">
<p>
<c:out value="${ass.addUsrNm }"></c:out>
</p>
<select name="addUsrIdList" id="addUsrIdList" class="wid_120" disabled>
<option value="<c:out value="${ass.addUsrId }|${ass.assUsrTy }|Y|${ass.assSeq}"></c:out>" <c:if test="${ass.addYn=='Y' }">selected="selected"</c:if>>출석</option>
<option value="<c:out value="${ass.addUsrId }|${ass.assUsrTy }|N|${ass.assSeq}"></c:out>" <c:if test="${ass.addYn=='N' }">selected="selected"</c:if>>불출석</option>
</select>
<br/>
</c:if>
</c:forEach>
</td>
<th>대리인</th>
<td>
<c:forEach var="ass" items="${assList}">
<c:if test="${ass.assUsrTy=='40'}">
<p>
<c:out value="${ass.addUsrNm }"></c:out>
</p>
<select name="addUsrIdList" id="addUsrIdList" class="wid_120" disabled>
<option value="<c:out value="${ass.addUsrId }|${ass.assUsrTy }|Y|${ass.assSeq}"></c:out>" <c:if test="${ass.addYn=='Y' }">selected="selected"</c:if>>출석</option>
<option value="<c:out value="${ass.addUsrId }|${ass.assUsrTy }|N|${ass.assSeq}"></c:out>" <c:if test="${ass.addYn=='N' }">selected="selected"</c:if>>불출석</option>
</select>
</c:if>
</c:forEach>
</td>
</tr>
<tr>
<th>조정기일</th>
<td>
<div class="sel_date">
<input type="text" class="appDeDay inp" title="검색시작일" id="appDeDay" name="appDeDay" value="<c:out value="${info.apmAppDeDay }"></c:out>" data-datecontrol="true" onkeyup="setFormat('day',this)" maxlength="10" readonly>
<div class="calendar_in" id="calendarName_startDate" style="z-index: 9;">
<button type="button" value="달력 팝업 열기" onclick="return calendarOpen('appDeDay-lry','',this)" class="btn_cal" disabled></button>
<div id="appDeDay-lry" class="calendarPop" style="display: none;">
<iframe id="appDeDay-ifrm" name="appDeDay-ifrm" class="calendar-frame" src="/kccadrPb/adm/calendar.html" title=" 달력 팝업" frameborder="0" scrolling="no"></iframe>
</div>
</div>
</div>
<input type="text" class="time_input" placeholder="11:00" id="appDeTime" name="appDeTime" value="<c:out value="${info.apmAppDeTime }"></c:out>" onkeyup="setFormat('time',this)" maxlength="8" readonly>
</td>
<th>공개여부</th>
<td>
<select name="openYn" id="openYn" class="wid_120" disabled>
<option value="N" <c:if test="${info.openYn=='N' }">selected="selected"</c:if> >비공개</option>
<option value="Y" <c:if test="${info.openYn=='Y' }">selected="selected"</c:if> >공개</option>
</select>
</td>
</tr>
<tr>
<th>장소</th>
<td colspan="3">
<kc:select codeId="CC020" id="appPlaceTy" name="appPlaceTy" selectedValue="${info.apmAppPlaceTy }" script="onchange='fncShow()'; disabled='true';" />
<div id="appPlaceTyDiv" style="display: none;">
<button type="button" class="btnType01" onclick="fn_postCode(this);" disabled>주소검색</button>
<input type="hidden" id="appPlaceZipTx" name="appPlaceZipTx" class="adr_input" readonly>
<input type="text" id="appPlaceTx" name="appPlaceTx" class="searchResultAddr" size="40" value="<c:out value="${info.apmAppPlaceTx }"></c:out>" readonly>
<input type="text" class="dir_input" id="appPlaceDetailTx" name="appPlaceDetailTx" value="<c:out value="${info.apmAppPlaceDetailTx }"></c:out>" readonly>
</div>
</td>
</tr>
<tr>
<th>조정조항</th>
<td colspan="3">
<textarea name="ctrCn" id="ctrCn" cols="30" rows="2"><c:out value="${drtCtrVO.ctrCn }" /></textarea>
</td>
</tr>
<tr>
<th>조정부장</th>
<td colspan="3">
<c:out value="${info.memName }" />
</td>
</tr>
<tr>
<th>조정위원</th>
<td colspan="3">
<c:out value="${info.memNames }" />
</td>
</tr>
<tr>
<th>조정조사관</th>
<td colspan="3">
<c:out value="${info.adrAdmNm }" />
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!-- //cont -->
</form:form>
</body>
</html>

View File

@ -0,0 +1,285 @@
<%@ page contentType="text/html; charset=utf-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui"%>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%>
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
<!DOCTYPE html>
<html lang="ko">
<head>
<title>기일조서 상세</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<script type="text/javaScript" language="javascript">
</script>
</head>
<body>
<form:form id="createForm" name="createForm" commandName="adjstChangeDateVO" onsubmit="return false;">
<input type="hidden" id="adrSeq" name="adrSeq" value="<c:out value="${info.adrSeq }"></c:out>" />
<input type="hidden" id="adrSn" name="adrSn" value="<c:out value="${info.adrSn }"></c:out>" />
<!-- cont -->
<div class="cont_wrap sub02_1" id="sub">
<div class="inner">
<div class="cont_tit">
<h2>기일조서</h2>
</div>
<div class="tb_wrap">
<div class="tb_top">
<p>기일조서</p>
</div>
<table class="tbType01 tb_offeree">
<caption>기일조서 정보</caption>
<colgroup>
<col style="width: 20%;">
<col style="width: 35%;">
<col style="width: 15%;">
<col style="width: 30%;">
</colgroup>
<tbody>
<tr>
<th>조 정 부</th>
<td colspan="3">
<c:out value="${info.memDeptNm }"></c:out>
</td>
</tr>
<tr>
<th>차 수</th>
<td colspan="3">
<c:out value="${info.adrSn}"></c:out>
</td>
</tr>
<tr>
<th>사 건</th>
<td>
<c:out value="${info.adrNo }"></c:out>
</td>
<th>사건내용</th>
<td>
<c:out value="${info.ccTyTx }"></c:out>
</td>
</tr>
<tr>
<th rowspan="2">신청인</th>
<td rowspan="2">
<c:forEach var="ass" items="${assList}">
<c:if test="${ass.assUsrTy=='10'}">
<p>
<c:out value="${ass.addUsrNm }"></c:out>
</p>
<select name="addUsrIdList" id="addUsrIdList" class="wid_120">
<option value="<c:out value="${ass.addUsrId }|${ass.assUsrTy }|Y|${ass.assSeq}"></c:out>" <c:if test="${ass.addYn=='Y' }">selected="selected"</c:if>>출석</option>
<option value="<c:out value="${ass.addUsrId }|${ass.assUsrTy }|N|${ass.assSeq}"></c:out>" <c:if test="${ass.addYn=='N' }">selected="selected"</c:if>>불출석</option>
</select>
</c:if>
</c:forEach>
</td>
<th>대리인</th>
<td>
<c:forEach var="ass" items="${assList}">
<c:if test="${ass.assUsrTy=='30'}">
<p>
<c:out value="${ass.addUsrNm }"></c:out>
</p>
<select name="addUsrIdList" id="addUsrIdList" class="wid_120">
<option value="<c:out value="${ass.addUsrId }|${ass.assUsrTy }|Y|${ass.assSeq}"></c:out>" <c:if test="${ass.addYn=='Y' }">selected="selected"</c:if>>출석</option>
<option value="<c:out value="${ass.addUsrId }|${ass.assUsrTy }|N|${ass.assSeq}"></c:out>" <c:if test="${ass.addYn=='N' }">selected="selected"</c:if>>불출석</option>
</select>
</c:if>
</c:forEach>
</td>
</tr>
<tr>
<th>참관대리인</th>
<td>
<c:forEach var="ass" items="${assList}">
<c:choose>
<c:when test="${ass.assUsrTy=='35' && ass.isAgnt eq 'Y'}">
<p>
<c:out value="${ass.agntNm }"></c:out>
</p>
<select name="addAgntList" id="addAgntList" class="wid_120">
<option value="<c:out value="${ass.agntSeq }|35|Y|${ass.assSeq}"></c:out>" <c:if test="${ass.addYn=='Y' }">selected="selected"</c:if>>출석</option>
<option value="<c:out value="${ass.agntSeq }|35|N|${ass.assSeq}"></c:out>" <c:if test="${ass.addYn=='N' }">selected="selected"</c:if>>불출석</option>
</select>
</c:when>
<c:when test="${ass.assUsrTy=='30' && ass.isAgnt eq 'N'}">
<button type="button" class="btnType01 btn_change" onclick="fncAddAgnt('${ass.addUsrId}')">참관대리인등록</button>
</c:when>
</c:choose>
</c:forEach>
</td>
</tr>
<tr>
<th rowspan="2">피신청인</th>
<td rowspan="2">
<c:forEach var="ass" items="${assList}">
<c:if test="${ass.assUsrTy=='20'}">
<p>
<c:out value="${ass.addUsrNm }"></c:out>
</p>
<select name="addUsrIdList" id="addUsrIdList" class="wid_120">
<option value="<c:out value="${ass.addUsrId }|${ass.assUsrTy }|Y|${ass.assSeq}"></c:out>" <c:if test="${ass.addYn=='Y' }">selected="selected"</c:if>>출석</option>
<option value="<c:out value="${ass.addUsrId }|${ass.assUsrTy }|N|${ass.assSeq}"></c:out>" <c:if test="${ass.addYn=='N' }">selected="selected"</c:if>>불출석</option>
</select>
</c:if>
</c:forEach>
</td>
<th>대리인</th>
<td>
<c:forEach var="ass" items="${assList}">
<c:if test="${ass.assUsrTy=='40'}">
<p>
<c:out value="${ass.addUsrNm }"></c:out>
</p>
<select name="addUsrIdList" id="addUsrIdList" class="wid_120">
<option value="<c:out value="${ass.addUsrId }|${ass.assUsrTy }|Y|${ass.assSeq}"></c:out>" <c:if test="${ass.addYn=='Y' }">selected="selected"</c:if>>출석</option>
<option value="<c:out value="${ass.addUsrId }|${ass.assUsrTy }|N|${ass.assSeq}"></c:out>" <c:if test="${ass.addYn=='N' }">selected="selected"</c:if>>불출석</option>
</select>
</c:if>
</c:forEach>
</td>
</tr>
<tr>
<th>참관대리인</th>
<td>
<c:forEach var="ass" items="${assList}">
<c:choose>
<c:when test="${ass.assUsrTy=='45' && ass.isAgnt eq 'Y'}">
<p>
<c:out value="${ass.agntNm }"></c:out>
</p>
<select name="addAgntList" id="addAgntList" class="wid_120">
<option value="<c:out value="${ass.agntSeq }|45|Y|${ass.assSeq}"></c:out>" <c:if test="${ass.addYn=='Y' }">selected="selected"</c:if>>출석</option>
<option value="<c:out value="${ass.agntSeq }|45|N|${ass.assSeq}"></c:out>" <c:if test="${ass.addYn=='N' }">selected="selected"</c:if>>불출석</option>
</select>
</c:when>
<c:when test="${ass.assUsrTy=='40' && ass.isAgnt eq 'N'}">
<button type="button" class="btnType01 btn_change" onclick="fncAddAgnt('${ass.addUsrId}')">참관대리인등록</button>
</c:when>
</c:choose>
</c:forEach>
</td>
</tr>
<tr>
<th>조정기일</th>
<td>
<div class="sel_date">
<input type="text" class="appDeDay inp" title="검색시작일" id="appDeDay" name="appDeDay" value="<c:out value="${info.apmAppDeDay }"></c:out>" data-datecontrol="true" onkeyup="setFormat('day',this)" maxlength="10">
<div class="calendar_in" id="calendarName_startDate" style="z-index: 9;">
<button type="button" value="달력 팝업 열기" onclick="return calendarOpen('appDeDay-lry','',this)" class="btn_cal"></button>
<div id="appDeDay-lry" class="calendarPop" style="display: none;">
<iframe id="appDeDay-ifrm" name="appDeDay-ifrm" class="calendar-frame" src="/kccadrPb/adm/calendar.html" title=" 달력 팝업" frameborder="0" scrolling="no"></iframe>
</div>
</div>
</div>
<input type="text" class="time_input" placeholder="11:00" id="appDeTime" name="appDeTime" value="<c:out value="${info.apmAppDeTime }"></c:out>" onkeyup="setFormat('time',this)" maxlength="8">
</td>
<th>공개여부</th>
<td>
<select name="openYn" id="openYn" class="wid_120">
<option value="N" <c:if test="${info.openYn=='N' }">selected="selected"</c:if> >비공개</option>
<option value="Y" <c:if test="${info.openYn=='Y' }">selected="selected"</c:if> >공개</option>
</select>
</td>
</tr>
<tr>
<th>장소</th>
<td colspan="3">
<kc:select codeId="CC020" id="appPlaceTy" name="appPlaceTy" selectedValue="${info.apmAppPlaceTy }" script="onchange='fncShow()'" />
<div id="appPlaceTyDiv" style="display: none;">
<button type="button" class="btnType01" onclick="fn_postCode(this);">주소검색</button>
<input type="hidden" id="appPlaceZipTx" name="appPlaceZipTx" class="adr_input">
<input type="text" id="appPlaceTx" name="appPlaceTx" class="searchResultAddr" size="40" value="<c:out value="${info.apmAppPlaceTx }"></c:out>">
<input type="text" class="dir_input" id="appPlaceDetailTx" name="appPlaceDetailTx" value="<c:out value="${info.apmAppPlaceDetailTx }"></c:out>">
</div>
</td>
</tr>
<tr>
<th>기일결과</th>
<td colspan="3">
<kc:select codeId="CC023" id="appResultTy" name="appResultTy" selectedValue="${info.appResultTy}" onChange="fncNextApp()" />
</td>
</tr>
<tr id="nextApp">
<th>다음 기일 지정 여부</th>
<td>
<div class="radio_wrap">
<span>
<input type="radio" id="nextAppDeY" name="nextAppDeYn" value="Y" <c:if test="${info.nextAppDeYn=='Y' }">checked="checked"</c:if> onclick="fncCheckNextYn()">
<label for="nextAppDeY">필요</label>
</span>
<span>
<input type="radio" id="nextAppDeN" name="nextAppDeYn" value="N" <c:if test="${info.nextAppDeYn=='N' }">checked="checked"</c:if> onclick="fncCheckNextYn()">
<label for="nextAppDeN">필요없음</label>
</span>
</div>
</td>
</tr>
<tr id="nextAppDeRow">
<th>고지된 다음기일</th>
<td colspan="3">
<div class="sel_date">
<input type="text" class="nextAppDeDay inp" title="검색시작일" id="nextAppDeDay" name="nextAppDeDay" data-datecontrol="true" value="<c:out value="${info.nextAppDeDay }" />" onkeyup="setFormat('day',this)" maxlength="10">
<div class="calendar_in" id="calendarName_startDate" style="z-index: 9;">
<button type="button" value="달력 팝업 열기" onclick="return calendarOpen('nextAppDeDay-lry','',this)" class="btn_cal"></button>
<div id="nextAppDeDay-lry" class="calendarPop" style="display: none;">
<iframe id="nextAppDeDay-ifrm" name="nextAppDeDay-ifrm" class="calendar-frame" src="/kccadrPb/adm/calendar.html" title=" 달력 팝업" frameborder="0" scrolling="no"></iframe>
</div>
</div>
</div>
<input type="text" class="time_input" placeholder="11:00:00" id="nextAppDeTime" name="nextAppDeTime" value="<c:out value="${info.nextAppDeTime }" />" onkeyup="setFormat('time',this)" maxlength="8">
</td>
</tr>
<tr>
<th>조서내용</th>
<td colspan="3">
<textarea name="prtclCn" id="prtclCn" cols="30" rows="2"><c:out value="${info.prtclCn }" /></textarea>
</td>
</tr>
<tr>
<th>조정부장</th>
<td colspan="3">
<c:out value="${info.memName }" />
</td>
</tr>
<%-- <tr>
<th>조정위원</th>
<td colspan="3">
<c:out value="${info.memNames }" />
</td>
</tr> --%>
<tr>
<th>조정위원1</th>
<td colspan="3">
<input type="text" size="30" id="addUsrNm0" value="${uiwonInfo.addUsrNm0 }" readonly="readonly" />&nbsp;
<c:if test="${!empty uiwonInfo.addUsrNm0}">
<button type="button" class="btnType01 btn_overlap" onclick="srcAss(0)">대석</button>
</c:if>
</td>
</tr>
<tr>
<th>조정위원2</th>
<td colspan="3">
<input type="text" size="30" id="addUsrNm1" value="${uiwonInfo.addUsrNm1 }" readonly="readonly" />&nbsp;
<c:if test="${!empty uiwonInfo.addUsrNm1}">
<button type="button" class="btnType01 btn_overlap" onclick="srcAss(1)">대석</button>
</c:if>
</td>
</tr>
<tr>
<th>조정조사관</th>
<td colspan="3">
<c:out value="${info.adrAdmNm }" />
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!-- //cont -->
</form:form>
</body>
</html>

View File

@ -0,0 +1,113 @@
<%@ page contentType="text/html; charset=utf-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui"%>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%>
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
<!DOCTYPE html>
<html lang="ko">
<head>
<title>취하종결통보서 상세</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<script type="text/javaScript" language="javascript">
</script>
</head>
<body>
<form:form id="createForm" name="createForm" commandName="adjstChangeDateVO" onsubmit="return false;">
<input type="hidden" id="adrSeq" name="adrSeq" value="<c:out value="${info.adrSeq }"></c:out>" />
<input type="hidden" id="adrSn" name="adrSn" value="<c:out value="${info.adrSn }"></c:out>" />
<input type="hidden" id="closeDocTy" name="closeDocTy" value="<c:out value="${info.closeDocTy }"></c:out>" />
<input type="hidden" id="closeDoc" name="closeDoc" value="<c:out value="${info.closeDoc }"></c:out>" />
<input type="hidden" id="memSeq" name="memSeq" value=""/>
<!-- cont -->
<div class="cont_wrap sub02_1" id="sub">
<div class="inner">
<div class="cont_tit">
<h2>취하종결통보서</h2>
</div>
<div class="tb_wrap">
<div class="tb_top">
<p>취하종결통보서</p>
</div>
<table class="tbType01 tb_offeree">
<caption>취하종결통보서 정보</caption>
<colgroup>
<col style="width: 120px;">
<col style="width: 120px;">
<col style="width: auto;">
</colgroup>
<tbody>
<tr>
<th colspan="2">조정부</th>
<td>
<p>
<c:out value="${info.memDeptNm }"></c:out>
</p>
</td>
</tr>
<tr>
<th colspan="2">사건</th>
<td>
<p>
<c:out value="${info.adrNo }"></c:out>
</p>
</td>
</tr>
<tr>
<th colspan="2">신청내용</th>
<td>
<p>
<c:out value="${info.ccTyTx }"></c:out>
</p>
</td>
</tr>
<tr>
<th colspan="2">제목</th>
<td>
<p>
취하 종결 통보
<%-- <c:out value="${info.appliCantNm }"></c:out> --%>
</p>
</td>
</tr>
<tr>
<th rowspan="2">수신</th>
<th>신청인</th>
<td>
<p>
<c:out value="${info.appliCantNm }"></c:out>
</p>
</td>
</tr>
<tr>
<th>피신청인</th>
<td>
<p>
<c:out value="${info.resPonDentNm }"></c:out>
</p>
</td>
</tr>
<tr>
<th colspan="2">이 유</th>
<td class="td_cause">
<textarea name="closeCn1" id="closeCn1" cols="30" rows="2"><c:out value="${info.closeCn1}"></c:out> </textarea>
</td>
</tr>
<tr>
<th colspan="2">조정부장</th>
<td>
<p>
<c:out value="${info.memName }"></c:out>
</p>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!-- //cont -->
</form:form>
</body>
</html>

View File

@ -0,0 +1,171 @@
<%@ page contentType="text/html; charset=utf-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui"%>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%>
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
<!DOCTYPE html>
<html lang="ko">
<head>
<title>직권조정결정서 상세</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<script type="text/javaScript" language="javascript">
</script>
</head>
<body>
<form:form id="createForm" name="createForm" commandName="adjstChangeDateVO" onsubmit="return false;">
<input type="hidden" id="adrSeq" name="adrSeq" value="<c:out value="${info.adrSeq }"></c:out>" />
<input type="hidden" id="adrSn" name="adrSn" value="<c:out value="${info.adrSn }"></c:out>" />
<input type="hidden" id="closeDocTy" name="closeDocTy" value="<c:out value="${info.closeDocTy }"></c:out>" />
<input type="hidden" id="closeDoc" name="closeDoc" value="<c:out value="${info.closeDoc }"></c:out>" />
<input type="hidden" id="memSeq" name="memSeq" value=""/>
<!-- cont -->
<div class="cont_wrap sub02_1" id="sub">
<div class="inner">
<div class="cont_tit">
<h2>직권조정결정서</h2>
</div>
<div class="tb_wrap">
<div class="tb_top">
<p>직권조정결정서</p>
</div>
<table class="tbType01 tb_offeree">
<caption>직권조정결정서 정보</caption>
<colgroup>
<col style="width: 160px;">
<col style="width: auto;">
</colgroup>
<tbody>
<tr>
<th>조정부</th>
<td>
<p>
<c:out value="${info.memDeptNm }"></c:out>
</p>
</td>
</tr>
<tr>
<th>사건</th>
<td>
<p>
<c:out value="${info.adrNo }"></c:out>
</p>
</td>
</tr>
<tr>
<th>신청인</th>
<td>
<p>
<c:out value="${info.appliCantNm }"></c:out>
</p>
</td>
</tr>
<tr>
<th>피신청인</th>
<td>
<p>
<c:out value="${info.resPonDentNm }"></c:out>
</p>
</td>
</tr>
<tr>
<th>결정일</th>
<td>
<div class="sel_date">
<input type="text" class="rplyEndDeDay inp" title="검색시작일" id="rplyEndDeDay" name="rplyEndDeDay" onclick="return calendarOpen('rplyEndDeDay-lry','',this)" value="<c:out value="${drtCtrVO.rplyEndDeDay }"></c:out>" data-datecontrol="true" readonly>
<div class="calendar_in" id="calendarName_startDate" style="z-index: 9;">
<button type="button" value="달력 팝업 열기" onclick="return calendarOpen('rplyEndDeDay-lry','',this)" class="btn_cal"></button>
<div id="rplyEndDeDay-lry" class="calendarPop" style="display: none;">
<iframe id="rplyEndDeDay-ifrm" name="rplyEndDeDay-ifrm" class="calendar-frame" src="/kccadrPb/adm/calendar.html" title=" 달력 팝업" frameborder="0" scrolling="no"></iframe>
</div>
</div>
</div>
</td>
</tr>
<tr>
<th>송달완료일</th>
<td>
<p>
<c:out value="${info.recDe}"></c:out>
</p>
</td>
</tr>
<tr>
<th>이의신청기한</th>
<td>
<div class="sel_date">
<input type="text" class="adrOjctDe inp" title="검색시작일" id="adrOjctDe" name="adrOjctDe" onclick="return calendarOpen('adrOjctDe-lry','',this)" value="<c:out value="${drtCtrVO.adrOjctDe }"></c:out>" data-datecontrol="true" readonly>
<div class="calendar_in" id="calendarName_startDate" style="z-index: 9;">
<button type="button" value="달력 팝업 열기" onclick="return calendarOpen('adrOjctDe-lry','',this)" class="btn_cal"></button>
<div id="adrOjctDe-lry" class="calendarPop" style="display: none;">
<iframe id="adrOjctDe-ifrm" name="adrOjctDe-ifrm" class="calendar-frame" src="/kccadrPb/adm/calendar.html" title=" 달력 팝업" frameborder="0" scrolling="no"></iframe>
</div>
</div>
</div>
</td>
</tr>
<tr>
<th>주문</th>
<td class="td_cause">
<%-- <input type="text" name="closeCn3" id="closeCn3" value="<c:out value="${drtCtrVO.closeCn3 }"></c:out>" size="70"> --%>
<textarea name="closeCn3" id="closeCn3" cols="30" rows="3"><c:out value="${drtCtrVO.closeCn3}"/></textarea>
</td>
</tr>
<tr>
<th>신청취지</th>
<td class="td_cause">
<%-- <input type="text" name="closeCn2" id="closeCn2" value="<c:out value="${drtCtrVO.closeCn2 }"></c:out>" size="70"> --%>
<textarea name="closeCn2" id="closeCn2" cols="30" rows="3"><c:out value="${drtCtrVO.closeCn2 }"/></textarea>
</td>
</tr>
<tr>
<th>이유</th>
<td class="td_cause">
<textarea name="closeCn1" id="closeCn1" cols="30" rows="2"><c:out value="${drtCtrVO.closeCn1 }"></c:out> </textarea>
</td>
</tr>
<tr>
<th>조정부장</th>
<td>
<p>
<c:out value="${info.memName }" />
<c:forEach var="cmnList" items="${cmnList}" varStatus="status">
<c:if test="${info.memSeq eq cmnList.memSeq}">
<button type="button" class="btnType01 btn_change" onclick="fncCmnDetail('<c:out value="${cmnList.memSeq}"/>')">의견정보</button>
</c:if>
</c:forEach>
</p>
</td>
</tr>
<%-- 조정위원 이름 split 처리 --%>
<c:set var="memNmList" value="${fn:split(info.memNames, ', ')}"/>
<%-- 조정위원 일련번호 split 처리 --%>
<c:set var="memSeqsList" value="${fn:split(info.memSeqs, ', ')}"/>
<c:forEach var="memNm" items="${memNmList}" varStatus="status">
<tr>
<th>조정위원</th>
<td>
<p>
<c:out value="${memNm}" />
<%-- 현재 선택된 조정위원에 해당하는 일련번호 변수 저장 --%>
<c:set var="memSeqNo" value="${memSeqsList[status.index]}"/>
<c:forEach var="cmnList" items="${cmnList}" varStatus="status">
<c:if test="${memSeqNo eq cmnList.memSeq}">
<button type="button" class="btnType01 btn_change" onclick="fncCmnDetail('<c:out value="${cmnList.memSeq}"/>')">의견정보</button>
</c:if>
</c:forEach>
</p>
</td>
</tr>
</c:forEach>
</tbody>
</table>
</div>
</div>
</div>
<!-- //cont -->
</form:form>
</body>
</html>

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long