Merge branch 'hylee'

This commit is contained in:
hylee 2022-09-08 12:50:50 +09:00
commit c3d1e01c8a
7 changed files with 557 additions and 104 deletions

View File

@ -139,6 +139,20 @@ public class AdjstExpDetailController {
model.addAttribute("resInfo" , resInfo); model.addAttribute("resInfo" , resInfo);
return "/web/kccadr/adjstExpDetail/adjstReqStatusTabDetail"; return "/web/kccadr/adjstExpDetail/adjstReqStatusTabDetail";
} }
/**
* 조정진행 상세 Tab 사건진행 화면
*/
@RequestMapping("/web/kccadr/adjstExpDetail/tab/adjstReqStatusTabStatus.do")
public String adjstReqStatusTabStatus() throws Exception {
return "/web/kccadr/adjstExpDetail/adjstReqStatusTabStatus";
}
/**
* 조정진행 상세 Tab 조정기록 화면
*/
@RequestMapping("/web/kccadr/adjstExpDetail/tab/adjstReqStatusTabNormal.do")
public String adjstReqStatusTabNormal() throws Exception {
return "/web/kccadr/adjstExpDetail/adjstReqStatusTabNormal";
}
/** /**
* 조정신청 구분선택 - 안내화면 * 조정신청 구분선택 - 안내화면
@ -164,7 +178,6 @@ public class AdjstExpDetailController {
- 직권조정 결정서 상세 - 직권조정 결정서 상세
*/ */
System.out.println("adjstReqStatusVO.getExpCode() : "+ adjstReqStatusVO.getExpCode());
switch (adjstReqStatusVO.getExpCode()) { switch (adjstReqStatusVO.getExpCode()) {
case "01": returnUrl += "expAnsSubmit"; case "01": returnUrl += "expAnsSubmit";

View File

@ -234,7 +234,7 @@ function fn_adjstReq_preview() {
</div> </div>
<!-- 하단 버튼 --> <!-- 하단 버튼 -->
<div class="btn_wrap btn_layout03"> <div class="btn_wrap btn_layout03">
<div class="btn_left"><button type="button" class="btnType04 btn_move" onclick="AdjstReq.fncGoPrev();">2단계이동</button></div> <!-- <div class="btn_left"><button type="button" class="btnType04 btn_move" onclick="AdjstReq.fncGoPrev();">2단계이동</button></div> -->
<div class="btn_right"> <div class="btn_right">
<button type="button" class="btnType02 btn_save" onClick="AdjstReq.step3Save('<c:out value='${KccadrConstants.ADR_MODE_SMT}' />'); return false;">조정신청서 제출</button> <button type="button" class="btnType02 btn_save" onClick="AdjstReq.step3Save('<c:out value='${KccadrConstants.ADR_MODE_SMT}' />'); return false;">조정신청서 제출</button>
</div> </div>

View File

@ -34,8 +34,8 @@
} }
function getPageUrl(idx){ function getPageUrl(idx){
switch (idx) { switch (idx) {
case 1 : return '/web/kccadr/accdnt/ars/tab/adjstReqStatusTabNormal.do'; case 1 : return '/web/kccadr/adjstExpDetail/tab/adjstReqStatusTabNormal.do';
case 2 : return '/web/kccadr/accdnt/ars/tab/adjstReqStatusTabStatus.do'; case 2 : return '/web/kccadr/adjstExpDetail/tab/adjstReqStatusTabStatus.do';
default: return '/web/kccadr/adjstExpDetail/tab/adjstReqStatusTabDetail.do'; default: return '/web/kccadr/adjstExpDetail/tab/adjstReqStatusTabDetail.do';
} }
} }

View File

@ -15,7 +15,6 @@
function fncGoNextPage(){ function fncGoNextPage(){
var pageForm = document.pageForm;
var index = Number($('#pageExpIndex').val())+1; var index = Number($('#pageExpIndex').val())+1;
$('#pageExpIndex').val(index); $('#pageExpIndex').val(index);
tabPageLoad(0); tabPageLoad(0);
@ -86,6 +85,14 @@
} }
}); });
$('.step').click(function(){
var pageExpIndex = $(this).data('info');
$('#pageExpIndex').val(pageExpIndex);
tabPageLoad(0);
});
//접수증 팝업 //접수증 팝업
function fn_adjstReq_receipt_report() { function fn_adjstReq_receipt_report() {
window.open("<c:url value='/web/kccadr/adjst/report/adjstReqReceiptReportAjax.do?adrSeq=${adjstReqStatusVO.adrSeq}'/>"); window.open("<c:url value='/web/kccadr/adjst/report/adjstReqReceiptReportAjax.do?adrSeq=${adjstReqStatusVO.adrSeq}'/>");
@ -143,7 +150,7 @@ resInfo--%>
<!-- step --> <!-- step -->
<div class="step_wrap status_detail"> <div class="step_wrap status_detail">
<div class="step step01 <c:out value="${pageExpIndex eq '1' ? 'active' : ''}" />"> <div class="step step01 <c:out value="${pageExpIndex eq '1' ? 'active' : ''}" />" data-info="1" style="cursor:pointer;">
<i></i> <i></i>
<p> <p>
STEP. 01 STEP. 01
@ -151,7 +158,7 @@ resInfo--%>
</p> </p>
<i class="next">다음</i> <i class="next">다음</i>
</div> </div>
<div class="step step02 <c:out value="${pageExpIndex eq '2' ? 'active' : ''}" />"> <div class="step step02 <c:out value="${pageExpIndex eq '2' ? 'active' : ''}" />" data-info="2" style="cursor:pointer;">
<i></i> <i></i>
<p> <p>
STEP. 02 STEP. 02
@ -159,7 +166,7 @@ resInfo--%>
</p> </p>
<i class="next">다음</i> <i class="next">다음</i>
</div> </div>
<div class="step step03 <c:out value="${pageExpIndex eq '3' ? 'active' : ''}" />"> <div class="step step03 <c:out value="${pageExpIndex eq '3' ? 'active' : ''}" />" data-info="3" style="cursor:pointer;">
<i></i> <i></i>
<p> <p>
STEP. 03 STEP. 03
@ -167,7 +174,7 @@ resInfo--%>
</p> </p>
<i class="next">다음</i> <i class="next">다음</i>
</div> </div>
<div class="step step04 <c:out value="${pageExpIndex eq '4' ? 'active' : ''}" />"> <div class="step step04 <c:out value="${pageExpIndex eq '4' ? 'active' : ''}" />" data-info="4" style="cursor:pointer;">
<i></i> <i></i>
<p> <p>
STEP. 04 STEP. 04
@ -175,7 +182,7 @@ resInfo--%>
</p> </p>
<i class="next">다음</i> <i class="next">다음</i>
</div> </div>
<div class="step step05 <c:out value="${pageExpIndex eq '5' ? 'active' : ''}" />"> <div class="step step05 <c:out value="${pageExpIndex eq '5' ? 'active' : ''}" />" data-info="5" style="cursor:pointer;">
<i></i> <i></i>
<p> <p>
STEP. 05 STEP. 05
@ -323,7 +330,6 @@ resInfo--%>
<button type="button" class="btnType07" onclick="fn_openPop('01'); return false;">답변서 제출</button> <button type="button" class="btnType07" onclick="fn_openPop('01'); return false;">답변서 제출</button>
<c:choose> <c:choose>
<c:when test="${pageExpIndex eq 2 }"> <c:when test="${pageExpIndex eq 2 }">
<button type="button" class="btnType07" onclick="fncGoAgnReqList();">조정 대리인 신청</button>
<button type="button" class="btnType07" onclick="fn_openPop('02'); return false;">조정 대리인 신청</button> <button type="button" class="btnType07" onclick="fn_openPop('02'); return false;">조정 대리인 신청</button>
<button type="button" class="btnType07" onclick="fncGoChangeDateList();">기일변경 요청</button> <button type="button" class="btnType07" onclick="fncGoChangeDateList();">기일변경 요청</button>
<button type="button" class="btnType07" onclick="fncGoWithDrawList();">조정 취하 신청</button> <button type="button" class="btnType07" onclick="fncGoWithDrawList();">조정 취하 신청</button>

View File

@ -0,0 +1,364 @@
<%@ 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">
$(document).ready(function(){
$("input[name=chkAll]").click(function(){
$("input[name=chk]").prop("checked" , $(this).is(":checked"));
});
});
function fnc_download(p_path, p_file){
var data = new FormData(document.getElementById("popCreateForm"));
data.append("adrSeq" ,$("#adrSeq").val());
if ($("input:checkbox[name=chk]:checked").length==0){
alert("선택한 항목이 없습니다.");
return;
}
$("input:checkbox[name=chk]:checked").each(function(){
var i_var = $(this).val().split('-');
if (i_var.length==2){
fn_egov_downFile(i_var[0], i_var[1]);
}else if (i_var.length==3){
fn_egov_downFileD(p_path, p_file);
//alert("조정신청서 다운로드는 현재 준비중입니다.");
}
});
}
//다운로드 전송 데이터
var d_data;
var d_nDate;
var d_i_1; //checker counter 1
var d_i_1_re; //call counter
var d_i_2; //checker counter 2
var d_i_3; //checker counter 3
//문서보기 클릭상태
var d_is_view = 0; //0-클릭가능, 1-진행중
//선택 다운로드 1.시작 함수
function fnc_view_download_step_1(){
alert("체험하기 기능 입니다.");
}
//선택 다운로드 2.요청 함수 호출
function fnc_view_download_step_1_after(d_data){
setTimeout(function(){
$.ajax({
type: "POST",
url: "/web/kccadr/accdnt/ars/tab/adjstReqStatusTabStatusDownloadStep1Ajax.do",
data: d_data,
dataType:'json',
async: false,
processData: false,
contentType: false,
cache: false,
success: function (returnData, status) {
console.log(returnData.result);
//alert(returnData.result);
if(returnData.result == 'SUCCESS'){
d_i_1 = 1; //파일 생성 checker count 초기화
//파일 생성 checker 함수 호출
fnc_view_download_step_1_checker();
}else{
d_is_view = 0; //선택다운로드 완료
$("#d_btnType01_popup_close").click(); //선택다운로드 창닫기
alert(returnData.message);
}
},
error: function (e) { d_is_view = 0;$("#d_btnType01_popup_close").click();alert("요청에 실패하였습니다."); console.log("ERROR : ", e); }
});
},2000);
}
//선택 다운로드 3.파일 생성 checker 함수 호출
function fnc_view_download_step_1_checker(){
//var data = new FormData(document.getElementById("popCreateForm"));
//data.append("adrSeq" ,$("#adrSeq").val());
var d_data = new FormData(document.getElementById("popCreateForm"));
d_data.append("adrSeq" ,$("#adrSeq").val());
d_data.append("time_dir" ,d_nDate);
$.ajax({
type: "POST",
url: "/web/kccadr/accdnt/ars/tab/adjstReqStatusTabStatusDownloadStep1CheckerAjax.do",
data: d_data,
dataType:'json',
async: false,
processData: false,
contentType: false,
cache: false,
success: function (returnData, status) {
console.log(returnData.result);
//alert(returnData.result);
if(returnData.result == 'SUCCESS'){
//alert("정상적으로 문서보기 신청 되었습니다.");
d_is_view = 0; //선택다운로드 완료
$("#d_btnType01_popup_close").click(); //선택다운로드 창닫기
//생성된 파일 다운로드
fnc_download(returnData.path, returnData.file);
}else{
d_i_1 = d_i_1 + 1; //파일 생성 checker count 증가
if (d_i_1<20) { //체크(현재30번 필요시 값을 늘린다.)
setTimeout(function(){
fnc_view_download_step_1_checker();
},2000);
}else{ //체크에 실패한 경우 2번더 실행한다.(필요시 값을 늘린다.)
setTimeout(function(){
if (d_i_1_re<6){ //요청값 확인
d_i_1_re = d_i_1_re + 1; //요청값 중가
//다시 파일 생성 요청
fnc_view_download_step_1_after(d_data);
}else{
d_is_view = 0; //선택다운로드 완료
$("#d_btnType01_popup_close").click(); //선택다운로드 창닫기
alert(returnData.message);
}
},2000);
}
}
},
error: function (e) { d_is_view = 0;$("#d_btnType01_popup_close").click();alert("요청에 실패하였습니다."); console.log("ERROR : ", e); }
});
}
//file download - 첨부파일
function fn_egov_downFile(atchFileId, fileSn){
window.open("<c:url value='/cmm/fms/FileDown.do?atchFileId="+atchFileId+"&fileSn="+fileSn+"'/>");
}
//file download - PDF변환기로 생성된 파일
function fn_egov_downFileD(p_path, p_file){
window.open("<c:url value='/cmm/fms/FileDownD.do?path="+p_path+"&file="+p_file+"'/>");
}
//pdf viewer
function fn_pdf_viewer(p_file_name, p_time_dir){
window.open("<c:url value='/web/kccadr/pdf/pdfview.do?webFile="+p_file_name+"&time_dir="+p_time_dir+"'/>");
}
//문서보기 전송 데이터
var data;
var nDate;
var i_1; //checker counter 1
var i_1_re; //call counter
var i_2; //checker counter 2
var i_2_re; //call counter
var i_3; //checker counter 3
var i_3_re; //call counter
//문서보기 클릭상태
var is_view = 0; //0-클릭가능, 1-진행중
function fnc_view_step_1_popup(){
alert("체험하기 기능 입니다.");
}
//문서보기 1단계 - 파일 생성
function fnc_view_step_1_test(){
alert("체험하기 기능 입니다.");
}
//문서보기 1단계 - 파일 생성 체커
function fnc_view_step_1_checker(){
alert("체험하기 기능 입니다.");
}
//문서보기 2단계 - 단권화 실행
function fnc_view_step_2(){
alert("체험하기 기능 입니다.");
}
//문서보기 2단계 - 단권화 실행 체커
function fnc_view_step_2_checker(){
alert("체험하기 기능 입니다.");
}
</script>
</head>
<body>
<button type="button" data-tooltip="loading_info_popup" class="btnType01" id="btnType01popupopen" style="display:none;">로딩팝업 나와라 쨘</button>
<button type="button" data-tooltip="loading_info_popup" class="btnType01" id="d_btnType01popupopen" style="display:none;">로딩팝업 나와라 쨘</button>
<!-- 조정비용 안내 -->
<div class="tooltip-wrap">
<div class="popup_wrap loading_info_popup" tabindex="0" data-tooltip-con="loading_info_popup"
data-focus="loading_info_popup" data-focus-prev="loading_info_popup_close">
<div class="popup_tit">
<p>진행 안내-최대 10분까지 소요될 수 있습니다.</p> <button class="btn_popup_close tooltip-close" data-focus-next="loading_info_popup" data-focus="loading_info_popup_close"
title="팝업 닫기" id="btnType01_popup_close"><i></i></button>
</div>
<div class="popup_cont">
<div class="info_wrap" id="btnType01_info_wrap">
<p>문서보기 파일 생성 중 입니다.</p>
<p>STEP1/3 - PDF파일로 변환 중 입니다.</p>
</div>
<!-- <p>아니면 그냥 이렇게 쓰셔도 됩니다! <br> 이런 p태그는 br로 줄 나눠주시면 감사하겠습니다!</p> -->
<div class="load_img">
<img src="/kccadrPb/usr/image/loading.gif" alt="로딩중">
<p>정보를 불러오고 있습니다.</p>
<p class="cf_text">잠시만 기다려주십시오</p>
</div>
</div>
</div>
</div>
<!-- //조정비용 안내 -->
<!-- 조정비용 안내 -->
<div class="tooltip-wrap">
<div class="popup_wrap loading_info_popup" tabindex="0" data-tooltip-con="loading_info_popup"
data-focus="loading_info_popup" data-focus-prev="loading_info_popup_close">
<div class="popup_tit">
<p>진행 안내-최대 10분까지 소요될 수 있습니다.</p> <button class="btn_popup_close tooltip-close" data-focus-next="loading_info_popup" data-focus="loading_info_popup_close"
title="팝업 닫기" id="d_btnType01_popup_close"><i></i></button>
</div>
<div class="popup_cont">
<div class="info_wrap" id="d_btnType01_info_wrap">
<p>선택다운로드 파일 생성 중 입니다.</p>
<p>STEP1/1 - PDF파일로 변환 중 입니다.</p>
</div>
<!-- <p>아니면 그냥 이렇게 쓰셔도 됩니다! <br> 이런 p태그는 br로 줄 나눠주시면 감사하겠습니다!</p> -->
<div class="load_img">
<img src="/kccadrPb/usr/image/loading.gif" alt="로딩중">
<p>정보를 불러오고 있습니다.</p>
<p class="cf_text">잠시만 기다려주십시오</p>
</div>
</div>
</div>
</div>
<!-- //조정비용 안내 -->
<form:form commandName="adjstIncidentVO" id="popCreateForm" name="popCreateForm" method="post" onsubmit="return false;">
<table class="tbType02">
<caption>조정진행 상세 - 조정기록 : 일자, 등록인, 문건명, 상대방 공개여부 등 정보제공</caption>
<colgroup>
<col style="width: 10%;">
<col style="width: 15%;">
<col style="width: auto;">
<col style="width: 20%;">
</colgroup>
<thead>
<tr>
<th scope="col"><input type="checkbox" name="chkAll" value="All" title="모두체크"></th>
<th scope="col">일자</th>
<th scope="col">등록인</th>
<th scope="col">문건명</th>
<th scope="col">상대방 공개여부</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<p>
<input name="chk" type="checkbox" value="FILE_000000000013660--1" title="체크">
</p>
</td>
<td>
<p>2022-09-23</p>
</td>
<td>
<p>체험인</p>
</td>
<td><a href="#" onclick="alert('체험하기 기능입니다.'); return false;">[체험]조정신청서</a></td>
<td>
<p>
공개
</p>
</td>
</tr>
<tr>
<td>
<p>
<input name="chk" type="checkbox" value="FILE_000000000013660-0" title="체크">
</p>
</td>
<td>
<p>2022-10-30</p>
</td>
<td>
<p>체험인</p>
</td>
<td><a href="#" onclick="alert('체험하기 기능입니다.'); return false;">[체험]메인비주얼.jpg</a></td>
<td>
<p>공개</p>
</td>
</tr>
<tr>
<td>
<p>
<input name="chk" type="checkbox" value="FILE_000000000013680-0" title="체크">
</p>
</td>
<td>
<p>2022-11-24</p>
</td>
<td>
<p>체험인</p>
</td>
<td><a href="#" onclick="alert('체험하기 기능입니다.'); return false;">[체험]체험 테스트 파일.hwp</a></td>
<td>
<p>비공개</p>
</td>
</tr>
</tbody>
</table>
</form:form>
<div class="btn_wrap btn_layout03">
<div class="btn_left">
</div>
<div class="btn_right">
<button class="btnType11 btn_list" onclick="fnc_view_step_1_popup(); return false;">문서보기</button>
<button class="btnType11 btn_list" onclick="fnc_view_download_step_1(); return false;">선택다운로드</button>
<!-- <button class="btnType11 btn_list" onclick="fncGoList(); return false;">목록</button> -->
</div>
</div>
</body>
</html>

View File

@ -0,0 +1,101 @@
<%@ 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"%>
<%@ taglib prefix="kc" uri="/WEB-INF/tlds/kcc_tld.tld"%>
<!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">
/* 아래 함수 종결상세화면으로 이동 예정 */
//function fncSecurityPop2(adrSeq,edtTy,edtSn) {
function fncSecurityPop2(docuReqCd) {
commonPopLayeropen(
"/web/kccadr/accdnt/ars/tab/docIssReqViewPop.do"
, 800
, 600
, {docuReqCd : docuReqCd, adrSeq : $("#adrSeq").val()}
, "N"
, "securityPop"
);
}
$(document).ready(function() {
var statCd = $(".top_progress").find("#statCd").val();
if (statCd != "400000") {
$(".closeBtn").css("display", "none");
}
});
</script>
</head>
<body>
<div class="tb_wrap">
<table class="tbType02">
<caption>조정진행 상세 - 사건진행 : 일자, 진행현황, 비고 등 정보제공</caption>
<colgroup>
<col style="width: 25%;">
<col style="width: auto;">
<col style="width: 25%;">
</colgroup>
<thead>
<tr>
<th scope="col">일자</th>
<th scope="col">진행현황</th>
<th scope="col">비고</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<p>2022-01-01</p>
</td>
<td class="td_info">
[체험] 조정접수
</td>
<td></td>
</tr>
<tr>
<td>
<p>2022-02-05</p>
</td>
<td class="td_info">
[체험] 신청인 홍길동 답변서 제출
</td>
<td></td>
</tr>
<tr>
<td>
<p>2022-04-07</p>
</td>
<td class="td_info">
[체험] 접수 결재 완료
</td>
<td></td>
</tr>
</tbody>
</table>
</div>
<div class="btn_wrap btn_layout03">
<div class="btn_left">
<div class="closeBtn">
<%-- <c:if test="${list.statCd == '309050' || list.statCd == '310050' || list.statCd == '311050'}"> --%>
<button type="button" class="btnType07" onclick="fncSecurityPop2('10');">기록열람 요청</button>
<button type="button" class="btnType07" onclick="fncSecurityPop2('20');">조정조서 발급요청</button>
<%-- </c:if> --%>
</div>
</div>
<div class="btn_right">
<button class="btnType11 btn_list" onclick="fncGoList(); return false;">목록</button>
</div>
</div>
</body>
</html>

View File

@ -23,100 +23,63 @@ $(document).ready(function(){
// $(':input').attr("disabled"); // $(':input').attr("disabled");
}); });
// $(function() { $(function() {
// $('#filebutton').click(function(e) { $('#filebutton').click(function(e) {
// e.preventDefault(); e.preventDefault();
// $('#file_temp').click(); $('#file_temp').click();
// }); });
// }); });
// function fncReg() { function fncReg() {
// var f = document.getElementById("listForm"); alert("체험 기능입니다.")
// var data = new FormData(f); }
// _fileForm2.forEach(function(obj, idx) {
// if (obj)
// data.append("file" + idx, obj.fileObj);
// });
// if (validation()) { function validation() {
// if(confirm("답변서를 등록 하시겠습니까?")){
// $.ajax({ // $('#adrDocCn1').val( $('#rpplEmail01').val()+'@'+$('#rpplEmail02').val() );
// type : "POST", // $('#rpplPhone').val( $('#rpplPhone01').val()+'-'+$('#rpplPhone02').val()+'-'+$('#rpplPhone03').val() );
// enctype : 'multipart/form-data', if (isEmpty($('#adrDocCn1').val())) {
// url : "/web/kccadr/accdnt/ans/ansSubmitAjax.do", alert('답변내용을 입력해 주세요.');
// data : data, return false;
// dataType : 'json', }
// async : false,
// processData : false,
// contentType : false,
// cache : false,
// success : function(returnData, status) {
// if (returnData.result == 'success') {
// alert("답변서 제출이 완료되었습니다.");
// listPage();
// } else {
// alert(returnData.message);
// }
// }, if (isEmpty($('#adrDocTy').val())) {
// error : function(e) { alert('문건명을 선택해주세요.');
// alert("답변서 제출에 실패하였습니다."); return false;
// console.log("ERROR : ", e); }
// }
// });
// }
// } if ($('#tbody_fiielist tr').length * 1 <= 0) {
alert("첨부서류를 등록해 주세요");
return false;
// } }
return true;
}
// function validation() { function fncGoList() {
var varFrom = document.getElementById("listForm");
varFrom.action = "<c:url value='/web/kccadr/accdnt/ars/adjstReqStatusDetail.do'/>";
varFrom.submit();
}
// // $('#adrDocCn1').val( $('#rpplEmail01').val()+'@'+$('#rpplEmail02').val() ); function notiOpenYn() {
// // $('#rpplPhone').val( $('#rpplPhone01').val()+'-'+$('#rpplPhone02').val()+'-'+$('#rpplPhone03').val() ); if (confirm('제한공개는 영업비밀 등에 해당하는 경우만 선택해 주십시요.' + '\n공정한 진행을 위해 위원회 판단으로 공개로 전환될 수 있습니다.' + '\n제한공개로 선택 하시겠습니까?')) {
// if (isEmpty($('#adrDocCn1').val())) { $("#openYn_N").prop('checked', true);
// alert('답변내용을 입력해 주세요.'); } else {
// return false; $("#openYn_Y").prop('checked', true);
// } }
// if (isEmpty($('#adrDocTy').val())) { }
// alert('문건명을 선택해주세요.');
// return false;
// }
// if ($('#tbody_fiielist tr').length * 1 <= 0) { function listPage(){
// alert("첨부서류를 등록해 주세요"); //location.href="<c:url value='/web/kccadr/accdnt/ars/adjstReqStatusDetail.do'/>";
// return false; fncGoList();
}
// }
// return true;
// }
// function fncGoList() {
// var varFrom = document.getElementById("listForm");
// varFrom.action = "<c:url value='/web/kccadr/accdnt/ars/adjstReqStatusDetail.do'/>";
// varFrom.submit();
// }
// function notiOpenYn() {
// if (confirm('제한공개는 영업비밀 등에 해당하는 경우만 선택해 주십시요.' + '\n공정한 진행을 위해 위원회 판단으로 공개로 전환될 수 있습니다.' + '\n제한공개로 선택 하시겠습니까?')) {
// $("#openYn_N").prop('checked', true);
// } else {
// $("#openYn_Y").prop('checked', true);
// }
// }
// function listPage(){
// //location.href="<c:url value='/web/kccadr/accdnt/ars/adjstReqStatusDetail.do'/>";
// fncGoList();
// }
</script> </script>
<link rel="stylesheet" href="/kccadrPb/usr/css/reset.css"> <link rel="stylesheet" href="/kccadrPb/usr/css/reset.css">
<link rel="stylesheet" href="/kccadrPb/usr/css/font.css"> <link rel="stylesheet" href="/kccadrPb/usr/css/font.css">
@ -127,6 +90,11 @@ $(document).ready(function(){
<body> <body>
<c:set var="now" value="<%=new java.util.Date()%>" />
<c:set var="sysDay"><fmt:formatDate value="${now}" pattern="yyyy.MM.dd" /></c:set> 
<c:set var="Year"><fmt:formatDate value="${now}" pattern="yyyy" /></c:set> 
<c:set var="Day"><fmt:formatDate value="${now}" pattern="MMdd" /></c:set> 
<form id="listForm" name="listForm" method="post" onsubmit="return false;" enctype="multipart/form-data"> <form id="listForm" name="listForm" method="post" onsubmit="return false;" enctype="multipart/form-data">
<input type="hidden" name="adrSeq" value="<c:out value='${info.adrSeq}'/>" /> <input type="hidden" name="adrSeq" value="<c:out value='${info.adrSeq}'/>" />
<input type="hidden" name="adrSn" value="<c:out value='${info.adrSn}'/>" /> <input type="hidden" name="adrSn" value="<c:out value='${info.adrSn}'/>" />
@ -172,7 +140,7 @@ $(document).ready(function(){
</th> </th>
<td> <td>
<p> <p>
<c:out value="${info.adrNo }"></c:out> <c:out value='${Year}' />조정<c:out value='${Day}' />
</p> </p>
</td> </td>
@ -183,7 +151,7 @@ $(document).ready(function(){
</th> </th>
<td> <td>
<p> <p>
<c:out value="${info.memDeptNm }"></c:out> 체험 조정부
</p> </p>
</td> </td>
</tr> </tr>
@ -193,7 +161,7 @@ $(document).ready(function(){
</th> </th>
<td> <td>
<p> <p>
<c:out value="${info.appliCantNm }"></c:out> 체험자
</p> </p>
</td> </td>
</tr> </tr>
@ -203,7 +171,7 @@ $(document).ready(function(){
</th> </th>
<td> <td>
<p> <p>
<c:out value="${info.resPonDentNm }"></c:out> 피체험자
</p> </p>
</td> </td>
</tr> </tr>
@ -223,7 +191,8 @@ $(document).ready(function(){
<th scope="row"> <th scope="row">
<p class="req_text"><span>필수입력 항목</span>*</p> <p class="req_text"><span>필수입력 항목</span>*</p>
<p>답변내용</p> <p>답변내용</p>
<button class="btnType01 btn_adr_search examBtn" data-tooltip="fee_info_popup" onclick="AdjstReq.openAnswerExamplePop('CC003'); return false;" title="예문 팝업 열림">예문</button> <!-- <button class="btnType01 btn_adr_search examBtn" data-tooltip="fee_info_popup" onclick="AdjstReq.openAnswerExamplePop('CC003'); return false;" title="예문 팝업 열림">예문</button> -->
<button class="btnType01 btn_adr_search examBtn" data-tooltip="fee_info_popup" onclick="alert('체험하기 기능입니다.'); return false;" title="예문 팝업 열림">예문</button>
</th> </th>
<td> <td>
<label for="adrDocCn1" class="label">답변내용 입력</label> <label for="adrDocCn1" class="label">답변내용 입력</label>
@ -361,8 +330,8 @@ $(document).ready(function(){
<div class="btn_wrap btn_layout03"> <div class="btn_wrap btn_layout03">
<div class="btn_left"></div> <div class="btn_left"></div>
<div class="btn_right"> <div class="btn_right">
<button class="btnType09 btn_edit" disabled onclick="fncReg()">등록</button> <button class="btnType09 btn_edit" onclick="fncReg()">등록</button>
<button class="btnType11 btn_list" disabled onclick="fncGoList();">취소</button> <button class="btnType11 btn_list" onclick="window.close();">닫기</button>
</div> </div>
</div> </div>
<!-- //하단 버튼 --> <!-- //하단 버튼 -->