Merge branch 'hylee' into advc
This commit is contained in:
commit
b9d27b1ae7
@ -2,6 +2,8 @@ package kcc.ve.oprtn.cndtnSspnIdtmt.trgtMng.service;
|
|||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
import kcc.ve.instr.tngrVisitEdu.prcsInfo.service.VEPrcsDetailVO;
|
||||||
|
|
||||||
|
|
||||||
public interface CndtnTrgtMngService {
|
public interface CndtnTrgtMngService {
|
||||||
|
|
||||||
@ -17,6 +19,8 @@ public interface CndtnTrgtMngService {
|
|||||||
|
|
||||||
int findCntreqNmber(String reqNmbrTemp);
|
int findCntreqNmber(String reqNmbrTemp);
|
||||||
|
|
||||||
|
void updateTrgtDuplAjax(CndtnTrgtMngVO cndtnTrgtInfoMngVO);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -46,6 +46,7 @@ public class CndtnTrgtMngVO extends ComDefaultVO implements Serializable {
|
|||||||
|
|
||||||
|
|
||||||
private List<String> searchSelStatusList;
|
private List<String> searchSelStatusList;
|
||||||
|
private List<String> sspnIdtmtTrgtOrdList;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -217,6 +218,12 @@ public class CndtnTrgtMngVO extends ComDefaultVO implements Serializable {
|
|||||||
public void setDBirth(String dBirth) {
|
public void setDBirth(String dBirth) {
|
||||||
DBirth = dBirth;
|
DBirth = dBirth;
|
||||||
}
|
}
|
||||||
|
public List<String> getSspnIdtmtTrgtOrdList() {
|
||||||
|
return sspnIdtmtTrgtOrdList;
|
||||||
|
}
|
||||||
|
public void setSspnIdtmtTrgtOrdList(List<String> sspnIdtmtTrgtOrdList) {
|
||||||
|
this.sspnIdtmtTrgtOrdList = sspnIdtmtTrgtOrdList;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -125,5 +125,9 @@ public class CndtnTrgtMngDAO extends EgovAbstractDAO {
|
|||||||
return (int) select("cndtnTrgtInfoMngDAO.findCntreqNmber", reqNmbrTemp);
|
return (int) select("cndtnTrgtInfoMngDAO.findCntreqNmber", reqNmbrTemp);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void updateTrgtDuplAjax(CndtnTrgtMngVO cndtnTrgtMngVO) {
|
||||||
|
update("cndtnTrgtInfoMngDAO.updateTrgtDuplAjax", cndtnTrgtMngVO);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -57,6 +57,12 @@ public class CndtnTrgtMngServiceImpl implements CndtnTrgtMngService {
|
|||||||
public int findCntreqNmber(String reqNmbrTemp) {
|
public int findCntreqNmber(String reqNmbrTemp) {
|
||||||
return cndtnTrgtInfoMngDAO.findCntreqNmber(reqNmbrTemp);
|
return cndtnTrgtInfoMngDAO.findCntreqNmber(reqNmbrTemp);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void updateTrgtDuplAjax(CndtnTrgtMngVO cndtnTrgtInfoMngVO) {
|
||||||
|
cndtnTrgtInfoMngDAO.updateTrgtDuplAjax(cndtnTrgtInfoMngVO);
|
||||||
|
|
||||||
|
}
|
||||||
/*
|
/*
|
||||||
//C
|
//C
|
||||||
public void insert(VEPrcsDetailVO vEPrcsDetailVO) throws Exception {
|
public void insert(VEPrcsDetailVO vEPrcsDetailVO) throws Exception {
|
||||||
|
|||||||
@ -704,6 +704,44 @@ public class CndtnTrgtMngController {
|
|||||||
return "oprtn/cndtnSspnIdtmt/trgtCmpltDetail";
|
return "oprtn/cndtnSspnIdtmt/trgtCmpltDetail";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@RequestMapping("/kccadr/oprtn/cndtnSspnIdtmt/updateTrgtDuplAjax.do")
|
||||||
|
public ModelAndView updateEduAplctAprvlCd(
|
||||||
|
@ModelAttribute("vEPrcsDetailVO") CndtnTrgtMngVO cndtnTrgtInfoMngVO
|
||||||
|
, ModelMap model
|
||||||
|
, HttpServletRequest request
|
||||||
|
) throws Exception {
|
||||||
|
|
||||||
|
ModelAndView modelAndView = new ModelAndView();
|
||||||
|
modelAndView.setViewName("jsonView");
|
||||||
|
//로그인 처리====================================
|
||||||
|
//로그인 정보 가져오기
|
||||||
|
String s_oprtnLoginCheckNInfo = checkLoginUtil.oprtnCheckNInfo(model);
|
||||||
|
if (!"".equals(s_oprtnLoginCheckNInfo)) {
|
||||||
|
modelAndView.addObject("result", "loginFail");
|
||||||
|
return modelAndView;
|
||||||
|
}
|
||||||
|
//로그인 처리====================================
|
||||||
|
|
||||||
|
LoginVO loginVO = checkLoginUtil.getAuthLoginVO(); //권한에 따른 로그인 정보 가져오기
|
||||||
|
|
||||||
|
try {
|
||||||
|
// 교육 신청 테이블에 신청자 상태값 update
|
||||||
|
// vEAPrcsAplctPrdInstrAsgnmService.udpateAprvlCdEduAplct(vEPrcsDetailVO);
|
||||||
|
cndtnTrgtInfoMngService.updateTrgtDuplAjax(cndtnTrgtInfoMngVO);
|
||||||
|
|
||||||
|
modelAndView.addObject("result", "success");
|
||||||
|
|
||||||
|
} catch (Exception ex) {
|
||||||
|
ex.printStackTrace();
|
||||||
|
modelAndView.addObject("result", "");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
return modelAndView;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 조건부기소유예과정 수정화면
|
* 조건부기소유예과정 수정화면
|
||||||
*/
|
*/
|
||||||
|
|||||||
@ -139,6 +139,20 @@
|
|||||||
WHERE
|
WHERE
|
||||||
sspn_idtmt_trgt_ord = #sspnIdtmtTrgtOrd#
|
sspn_idtmt_trgt_ord = #sspnIdtmtTrgtOrd#
|
||||||
</update>
|
</update>
|
||||||
|
|
||||||
|
<update id="cndtnTrgtInfoMngDAO.updateTrgtDuplAjax" parameterClass="CndtnPrcsInfoMngVO">
|
||||||
|
/* cndtnTrgtInfoMngDAO.updateTrgtDuplAjax */
|
||||||
|
|
||||||
|
UPDATE
|
||||||
|
<include refid="CndtnTrgtInfoMngDAO.table_name"/>
|
||||||
|
SET
|
||||||
|
edu_state_cd = #eduStateCd#
|
||||||
|
, prcs_aplct_prd_ord_cmplt = #sspnIdtmtTrgtOrd#
|
||||||
|
WHERE SSPN_IDTMT_TRGT_ORD IN
|
||||||
|
<iterate property="sspnIdtmtTrgtOrdList" open="(" close=")" conjunction=",">
|
||||||
|
#sspnIdtmtTrgtOrdList[]#
|
||||||
|
</iterate>
|
||||||
|
</update>
|
||||||
|
|
||||||
<select id="cndtnTrgtInfoMngDAO.findCntreqNmber" resultClass="int" parameterClass="String">
|
<select id="cndtnTrgtInfoMngDAO.findCntreqNmber" resultClass="int" parameterClass="String">
|
||||||
SELECT
|
SELECT
|
||||||
|
|||||||
@ -6036,6 +6036,7 @@ VALUES
|
|||||||
vea_aplct_detail_info
|
vea_aplct_detail_info
|
||||||
SET
|
SET
|
||||||
aplct_state_cd = #aplctStateCd#
|
aplct_state_cd = #aplctStateCd#
|
||||||
|
, aplct_pnttm = SYSDATE
|
||||||
, last_updusr_id = #lastUpdusrId#
|
, last_updusr_id = #lastUpdusrId#
|
||||||
, last_updt_pnttm = SYSDATE
|
, last_updt_pnttm = SYSDATE
|
||||||
WHERE
|
WHERE
|
||||||
|
|||||||
@ -75,6 +75,7 @@
|
|||||||
prcs_aplct_prd_ord
|
prcs_aplct_prd_ord
|
||||||
, edu_aplct_ord
|
, edu_aplct_ord
|
||||||
, aplct_state_cd
|
, aplct_state_cd
|
||||||
|
, aplct_pnttm
|
||||||
, frst_regist_pnttm
|
, frst_regist_pnttm
|
||||||
, frst_register_id
|
, frst_register_id
|
||||||
)
|
)
|
||||||
@ -84,6 +85,7 @@
|
|||||||
, #eduAplctOrd#
|
, #eduAplctOrd#
|
||||||
, #aplctStateCd#
|
, #aplctStateCd#
|
||||||
, SYSDATE
|
, SYSDATE
|
||||||
|
, SYSDATE
|
||||||
, #frstRegisterId#
|
, #frstRegisterId#
|
||||||
)
|
)
|
||||||
</insert>
|
</insert>
|
||||||
@ -106,6 +108,7 @@
|
|||||||
|
|
||||||
UPDATE vea_aplct_detail_info SET
|
UPDATE vea_aplct_detail_info SET
|
||||||
aplct_state_cd = #aplctStateCd#
|
aplct_state_cd = #aplctStateCd#
|
||||||
|
, aplct_pnttm = SYSDATE
|
||||||
WHERE
|
WHERE
|
||||||
edu_aplct_ord = #eduAplctOrd#
|
edu_aplct_ord = #eduAplctOrd#
|
||||||
AND prcs_aplct_prd_ord = #prcsAplctPrdOrd#
|
AND prcs_aplct_prd_ord = #prcsAplctPrdOrd#
|
||||||
@ -133,6 +136,7 @@
|
|||||||
|
|
||||||
UPDATE VEA_APLCT_DETAIL_INFO
|
UPDATE VEA_APLCT_DETAIL_INFO
|
||||||
SET aplct_state_cd = #aplctStateCd#
|
SET aplct_state_cd = #aplctStateCd#
|
||||||
|
,aplct_pnttm = SYSDATE
|
||||||
,last_updusr_id = #lastUpdusrId#
|
,last_updusr_id = #lastUpdusrId#
|
||||||
,last_updt_pnttm = sysdate
|
,last_updt_pnttm = sysdate
|
||||||
WHERE edu_aplct_ord IN
|
WHERE edu_aplct_ord IN
|
||||||
|
|||||||
@ -1,319 +1,386 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<%@ page language="java" contentType="text/html; charset=utf-8"
|
<%@ page language="java" contentType="text/html; charset=utf-8"
|
||||||
pageEncoding="utf-8"%>
|
pageEncoding="utf-8"%>
|
||||||
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
||||||
<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui"%>
|
<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui"%>
|
||||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
|
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
|
||||||
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
|
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
|
||||||
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
|
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
|
||||||
<%@ taglib prefix="ve" uri="/WEB-INF/tlds/kcc_tld.tld"%>
|
<%@ taglib prefix="ve" uri="/WEB-INF/tlds/kcc_tld.tld"%>
|
||||||
<%@ taglib prefix="validator" uri="http://www.springmodules.org/tags/commons-validator" %>
|
<%@ taglib prefix="validator" uri="http://www.springmodules.org/tags/commons-validator" %>
|
||||||
<%
|
<%
|
||||||
/**
|
/**
|
||||||
* @Class Name : cndtnEduPrcsMngDetail.jsp
|
* @Class Name : cndtnEduPrcsMngDetail.jsp
|
||||||
* @Description : 조건부기소유예 상세화면
|
* @Description : 조건부기소유예 상세화면
|
||||||
* @Modification Information
|
* @Modification Information
|
||||||
* @
|
* @
|
||||||
* @ 수정일 수정자 수정내용
|
* @ 수정일 수정자 수정내용
|
||||||
* @ ------- -------- ---------------------------
|
* @ ------- -------- ---------------------------
|
||||||
* @ 2021.12.16 조용준 최초 생성
|
* @ 2021.12.16 조용준 최초 생성
|
||||||
* @author 조용주
|
* @author 조용주
|
||||||
* @since 2021.12.16
|
* @since 2021.12.16
|
||||||
* @version 1.0
|
* @version 1.0
|
||||||
* @see
|
* @see
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
%>
|
%>
|
||||||
<html lang="ko">
|
<html lang="ko">
|
||||||
<head>
|
<head>
|
||||||
<title>교육과정관리</title>
|
<title>교육과정관리</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
function fncGoList(){
|
function fncGoList(){
|
||||||
var listForm = document.listForm ;
|
var listForm = document.listForm ;
|
||||||
listForm.action = "<c:url value='/kccadr/oprtn/cndtnSspnIdtmt/trgtCmpltList.do'/>";
|
listForm.action = "<c:url value='/kccadr/oprtn/cndtnSspnIdtmt/trgtCmpltList.do'/>";
|
||||||
listForm.submit();
|
listForm.submit();
|
||||||
}
|
}
|
||||||
function fncGoSearch(){
|
function fncGoSearch(){
|
||||||
var form = document.listForm ;
|
var form = document.listForm ;
|
||||||
form.trgtNm.value=$('#trgtNm').val();
|
form.trgtNm.value=$('#trgtNm').val();
|
||||||
form.dBirth.value=$('#dBirth').val();
|
form.dBirth.value=$('#dBirth').val();
|
||||||
form.action = "<c:url value='/kccadr/oprtn/cndtnSspnIdtmt/trgtCmpltDetail.do'/>";
|
form.action = "<c:url value='/kccadr/oprtn/cndtnSspnIdtmt/trgtCmpltDetail.do'/>";
|
||||||
form.submit();
|
form.submit();
|
||||||
}
|
}
|
||||||
|
|
||||||
</script>
|
|
||||||
|
// 체크박스O
|
||||||
</head>
|
function fnUpdate(){
|
||||||
<body>
|
|
||||||
<form:form id="listForm" name="listForm" commandName="vEPrcsDetailVO" method="post">
|
var sspnIdtmtTrgtOrdList = [];
|
||||||
<input type="hidden" name="sspnIdtmtTrgtOrd" value="<c:out value='${info.sspnIdtmtTrgtOrd}'/>"/>
|
|
||||||
<input type="hidden" name="trgtNm" value=""/>
|
// "chk" 이름을 가진 체크박스가 체크된 항목들을 순회
|
||||||
<input type="hidden" name="dBirth" value=""/>
|
$("input[name='chk']:checked").each(function() {
|
||||||
</form:form>
|
var sspnIdtmtTrgtOrd = $(this).val();
|
||||||
<input type="hidden" name="sspnIdtmtTrgtOrd" value="<c:out value='${info.sspnIdtmtTrgtOrd}'/>"/>
|
sspnIdtmtTrgtOrdList.push(sspnIdtmtTrgtOrd);
|
||||||
<!-- cont -->
|
});
|
||||||
<div class="cont_wrap">
|
|
||||||
<div class="box">
|
// 선택된 항목이 없으면 경고 메시지를 표시하고 함수를 종료
|
||||||
|
if (sspnIdtmtTrgtOrdList.length === 0) {
|
||||||
<!-- cont_tit -->
|
alert("선택된 항목이 없습니다. 선택 후 다시 시도하세요.");
|
||||||
<div class="cont_tit">
|
return false;
|
||||||
<h2>수료자 상세</h2>
|
}
|
||||||
<ul class="cont_nav">
|
|
||||||
<li class="home"><a href="/"><i></i></a></li>
|
var dataToSend = {
|
||||||
<li>
|
"sspnIdtmtTrgtOrdList": sspnIdtmtTrgtOrdList
|
||||||
<p>조건부기소유예관리</p>
|
, "eduStateCd" : "20"
|
||||||
</li>
|
, "sspnIdtmtTrgtOrd" : $('#sspnIdtmtTrgtOrd').val()
|
||||||
<li><span class="cur_nav">수료자 목록</span></li>
|
};
|
||||||
<li><span class="cur_nav">수료자 상세</span></li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
// var url = "<c:url value='/kccadr/oprtn/cndtnSspnIdtmt/updateEduAplctAprvlCdAjax.do'/>";
|
||||||
<!-- //cont_tit -->
|
var url = "<c:url value='/kccadr/oprtn/cndtnSspnIdtmt/updateTrgtDuplAjax.do'/>";
|
||||||
|
|
||||||
<div class="cont">
|
|
||||||
<!-- list_상세 -->
|
// AJAX 호출을 통해 서버에 데이터 전송
|
||||||
<div class="tb_tit01">
|
$.ajax({
|
||||||
<p>수료자 상세</p>
|
type:"POST",
|
||||||
</div>
|
url: url,
|
||||||
<div class="tb_type02">
|
data: $.param(dataToSend, true), // 직렬화 , 컨트롤러에서 @ModelAttribute로 받을 수 있음
|
||||||
<table>
|
// contentType : 'application/json',
|
||||||
<colgroup>
|
dataType:'json',
|
||||||
<col style="width: 210px;">
|
success:function(returnData){
|
||||||
<col style="width: auto;">
|
if(returnData.result == "success"){
|
||||||
<col style="width: 210px;">
|
alert("변경 처리 되었습니다.");
|
||||||
<col style="width: auto;">
|
window.location.reload();
|
||||||
</colgroup>
|
}else{
|
||||||
|
alert("변경 중 오류가 발생하였습니다.");
|
||||||
<tbody>
|
}
|
||||||
<tr>
|
},
|
||||||
<th scope="row">의뢰일</th>
|
error: function(jqXHR, textStatus, errorThrown) {
|
||||||
<td>
|
console.error("AJAX Error:", textStatus, errorThrown);
|
||||||
<div id="calendar">
|
console.error("Response:", jqXHR.responseText);
|
||||||
<div class="calendar_wrap">
|
}
|
||||||
<!-- <input type="text" class="calendar" placeholder="의뢰일" title="의뢰일 선택" id="reqPnttm" name="reqPnttm" value=""> -->
|
});
|
||||||
<!-- <input type="text" class="calendar" placeholder="의뢰일" title="의뢰일 선택" id="reqPnttm" name="reqPnttm" value=""> -->
|
}
|
||||||
<c:set var="reqPnttm" value="${fn:substring(info.reqPnttm, 0, 10)}" />
|
|
||||||
<%-- <fmt:formatDate value="${list.reqPnttm }" pattern="yyyy-MM-dd" /> --%>
|
|
||||||
<c:out value="${reqPnttm }" />
|
</script>
|
||||||
</div>
|
|
||||||
</div>
|
</head>
|
||||||
</td>
|
<body>
|
||||||
</tr>
|
<form:form id="listForm" name="listForm" commandName="vEPrcsDetailVO" method="post">
|
||||||
<tr>
|
<input type="hidden" name="sspnIdtmtTrgtOrd" value="<c:out value='${info.sspnIdtmtTrgtOrd}'/>"/>
|
||||||
<th scope="row">사건번호</th>
|
<input type="hidden" name="trgtNm" value=""/>
|
||||||
<td>
|
<input type="hidden" name="dBirth" value=""/>
|
||||||
<c:out value="${info.vntNmbr }" />
|
</form:form>
|
||||||
</td>
|
<input type="hidden" name="sspnIdtmtTrgtOrd" id="sspnIdtmtTrgtOrd" value="<c:out value='${info.sspnIdtmtTrgtOrd}'/>"/>
|
||||||
</tr>
|
<!-- cont -->
|
||||||
<tr>
|
<div class="cont_wrap">
|
||||||
<th scope="row">관할청</th>
|
<div class="box">
|
||||||
<td>
|
|
||||||
<c:out value="${info.cmptntAthrt }" />
|
<!-- cont_tit -->
|
||||||
</td>
|
<div class="cont_tit">
|
||||||
</tr>
|
<h2>수료자 상세</h2>
|
||||||
<tr>
|
<ul class="cont_nav">
|
||||||
<th scope="row">성별</th>
|
<li class="home"><a href="/"><i></i></a></li>
|
||||||
<td>
|
<li>
|
||||||
<ve:code codeId="COM014" code="${info.sex }"/>
|
<p>조건부기소유예관리</p>
|
||||||
</td>
|
</li>
|
||||||
<th scope="row">연락처</th>
|
<li><span class="cur_nav">수료자 목록</span></li>
|
||||||
<td>
|
<li><span class="cur_nav">수료자 상세</span></li>
|
||||||
<c:out value="${info.clphone }" />
|
</ul>
|
||||||
</td>
|
</div>
|
||||||
</tr>
|
<!-- //cont_tit -->
|
||||||
<tr>
|
|
||||||
<th scope="row">성명</th>
|
<div class="cont">
|
||||||
<td>
|
<!-- list_상세 -->
|
||||||
<c:out value="${info.trgtNm }" />
|
<div class="tb_tit01">
|
||||||
</td>
|
<p>수료자 상세</p>
|
||||||
<th scope="row">생년월일</th>
|
</div>
|
||||||
<td>
|
<div class="tb_type02">
|
||||||
<c:out value="${info.dBirth }" />
|
<table>
|
||||||
</td>
|
<colgroup>
|
||||||
</tr>
|
<col style="width: 210px;">
|
||||||
<!-- <tr>
|
<col style="width: auto;">
|
||||||
<th scope="row">연락처(핸드폰)</th>
|
<col style="width: 210px;">
|
||||||
<td>
|
<col style="width: auto;">
|
||||||
<input type="text" name="clphone" />
|
</colgroup>
|
||||||
|
|
||||||
</td>
|
<tbody>
|
||||||
</tr> -->
|
<tr>
|
||||||
<tr>
|
<th scope="row">의뢰일</th>
|
||||||
<th scope="row">의뢰번호</th>
|
<td>
|
||||||
<td>
|
<div id="calendar">
|
||||||
<c:out value="${info.reqNmbr }" />
|
<div class="calendar_wrap">
|
||||||
</td>
|
<!-- <input type="text" class="calendar" placeholder="의뢰일" title="의뢰일 선택" id="reqPnttm" name="reqPnttm" value=""> -->
|
||||||
<th scope="row">의뢰상태</th>
|
<!-- <input type="text" class="calendar" placeholder="의뢰일" title="의뢰일 선택" id="reqPnttm" name="reqPnttm" value=""> -->
|
||||||
<td>
|
<c:set var="reqPnttm" value="${fn:substring(info.reqPnttm, 0, 10)}" />
|
||||||
<ve:code codeId="VEA005" code="${info.reqStateCd }"/>
|
<%-- <fmt:formatDate value="${list.reqPnttm }" pattern="yyyy-MM-dd" /> --%>
|
||||||
</td>
|
<c:out value="${reqPnttm }" />
|
||||||
</tr>
|
</div>
|
||||||
<tr>
|
</div>
|
||||||
<th scope="row">교육상태</th>
|
</td>
|
||||||
<td>
|
</tr>
|
||||||
<ve:code codeId="VEA002" code="${info.eduStateCd }"/>
|
<tr>
|
||||||
</td>
|
<th scope="row">사건번호</th>
|
||||||
<th scope="row">검사명</th>
|
<td>
|
||||||
<td>
|
<c:out value="${info.vntNmbr }" />
|
||||||
<c:out value="${info.prsctrNm }" />
|
</td>
|
||||||
</td>
|
</tr>
|
||||||
</tr>
|
<tr>
|
||||||
<tr class="input_adress">
|
<th scope="row">관할청</th>
|
||||||
<th scope="row">
|
<td>
|
||||||
<p>주소</p>
|
<c:out value="${info.cmptntAthrt }" />
|
||||||
</th>
|
</td>
|
||||||
<td colspan="3">
|
</tr>
|
||||||
<label for="post" class="label">우편번호 입력</label>
|
<tr>
|
||||||
<c:out value='${info.post}'/>
|
<th scope="row">성별</th>
|
||||||
<div class="detail_address">
|
<td>
|
||||||
<c:out value='${info.addr}'/>
|
<ve:code codeId="COM014" code="${info.sex }"/>
|
||||||
<c:out value='${info.addrDetail}'/>
|
</td>
|
||||||
</div>
|
<th scope="row">연락처</th>
|
||||||
</td>
|
<td>
|
||||||
</tr>
|
<c:out value="${info.clphone }" />
|
||||||
</tbody>
|
</td>
|
||||||
</table>
|
</tr>
|
||||||
</div>
|
<tr>
|
||||||
<!-- //list_상세 -->
|
<th scope="row">성명</th>
|
||||||
|
<td>
|
||||||
|
<c:out value="${info.trgtNm }" />
|
||||||
|
</td>
|
||||||
|
<th scope="row">생년월일</th>
|
||||||
|
<td>
|
||||||
|
<c:out value="${info.dBirth }" />
|
||||||
<div class="tb_tit01">
|
</td>
|
||||||
<p>중복 대상자 검색</p>
|
</tr>
|
||||||
</div>
|
<!-- <tr>
|
||||||
|
<th scope="row">연락처(핸드폰)</th>
|
||||||
<!-- list_top -->
|
<td>
|
||||||
<div class="list_top search-only">
|
<input type="text" name="clphone" />
|
||||||
<div class="list_top_1">
|
|
||||||
<div class="util_right">
|
</td>
|
||||||
|
</tr> -->
|
||||||
<!-- placeholder를 위한 c:choose 추가 -->
|
<tr>
|
||||||
<c:choose>
|
<th scope="row">의뢰번호</th>
|
||||||
<c:when test="${not empty cndtnTrgtInfoMngVO.trgtNm}">
|
<td>
|
||||||
<input type="text" id="trgtNm" name="trgtNm" placeholder="이름" value="<c:out value='${cndtnTrgtInfoMngVO.trgtNm }' /> " />
|
<c:out value="${info.reqNmbr }" />
|
||||||
</c:when>
|
</td>
|
||||||
<c:otherwise>
|
<th scope="row">의뢰상태</th>
|
||||||
<input type="text" id="trgtNm" name="trgtNm" placeholder="이름" />
|
<td>
|
||||||
</c:otherwise>
|
<ve:code codeId="VEA005" code="${info.reqStateCd }"/>
|
||||||
</c:choose>
|
</td>
|
||||||
<c:choose>
|
</tr>
|
||||||
<c:when test="${not empty cndtnTrgtInfoMngVO.dBirth}">
|
<tr>
|
||||||
<input type="text" id="dBirth" name="dBirth" placeholder="연락처" value="<c:out value='${cndtnTrgtInfoMngVO.dBirth }' /> " />
|
<th scope="row">교육상태</th>
|
||||||
</c:when>
|
<td>
|
||||||
<c:otherwise>
|
<ve:code codeId="VEA002" code="${info.eduStateCd }"/>
|
||||||
<input type="text" id="dBirth" name="dBirth" placeholder="연락처" />
|
</td>
|
||||||
</c:otherwise>
|
<th scope="row">검사명</th>
|
||||||
</c:choose>
|
<td>
|
||||||
<%-- <input type="text" id="searchKeyword" name="searchKeyword" placeholder="검색어를 입력하세요." title="검색어 입력" class="search_input" value="<c:out value='${vEPrcsDetailVO.searchKeyword}'/>"> --%>
|
<c:out value="${info.prsctrNm }" />
|
||||||
<button type="button" class="btn_type08" onclick="fncGoSearch(); return false;">검색</button>
|
</td>
|
||||||
<!-- <button class="btn_type03" onclick="fncReset(this); return false;">초기화</button> -->
|
</tr>
|
||||||
</div>
|
<tr class="input_adress">
|
||||||
</div>
|
<th scope="row">
|
||||||
</div>
|
<p>주소</p>
|
||||||
<!-- list -->
|
</th>
|
||||||
<div class="tb_type01">
|
<td colspan="3">
|
||||||
<table>
|
<label for="post" class="label">우편번호 입력</label>
|
||||||
<colgroup>
|
<c:out value='${info.post}'/>
|
||||||
<col style="width: 10%">
|
<div class="detail_address">
|
||||||
<col style="width: 10%">
|
<c:out value='${info.addr}'/>
|
||||||
<col style="width: 2px">
|
<c:out value='${info.addrDetail}'/>
|
||||||
<col style="width: 2px">
|
</div>
|
||||||
<col style="width: 2px">
|
</td>
|
||||||
<col style="width: 2px">
|
</tr>
|
||||||
<col style="width: 10%">
|
</tbody>
|
||||||
<col style="width: 10%">
|
</table>
|
||||||
<col style="width: 10%">
|
</div>
|
||||||
<col style="width: 2px">
|
<!-- //list_상세 -->
|
||||||
<col style="width: 2px">
|
|
||||||
</colgroup>
|
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th>의뢰일</th>
|
|
||||||
<th>사건번호</th>
|
|
||||||
<th>관할청</th>
|
<div class="tb_tit01">
|
||||||
<th>생년월일</th>
|
<p>중복 대상자 검색</p>
|
||||||
<th>성명</th>
|
</div>
|
||||||
<th>성별</th>
|
|
||||||
<th>의뢰번호</th>
|
<!-- list_top -->
|
||||||
<th>의뢰상태</th>
|
<div class="list_top search-only">
|
||||||
<th>교육상태</th>
|
<div class="list_top_1">
|
||||||
<th>주소</th>
|
<div class="util_right">
|
||||||
<th>검사명</th>
|
|
||||||
</tr>
|
<!-- placeholder를 위한 c:choose 추가 -->
|
||||||
</thead>
|
<c:choose>
|
||||||
<tbody>
|
<c:when test="${not empty cndtnTrgtInfoMngVO.trgtNm}">
|
||||||
<c:forEach var="list" items="${list}" varStatus="status">
|
<input type="text" id="trgtNm" name="trgtNm" placeholder="이름" value="<c:out value='${cndtnTrgtInfoMngVO.trgtNm }' /> " />
|
||||||
<tr class="listCount" onclick="fncGoDetail('<c:out value="${list.sspnIdtmtTrgtOrd}"/>');" style="cursor:pointer;">
|
</c:when>
|
||||||
<%-- <td onclick="fncGoDetail('<c:out value="${list.sspnIdtmtTrgtOrd}"/>');" style="cursor:pointer;"> --%>
|
<c:otherwise>
|
||||||
<%-- <c:out value='${list.prcsNm}'/> --%>
|
<input type="text" id="trgtNm" name="trgtNm" placeholder="이름" />
|
||||||
<!-- </td> -->
|
</c:otherwise>
|
||||||
<td>
|
</c:choose>
|
||||||
<c:set var="reqPnttm" value="${fn:substring(list.reqPnttm, 0, 10)}" />
|
<c:choose>
|
||||||
<%-- <fmt:formatDate value="${list.reqPnttm }" pattern="yyyy-MM-dd" /> --%>
|
<c:when test="${not empty cndtnTrgtInfoMngVO.dBirth}">
|
||||||
<c:out value="${reqPnttm }" />
|
<input type="text" id="dBirth" name="dBirth" placeholder="연락처" value="<c:out value='${cndtnTrgtInfoMngVO.dBirth }' /> " />
|
||||||
</td>
|
</c:when>
|
||||||
<td>
|
<c:otherwise>
|
||||||
<c:out value="${list.vntNmbr }" />
|
<input type="text" id="dBirth" name="dBirth" placeholder="연락처" />
|
||||||
</td>
|
</c:otherwise>
|
||||||
<td>
|
</c:choose>
|
||||||
<c:out value="${list.cmptntAthrt }" />
|
<%-- <input type="text" id="searchKeyword" name="searchKeyword" placeholder="검색어를 입력하세요." title="검색어 입력" class="search_input" value="<c:out value='${vEPrcsDetailVO.searchKeyword}'/>"> --%>
|
||||||
</td>
|
<button type="button" class="btn_type08" onclick="fncGoSearch(); return false;">검색</button>
|
||||||
<td>
|
<!-- <button class="btn_type03" onclick="fncReset(this); return false;">초기화</button> -->
|
||||||
<c:out value="${list.dBirth }" />
|
</div>
|
||||||
</td>
|
</div>
|
||||||
<td>
|
</div>
|
||||||
<c:out value="${list.trgtNm }" />
|
|
||||||
</td>
|
<div class="btn_wrap btn_layout01" style="margin: 0px 0px 30px 10px;">
|
||||||
<td>
|
<div class="btn_left">
|
||||||
<ve:code codeId="COM014" code="${list.sex }"/>
|
<button type="button" class="btn_type04" onclick="fnUpdate(); return false;">중복자 이수 처리</button>
|
||||||
</td>
|
</div>
|
||||||
<td>
|
</div>
|
||||||
<c:out value="${list.reqNmbr }" />
|
<!-- list -->
|
||||||
</td>
|
<div class="tb_type01">
|
||||||
<td>
|
<table>
|
||||||
<ve:code codeId="VEA005" code="${list.reqStateCd }"/>
|
<colgroup>
|
||||||
</td>
|
<col style="width: 2px">
|
||||||
<td>
|
<col style="width: 10%">
|
||||||
<ve:code codeId="VEA002" code="${list.eduStateCd }"/>
|
<col style="width: 10%">
|
||||||
</td>
|
<col style="width: 2px">
|
||||||
<c:set var="fullAddr" value="${list.addr} ${list.addrDetail}" />
|
<col style="width: 2px">
|
||||||
<%-- <c:set var="fullAddr" value="${list.addr}" /> --%>
|
<col style="width: 2px">
|
||||||
<td title="${fullAddr}">
|
<col style="width: 2px">
|
||||||
${fn:length(fullAddr)> 5 ? fn:substring(fullAddr, 0, 5).concat('...') : ''}
|
<col style="width: 10%">
|
||||||
</td>
|
<col style="width: 10%">
|
||||||
<td>
|
<col style="width: 10%">
|
||||||
<c:out value="${list.prsctrNm }" />
|
<col style="width: 2px">
|
||||||
</td>
|
<col style="width: 2px">
|
||||||
</tr>
|
</colgroup>
|
||||||
</c:forEach>
|
<thead>
|
||||||
<c:if test="${empty list}">
|
<tr>
|
||||||
<tr><td colspan="11"><spring:message code="common.nodata.msg" /></td></tr>
|
<th></th>
|
||||||
</c:if>
|
<th>의뢰일</th>
|
||||||
</tbody>
|
<th>사건번호</th>
|
||||||
</table>
|
<th>관할청</th>
|
||||||
</div>
|
<th>생년월일</th>
|
||||||
|
<th>성명</th>
|
||||||
|
<th>성별</th>
|
||||||
<!-- btn_wrap -->
|
<th>의뢰번호</th>
|
||||||
<div class="btn_wrap btn_layout01">
|
<th>의뢰상태</th>
|
||||||
<div class="btn_left">
|
<th>교육상태</th>
|
||||||
</div>
|
<th>주소</th>
|
||||||
<div class="btn_center">
|
<th>검사명</th>
|
||||||
</div>
|
</tr>
|
||||||
<div class="btn_right">
|
</thead>
|
||||||
<!-- <button type="button" class="btn_type02" onclick="fncMdfy(); return false;">수정</button> -->
|
<tbody>
|
||||||
<button type="button" class="btn_type03" onclick="fncGoList(); return false;">목록</button>
|
<c:forEach var="list" items="${list}" varStatus="status">
|
||||||
</div>
|
<%-- <tr class="listCount" onclick="fncGoDetail('<c:out value="${list.sspnIdtmtTrgtOrd}"/>');" style="cursor:pointer;"> --%>
|
||||||
</div>
|
<tr>
|
||||||
</div>
|
<%-- <td onclick="fncGoDetail('<c:out value="${list.sspnIdtmtTrgtOrd}"/>');" style="cursor:pointer;"> --%>
|
||||||
</div>
|
<%-- <c:out value='${list.prcsNm}'/> --%>
|
||||||
</div>
|
<!-- </td> -->
|
||||||
<!-- //cont -->
|
<td>
|
||||||
</body>
|
<c:if test="${list.eduStateCd ne 20}">
|
||||||
</html>
|
<input name="chk"
|
||||||
|
value="${list.sspnIdtmtTrgtOrd}" title="Check" type="checkbox"/>
|
||||||
|
</c:if>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<c:set var="reqPnttm" value="${fn:substring(list.reqPnttm, 0, 10)}" />
|
||||||
|
<%-- <fmt:formatDate value="${list.reqPnttm }" pattern="yyyy-MM-dd" /> --%>
|
||||||
|
<c:out value="${reqPnttm }" />
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<c:out value="${list.vntNmbr }" />
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<c:out value="${list.cmptntAthrt }" />
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<c:out value="${list.dBirth }" />
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<c:out value="${list.trgtNm }" />
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<ve:code codeId="COM014" code="${list.sex }"/>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<c:out value="${list.reqNmbr }" />
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<ve:code codeId="VEA005" code="${list.reqStateCd }"/>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<ve:code codeId="VEA002" code="${list.eduStateCd }"/>
|
||||||
|
</td>
|
||||||
|
<c:set var="fullAddr" value="${list.addr} ${list.addrDetail}" />
|
||||||
|
<%-- <c:set var="fullAddr" value="${list.addr}" /> --%>
|
||||||
|
<td title="${fullAddr}">
|
||||||
|
${fn:length(fullAddr)> 5 ? fn:substring(fullAddr, 0, 5).concat('...') : ''}
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<c:out value="${list.prsctrNm }" />
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</c:forEach>
|
||||||
|
<c:if test="${empty list}">
|
||||||
|
<tr><td colspan="12"><spring:message code="common.nodata.msg" /></td></tr>
|
||||||
|
</c:if>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- btn_wrap -->
|
||||||
|
<div class="btn_wrap btn_layout01">
|
||||||
|
<div class="btn_left">
|
||||||
|
</div>
|
||||||
|
<div class="btn_center">
|
||||||
|
</div>
|
||||||
|
<div class="btn_right">
|
||||||
|
<!-- <button type="button" class="btn_type02" onclick="fncMdfy(); return false;">수정</button> -->
|
||||||
|
<button type="button" class="btn_type03" onclick="fncGoList(); return false;">목록</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- //cont -->
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user