Merge branch 'hylee' into advc
Conflicts: src/main/java/kcc/ve/instr/tngrVisitEdu/prcsInfo/service/impl/VEPrcsAplctPrdServiceImpl.java
This commit is contained in:
commit
988c3dc727
@ -146,6 +146,14 @@ public class FndtnEnhanceTrnController {
|
||||
private FndtnEnhanceTrnService fndtnEnhanceTrnService;
|
||||
|
||||
|
||||
/**
|
||||
* 대시보드 임시
|
||||
*/
|
||||
@RequestMapping("/web/ve/aplct/fndtnEnhanceTrn/main_2.do")
|
||||
public String main_2( @ModelAttribute("vEEduAplctVO") VEPrcsDetailVO vEPrcsDetailVO , ModelMap model , HttpServletRequest request ) throws Exception {
|
||||
|
||||
return "/web/ve/aplct/fndtnEnhanceTrn/main_2";
|
||||
}
|
||||
/**
|
||||
* 교육신청 목록 화면
|
||||
*/
|
||||
|
||||
@ -153,6 +153,15 @@ public class SspnIdtmtController {
|
||||
private SspnIdtmtService sspnIdtmtService;
|
||||
|
||||
|
||||
/**
|
||||
* 대시보드 임시
|
||||
*/
|
||||
@RequestMapping("/web/ve/aplct/sspnIdtmt/main_2.do")
|
||||
public String main_2( @ModelAttribute("vEEduAplctVO") VEPrcsDetailVO vEPrcsDetailVO , ModelMap model , HttpServletRequest request ) throws Exception {
|
||||
|
||||
return "/web/ve/aplct/sspnIdtmt/main_2";
|
||||
}
|
||||
|
||||
/**
|
||||
* 교육신청 목록 화면
|
||||
*/
|
||||
|
||||
@ -45,4 +45,6 @@ public interface VEPrcsAplctPrdService {
|
||||
|
||||
VEPrcsDetailVO selectDetailByOrd(VEPrcsDetailVO vEPrcsDetailVO) throws Exception;
|
||||
|
||||
void updateOneColumn(VEPrcsDetailVO vEPrcsDetailVO) throws Exception;
|
||||
|
||||
}
|
||||
|
||||
@ -103,4 +103,9 @@ public class VEPrcsAplctPrdServiceImpl implements VEPrcsAplctPrdService {
|
||||
public VEPrcsDetailVO selectDetailByOrd(VEPrcsDetailVO vEPrcsDetailVO) throws Exception {
|
||||
return vEPrcsAplctPrdDAO.selectDetailByOrd(vEPrcsDetailVO);
|
||||
}
|
||||
|
||||
public void updateOneColumn(VEPrcsDetailVO vEPrcsDetailVO) throws Exception {
|
||||
vEPrcsAplctPrdDAO.update(vEPrcsDetailVO);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -672,6 +672,54 @@ public class CndtnPrcsInfoMngController {
|
||||
return "/oprtn/cndtnSspnIdtmt/cndtnEduPrcsAplctPrdMngDetail";
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* ve_prcs_aplct_prd 테이블에 데이터 하나만 변경하는 기능
|
||||
*/
|
||||
@RequestMapping("/kccadr/oprtn/cndtnSspnIdtmt/updateDdlnCdAjax.do")
|
||||
public ModelAndView updateDdlnCdAjax(
|
||||
@ModelAttribute("vEPrcsDetailVO") VEPrcsDetailVO vEPrcsDetailVO
|
||||
, ModelMap model
|
||||
//, RedirectAttributes redirectAttributes
|
||||
, 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(); //권한에 따른 로그인 정보 가져오기
|
||||
SsoLoginVO ssoLoginVO = checkLoginUtil.getSSOLoginVO(request); //SSO 로그인 정보 가져오기
|
||||
|
||||
|
||||
//String prcsAplctPrdOrd = prcsAplctPrdGnrService.getNextStringId(); // 고유ID
|
||||
//vEPrcsDetailVO.setPrcsAplctPrdOrd(prcsAplctPrdOrd);
|
||||
vEPrcsDetailVO.setLctrDivCd("60"); //강의구분코드 VE0011 10-청소년강의, 20-성인강의, 30-체험, 50-기반강화, 60-조건부
|
||||
vEPrcsDetailVO.setLastUpdusrId(loginVO.getUniqId()); //강의구분코드 VE0011 10-청소년강의, 20-성인강의, 30-체험, 50-기반강화, 60-조건부
|
||||
//vEPrcsDetailVO.setUseYn("Y");
|
||||
vEPrcsDetailVO.setFrstRegisterId(loginVO.getUniqId()); //esntl_id
|
||||
|
||||
vEPrcsAplctPrdService.updateOneColumn(vEPrcsDetailVO);
|
||||
|
||||
|
||||
modelAndView.addObject("result", "success");
|
||||
|
||||
return modelAndView;
|
||||
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 조건부기소유예 기간 상세화면
|
||||
*/
|
||||
|
||||
@ -716,6 +716,52 @@ public class FndthPrcsAplctPrdMngController {
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* ve_prcs_aplct_prd 테이블에 데이터 하나만 변경하는 기능
|
||||
*/
|
||||
@RequestMapping("/kccadr/oprtn/fndthEnhanceTrn/updateDdlnCdAjax.do")
|
||||
public ModelAndView updateDdlnCdAjax(
|
||||
@ModelAttribute("vEPrcsDetailVO") VEPrcsDetailVO vEPrcsDetailVO
|
||||
, ModelMap model
|
||||
//, RedirectAttributes redirectAttributes
|
||||
, 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(); //권한에 따른 로그인 정보 가져오기
|
||||
SsoLoginVO ssoLoginVO = checkLoginUtil.getSSOLoginVO(request); //SSO 로그인 정보 가져오기
|
||||
|
||||
|
||||
//String prcsAplctPrdOrd = prcsAplctPrdGnrService.getNextStringId(); // 고유ID
|
||||
//vEPrcsDetailVO.setPrcsAplctPrdOrd(prcsAplctPrdOrd);
|
||||
vEPrcsDetailVO.setLctrDivCd("50"); //강의구분코드 VE0011 10-청소년강의, 20-성인강의, 30-체험, 50-기반강화, 60-조건부
|
||||
vEPrcsDetailVO.setLastUpdusrId(loginVO.getUniqId()); //강의구분코드 VE0011 10-청소년강의, 20-성인강의, 30-체험, 50-기반강화, 60-조건부
|
||||
//vEPrcsDetailVO.setUseYn("Y");
|
||||
vEPrcsDetailVO.setFrstRegisterId(loginVO.getUniqId()); //esntl_id
|
||||
|
||||
vEPrcsAplctPrdService.updateOneColumn(vEPrcsDetailVO);
|
||||
|
||||
|
||||
modelAndView.addObject("result", "success");
|
||||
|
||||
return modelAndView;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -280,13 +280,12 @@
|
||||
<kc:code codeId="VEA004" code="${list.ddlnCd}"/>
|
||||
</td>
|
||||
<td>
|
||||
<%-- <c:out value="${list.strtPnttm}"/>~<c:out value="${list.endPnttm}"/> --%>
|
||||
<c:choose>
|
||||
<c:when test="${list.instrCnt ne 0 }">
|
||||
배정완료
|
||||
<c:when test="${list.instrCnt eq 0 or list.instrCnt eq null}">
|
||||
<button type="button" class="btn_type04" onclick="fncGoDetail('<c:out value="${list.prcsAplctPrdOrd}"/>');">강사배정</button>
|
||||
</c:when>
|
||||
<c:otherwise>
|
||||
<button type="button" class="btn_type04" onclick="fncGoDetail('<c:out value="${list.prcsAplctPrdOrd}"/>');">강사배정</button>
|
||||
배정완료
|
||||
</c:otherwise>
|
||||
</c:choose>
|
||||
</td>
|
||||
|
||||
@ -189,10 +189,45 @@
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
function fncDdlnCdSave(data){
|
||||
$('#modyDdlnCd').val(data);
|
||||
|
||||
var data = new FormData(document.getElementById("modyfiForm"));
|
||||
if(confirm("상태를 변경하시겠습니까?")){
|
||||
var url = "<c:url value='/kccadr/oprtn/cndtnSspnIdtmt/updateDdlnCdAjax.do'/>";
|
||||
console.log(data);
|
||||
$.ajax({
|
||||
type:"POST",
|
||||
url: url,
|
||||
data: data,
|
||||
dataType:'json',
|
||||
async: false,
|
||||
processData: false,
|
||||
contentType: false,
|
||||
cache: false,
|
||||
success:function(returnData){
|
||||
if(returnData.result == "success"){
|
||||
alert("변경되었습니다.");
|
||||
location.reload();
|
||||
}
|
||||
},
|
||||
error:function(request , status, error){
|
||||
alert("code:"+request.status+"\n"+"message:"+request.responseText+"\n"+"error:"+error);
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
</script>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<form id="modyfiForm" name="modyfiForm">
|
||||
<input type="hidden" id="modyDdlnCd" name="ddlnCd" />
|
||||
<input type="hidden" name="prcsAplctPrdOrd" id="prcsAplctPrdOrd" value="<c:out value='${vEPrcsDetailVO.prcsAplctPrdOrd}' />"/>
|
||||
</form>
|
||||
<form id="instrForm" name="instrForm" method="post">
|
||||
<input type="hidden" name="prcsAplctPrdOrd" id="prcsAplctPrdOrd" value="<c:out value='${vEPrcsDetailVO.prcsAplctPrdOrd}' />"/>
|
||||
<input type="hidden" name="userId" id="userId"/>
|
||||
@ -485,6 +520,8 @@
|
||||
<!-- btn_wrap -->
|
||||
<div class="btn_wrap btn_layout01">
|
||||
<div class="btn_left">
|
||||
<button type="button" class="btn_type04" onclick="fncDdlnCdSave(10); return false;">신청마감</button>
|
||||
<button type="button" class="btn_type04" onclick="fncDdlnCdSave(20); return false;">교육확정</button>
|
||||
</div>
|
||||
<div class="btn_center">
|
||||
</div>
|
||||
|
||||
@ -282,11 +282,11 @@
|
||||
<td>
|
||||
<%-- <c:out value="${list.strtPnttm}"/>~<c:out value="${list.endPnttm}"/> --%>
|
||||
<c:choose>
|
||||
<c:when test="${list.instrCnt ne 0 }">
|
||||
배정완료
|
||||
<c:when test="${list.instrCnt eq 0 or list.instrCnt eq null}">
|
||||
<button type="button" class="btn_type04" onclick="fncGoDetail('<c:out value="${list.prcsAplctPrdOrd}"/>');">강사배정</button>
|
||||
</c:when>
|
||||
<c:otherwise>
|
||||
<button type="button" class="btn_type04" onclick="fncGoDetail('<c:out value="${list.prcsAplctPrdOrd}"/>');">강사배정</button>
|
||||
배정완료
|
||||
</c:otherwise>
|
||||
</c:choose>
|
||||
</td>
|
||||
|
||||
@ -187,10 +187,45 @@
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
function fncDdlnCdSave(data){
|
||||
$('#modyDdlnCd').val(data);
|
||||
|
||||
var data = new FormData(document.getElementById("modyfiForm"));
|
||||
if(confirm("상태를 변경하시겠습니까?")){
|
||||
var url = "<c:url value='/kccadr/oprtn/fndthEnhanceTrn/updateDdlnCdAjax.do'/>";
|
||||
console.log(data);
|
||||
$.ajax({
|
||||
type:"POST",
|
||||
url: url,
|
||||
data: data,
|
||||
dataType:'json',
|
||||
async: false,
|
||||
processData: false,
|
||||
contentType: false,
|
||||
cache: false,
|
||||
success:function(returnData){
|
||||
if(returnData.result == "success"){
|
||||
alert("변경되었습니다.");
|
||||
location.reload();
|
||||
}
|
||||
},
|
||||
error:function(request , status, error){
|
||||
alert("code:"+request.status+"\n"+"message:"+request.responseText+"\n"+"error:"+error);
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
</script>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<form id="modyfiForm" name="modyfiForm">
|
||||
<input type="hidden" id="modyDdlnCd" name="ddlnCd" />
|
||||
<input type="hidden" name="prcsAplctPrdOrd" id="prcsAplctPrdOrd" value="<c:out value='${vEPrcsDetailVO.prcsAplctPrdOrd}' />"/>
|
||||
</form>
|
||||
<form id="instrForm" name="instrForm" method="post">
|
||||
<input type="hidden" name="prcsAplctPrdOrd" id="prcsAplctPrdOrd" value="<c:out value='${vEPrcsDetailVO.prcsAplctPrdOrd}' />"/>
|
||||
<input type="hidden" name="userId" id="userId"/>
|
||||
@ -486,6 +521,8 @@
|
||||
<!-- btn_wrap -->
|
||||
<div class="btn_wrap btn_layout01">
|
||||
<div class="btn_left">
|
||||
<button type="button" class="btn_type04" onclick="fncDdlnCdSave(10); return false;">신청마감</button>
|
||||
<button type="button" class="btn_type04" onclick="fncDdlnCdSave(20); return false;">교육확정</button>
|
||||
</div>
|
||||
<div class="btn_center">
|
||||
</div>
|
||||
|
||||
@ -169,6 +169,8 @@
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
</script>
|
||||
<title>과정신청기간관리목록</title>
|
||||
</head>
|
||||
|
||||
@ -177,19 +177,19 @@
|
||||
<div class="cont_wrap">
|
||||
<div class="box">
|
||||
|
||||
<!-- cont_tit -->
|
||||
<div class="cont_tit">
|
||||
<h2>교육 과정 수정</h2>
|
||||
<ul class="cont_nav">
|
||||
<li class="home"><a href="/"><i></i></a></li>
|
||||
<li>
|
||||
<p>교육콘텐츠</p>
|
||||
</li>
|
||||
<li><span class="cur_nav">교육 과정 관리</span></li>
|
||||
<li><span class="cur_nav">교육 과정 수정</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
<!-- //cont_tit -->
|
||||
<!-- cont_tit -->
|
||||
<div class="cont_tit">
|
||||
<h2>과정신청기간관리 수정</h2>
|
||||
<ul class="cont_nav">
|
||||
<li class="home"><a href="/"><i></i></a></li>
|
||||
<li>
|
||||
<p>기반강화연수관리</p>
|
||||
</li>
|
||||
<li><span class="cur_nav">과정신청기간관리목록</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
<!-- //cont_tit -->
|
||||
|
||||
|
||||
<div class="cont">
|
||||
<!-- list_상세 -->
|
||||
|
||||
@ -0,0 +1,248 @@
|
||||
<%@ 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="ve" uri="/WEB-INF/tlds/kcc_tld.tld"%>
|
||||
<%@ taglib prefix="un" uri="http://jakarta.apache.org/taglibs/unstandard-1.0" %>
|
||||
<%@ taglib prefix="kc" uri="/WEB-INF/tlds/kcc_tld.tld"%>
|
||||
<un:useConstants var="VeConstants" className="kcc.ve.cmm.VeConstants" />
|
||||
<title>교육신청 목록 > 성인 찾아가는 저작권 교육 > 한국저작권위원회 저작권 교육 시스템</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
<script type="text/javaScript" language="javascript">
|
||||
function linkPage(pageNo){
|
||||
var listForm = document.listForm ;
|
||||
listForm.pageIndex.value = pageNo ;
|
||||
listForm.action = "<c:url value='/web/ve/aplct/adultVisitEdu/eduAplct/eduAplctList.do'/>";
|
||||
listForm.submit();
|
||||
}
|
||||
|
||||
function goWrite(){
|
||||
$("#listForm").attr("action","${pageContext.request.contextPath}/web/ve/aplct/adultVisitEdu/eduAplct/eduAplctReg.do").submit();
|
||||
}
|
||||
|
||||
function fncGoDetail(eduAplctOrd){
|
||||
var listForm = document.listForm ;
|
||||
listForm.eduAplctOrd.value = eduAplctOrd ;
|
||||
$("#listForm").attr("action","${pageContext.request.contextPath}/web/ve/aplct/adultVisitEdu/eduAplct/eduAplctDetail.do").submit();
|
||||
}
|
||||
|
||||
function fncGoList(){
|
||||
linkPage(1);
|
||||
}
|
||||
|
||||
function fncReset(thisObj){
|
||||
var targetObj = $(thisObj).closest('.list_top').find('select,input');
|
||||
$.each(targetObj, function(){
|
||||
$(this).val('');
|
||||
});
|
||||
}
|
||||
</script>
|
||||
|
||||
<!-- content -->
|
||||
<!-- <div class="snb">
|
||||
<h2>찾아가는 저작권 교육<span>청소년</span></h2>
|
||||
<div class="ssleftxt">
|
||||
<ul>
|
||||
<li><a href="#none">교육신청 방법</a></li>
|
||||
<li><a href="#none">교육일정 안내</a></li>
|
||||
<li class="menu_on"><a href="#none">교육신청</a></li>
|
||||
<li><a href="#none">교육신청 조회</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div> -->
|
||||
<div class="cont_wrap">
|
||||
<div class="cont_tit">
|
||||
<h2>교육기반강화연수</h2>
|
||||
<div class="sns_go">
|
||||
<button type="button" title="새창열림"><img
|
||||
src="/offeduadvc/visitEdu/usr/publish/images/content/facebook_icon.png" alt="페이스북 바로가기"><a href="https://www.facebook.com/koreacopyright" target="_blank"></a></button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="tb_tit02">
|
||||
<div class="tb_tit02_left">
|
||||
<div class="t_best">베스트</div>
|
||||
</div>
|
||||
<div class="btn_wrap1">
|
||||
<button type="button" title="베스트 더보기" class="con_more" onclick="location.href=''">더보기</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="best_list">
|
||||
<div class="best_con">
|
||||
<div class="img"><img src="/offeduadvc/visitEdu/usr/publish/images/content/popup_img_imsi.jpg" alt="핵심인재 역량강화"></div>
|
||||
<ul>
|
||||
<li class="con_title">핵심인재 역량강화 핵심인재 역량강화</li>
|
||||
<li class="con_date">2023-09-24 ~ 2023-09-30</li>
|
||||
<li class="con_btn"><button type="button" title="수강신청">수강신청</button></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="best_con">
|
||||
<div class="img"><img src="https://www.copyright.or.kr/images/renewal/facebook_thumbnail.jpg" alt="핵심인재 역량강화"></div>
|
||||
<ul>
|
||||
<li class="con_title">핵심인재 역량강화</li>
|
||||
<li class="con_date">2023-09-24 ~ 2023-09-30</li>
|
||||
<li class="con_btn"><button type="button" title="수강신청">수강신청</button></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="best_con">
|
||||
<div class="img"><img src="https://www.copyright.or.kr/images/renewal/facebook_thumbnail.jpg" alt="핵심인재 역량강화"></div>
|
||||
<ul>
|
||||
<li class="con_title">핵심인재 역량강화</li>
|
||||
<li class="con_date">2023-09-24 ~ 2023-09-30</li>
|
||||
<li class="con_btn"><button type="button" title="수강신청">수강신청</button></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="best_con">
|
||||
<div class="img"><img src="https://www.copyright.or.kr/images/renewal/facebook_thumbnail.jpg" alt="핵심인재 역량강화"></div>
|
||||
<ul>
|
||||
<li class="con_title">핵심인재 역량강화</li>
|
||||
<li class="con_date">2023-09-24 ~ 2023-09-30</li>
|
||||
<li class="con_btn"><button type="button" title="수강신청">수강신청</button></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="tb_tit02">
|
||||
<div class="tb_tit02_left">
|
||||
<div class="t_edu">교육과정</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="list_top">
|
||||
<div class="list_top_left">
|
||||
<label for="" class="label">교육과정 선택</label>
|
||||
<select class="selType1">
|
||||
<option for="">전체</option>
|
||||
<option for="">지난교육일정</option>
|
||||
<option for="">당월교육일정</option>
|
||||
<option for="">교육예정일정</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="btn_wrap">
|
||||
<div class="calendar_wrap">
|
||||
<duet-date-picker identifier="date" name="searchStartDt" class="startDate hydrated" value=""></duet-date-picker>
|
||||
</div>
|
||||
~
|
||||
<div class="calendar_wrap">
|
||||
<duet-date-picker identifier="date" name="searchEndDt" class="endDate hydrated" value=""></duet-date-picker>
|
||||
</div>
|
||||
<script src="/offeduadvc/visitEdu/usr/publish/script/duetdatepicker.js"></script>
|
||||
<button type="button" class="btnType01">검색</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="edup_result">
|
||||
<div>총 <span>6</span>개의 검색결과가 있습니다.</div>
|
||||
<ul>
|
||||
<li class="pass">지난교육일정</li>
|
||||
<li class="this">당월교육일정</li>
|
||||
<li class="pre">교육예정일정</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="edu_program">
|
||||
<table>
|
||||
<caption>교육일정표</caption>
|
||||
<colgroup>
|
||||
<col style="width: ;">
|
||||
<col style="width: ;">
|
||||
<col style="width: ;">
|
||||
<col style="width:4%;">
|
||||
<col style="width:4%;">
|
||||
<col style="width:4%;">
|
||||
<col style="width:4%;">
|
||||
<col style="width:4%;">
|
||||
<col style="width:4%;">
|
||||
<col style="width:4%;">
|
||||
<col style="width:4%;">
|
||||
<col style="width:4%;">
|
||||
<col style="width:4%;">
|
||||
<col style="width:4%;">
|
||||
<col style="width:4%;">
|
||||
</colgroup>
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="first" rowspan="2">교육과정명<br/><span class="ep_text">(상세 내용을 보시려면 과정을 클릭하세요)</span></th>
|
||||
<th rowspan="2">일수</th>
|
||||
<th rowspan="2">시간</th>
|
||||
<th colspan="12">교육일정<sapn class="ep_text">(교육 시작일)</sapn></th>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>1</th>
|
||||
<th>2</th>
|
||||
<th>3</th>
|
||||
<th>4</th>
|
||||
<th>5</th>
|
||||
<th>6</th>
|
||||
<th>7</th>
|
||||
<th>8</th>
|
||||
<th class="edup_this">9</th>
|
||||
<th>10</th>
|
||||
<th>11</th>
|
||||
<th>12</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td class="edup_title"><a href="#">[경영기획] 경영기획기본</a></td>
|
||||
<td class="edup_days">2</td>
|
||||
<td class="edup_time">14</td>
|
||||
<td class="edup_pass"></td>
|
||||
<td class="edup_pass">15,22</td>
|
||||
<td class="edup_pass"></td>
|
||||
<td class="edup_pass">2</td>
|
||||
<td class="edup_pass"></td>
|
||||
<td class="edup_pass">24</td>
|
||||
<td class="edup_pass"></td>
|
||||
<td class="edup_pass">22</td>
|
||||
<td class="edup_this">8</td>
|
||||
<td class="edup_pre">14</td>
|
||||
<td class="edup_pre">27</td>
|
||||
<td class="edup_pre"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="edup_title"><a href="#">[경영기획] 경영기획기본</a></td>
|
||||
<td class="edup_days">2</td>
|
||||
<td class="edup_time">14</td>
|
||||
<td class="edup_pass"></td>
|
||||
<td class="edup_pass">15,22</td>
|
||||
<td class="edup_pass"></td>
|
||||
<td class="edup_pass">2</td>
|
||||
<td class="edup_pass"></td>
|
||||
<td class="edup_pass">24</td>
|
||||
<td class="edup_pass"></td>
|
||||
<td class="edup_pass">22</td>
|
||||
<td class="edup_this">8</td>
|
||||
<td class="edup_pre">14</td>
|
||||
<td class="edup_pre">27</td>
|
||||
<td class="edup_pre"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="edup_title"><a href="#">[경영기획] 경영기획기본</a></td>
|
||||
<td class="edup_days">2</td>
|
||||
<td class="edup_time">14</td>
|
||||
<td class="edup_pass"></td>
|
||||
<td class="edup_pass">15,22</td>
|
||||
<td class="edup_pass"></td>
|
||||
<td class="edup_pass">2</td>
|
||||
<td class="edup_pass"></td>
|
||||
<td class="edup_pass">24</td>
|
||||
<td class="edup_pass"></td>
|
||||
<td class="edup_pass">22</td>
|
||||
<td class="edup_this">8</td>
|
||||
<td class="edup_pre">14</td>
|
||||
<td class="edup_pre">27</td>
|
||||
<td class="edup_pre"></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
213
src/main/webapp/WEB-INF/jsp/web/ve/aplct/sspnIdtmt/main_2.jsp
Normal file
213
src/main/webapp/WEB-INF/jsp/web/ve/aplct/sspnIdtmt/main_2.jsp
Normal file
@ -0,0 +1,213 @@
|
||||
<%@ 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="ve" uri="/WEB-INF/tlds/kcc_tld.tld"%>
|
||||
<%@ taglib prefix="un" uri="http://jakarta.apache.org/taglibs/unstandard-1.0" %>
|
||||
<%@ taglib prefix="kc" uri="/WEB-INF/tlds/kcc_tld.tld"%>
|
||||
<un:useConstants var="VeConstants" className="kcc.ve.cmm.VeConstants" />
|
||||
<title>교육신청 목록 > 성인 찾아가는 저작권 교육 > 한국저작권위원회 저작권 교육 시스템</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
<script type="text/javaScript" language="javascript">
|
||||
function linkPage(pageNo){
|
||||
var listForm = document.listForm ;
|
||||
listForm.pageIndex.value = pageNo ;
|
||||
listForm.action = "<c:url value='/web/ve/aplct/adultVisitEdu/eduAplct/eduAplctList.do'/>";
|
||||
listForm.submit();
|
||||
}
|
||||
|
||||
function goWrite(){
|
||||
$("#listForm").attr("action","${pageContext.request.contextPath}/web/ve/aplct/adultVisitEdu/eduAplct/eduAplctReg.do").submit();
|
||||
}
|
||||
|
||||
function fncGoDetail(eduAplctOrd){
|
||||
var listForm = document.listForm ;
|
||||
listForm.eduAplctOrd.value = eduAplctOrd ;
|
||||
$("#listForm").attr("action","${pageContext.request.contextPath}/web/ve/aplct/adultVisitEdu/eduAplct/eduAplctDetail.do").submit();
|
||||
}
|
||||
|
||||
function fncGoList(){
|
||||
linkPage(1);
|
||||
}
|
||||
|
||||
function fncReset(thisObj){
|
||||
var targetObj = $(thisObj).closest('.list_top').find('select,input');
|
||||
$.each(targetObj, function(){
|
||||
$(this).val('');
|
||||
});
|
||||
}
|
||||
</script>
|
||||
|
||||
<!-- content -->
|
||||
<!-- <div class="snb">
|
||||
<h2>찾아가는 저작권 교육<span>청소년</span></h2>
|
||||
<div class="ssleftxt">
|
||||
<ul>
|
||||
<li><a href="#none">교육신청 방법</a></li>
|
||||
<li><a href="#none">교육일정 안내</a></li>
|
||||
<li class="menu_on"><a href="#none">교육신청</a></li>
|
||||
<li><a href="#none">교육신청 조회</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div> -->
|
||||
<div class="cont_wrap">
|
||||
<div class="cont_tit">
|
||||
<h2>교육기반강화연수</h2>
|
||||
<div class="sns_go">
|
||||
<button type="button" title="새창열림"><img
|
||||
src="/offeduadvc/visitEdu/usr/publish/images/content/facebook_icon.png" alt="페이스북 바로가기"><a href="https://www.facebook.com/koreacopyright" target="_blank"></a></button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="tit_box">
|
||||
<i class="tit_box_icon1"></i>
|
||||
<div>
|
||||
<p>찾아가는 저작권 교육 (내용 필요)</p>
|
||||
<span>‘찾아가는 저작권 교육’은 저작권 교육이 필요한 <span>전국 초ㆍ중ㆍ고등학교, 청소년ㆍ아동복지ㆍ노인ㆍ장애인 기관 및 단체 등</span>에 직접 방문하여
|
||||
무료로 강의를 지원하는 맞춤형 교육 서비스입니다.</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="tb_tit02">
|
||||
<div class="tb_tit02_left">
|
||||
<div class="t_edu">교육과정</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="list_top">
|
||||
<div class="list_top_left">
|
||||
<label for="" class="label">교육과정 선택</label>
|
||||
<select class="selType1">
|
||||
<option for="">전체</option>
|
||||
<option for="">지난교육일정</option>
|
||||
<option for="">당월교육일정</option>
|
||||
<option for="">교육예정일정</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="btn_wrap">
|
||||
<div class="calendar_wrap">
|
||||
<duet-date-picker identifier="date" name="searchStartDt" class="startDate hydrated" value=""></duet-date-picker>
|
||||
</div>
|
||||
~
|
||||
<div class="calendar_wrap">
|
||||
<duet-date-picker identifier="date" name="searchEndDt" class="endDate hydrated" value=""></duet-date-picker>
|
||||
</div>
|
||||
<script src="/offeduadvc/visitEdu/usr/publish/script/duetdatepicker.js"></script>
|
||||
<button type="button" class="btnType01">검색</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="edup_result">
|
||||
<div>총 <span>6</span>개의 검색결과가 있습니다.</div>
|
||||
<ul>
|
||||
<li class="pass">지난교육일정</li>
|
||||
<li class="this">당월교육일정</li>
|
||||
<li class="pre">교육예정일정</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="edu_program">
|
||||
<table>
|
||||
<caption>교육일정표</caption>
|
||||
<colgroup>
|
||||
<col style="width: ;">
|
||||
<col style="width: ;">
|
||||
<col style="width: ;">
|
||||
<col style="width:4%;">
|
||||
<col style="width:4%;">
|
||||
<col style="width:4%;">
|
||||
<col style="width:4%;">
|
||||
<col style="width:4%;">
|
||||
<col style="width:4%;">
|
||||
<col style="width:4%;">
|
||||
<col style="width:4%;">
|
||||
<col style="width:4%;">
|
||||
<col style="width:4%;">
|
||||
<col style="width:4%;">
|
||||
<col style="width:4%;">
|
||||
</colgroup>
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="first" rowspan="2">교육과정명<br/><span class="ep_text">(상세 내용을 보시려면 과정을 클릭하세요)</span></th>
|
||||
<th rowspan="2">일수</th>
|
||||
<th rowspan="2">시간</th>
|
||||
<th colspan="12">교육일정<sapn class="ep_text">(교육 시작일)</sapn></th>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>1</th>
|
||||
<th>2</th>
|
||||
<th>3</th>
|
||||
<th>4</th>
|
||||
<th>5</th>
|
||||
<th>6</th>
|
||||
<th>7</th>
|
||||
<th>8</th>
|
||||
<th class="edup_this">9</th>
|
||||
<th>10</th>
|
||||
<th>11</th>
|
||||
<th>12</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td class="edup_title"><a href="#">[경영기획] 경영기획기본</a></td>
|
||||
<td class="edup_days">2</td>
|
||||
<td class="edup_time">14</td>
|
||||
<td class="edup_pass"></td>
|
||||
<td class="edup_pass">15,22</td>
|
||||
<td class="edup_pass"></td>
|
||||
<td class="edup_pass">2</td>
|
||||
<td class="edup_pass"></td>
|
||||
<td class="edup_pass">24</td>
|
||||
<td class="edup_pass"></td>
|
||||
<td class="edup_pass">22</td>
|
||||
<td class="edup_this">8</td>
|
||||
<td class="edup_pre">14</td>
|
||||
<td class="edup_pre">27</td>
|
||||
<td class="edup_pre"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="edup_title"><a href="#">[경영기획] 경영기획기본</a></td>
|
||||
<td class="edup_days">2</td>
|
||||
<td class="edup_time">14</td>
|
||||
<td class="edup_pass"></td>
|
||||
<td class="edup_pass">15,22</td>
|
||||
<td class="edup_pass"></td>
|
||||
<td class="edup_pass">2</td>
|
||||
<td class="edup_pass"></td>
|
||||
<td class="edup_pass">24</td>
|
||||
<td class="edup_pass"></td>
|
||||
<td class="edup_pass">22</td>
|
||||
<td class="edup_this">8</td>
|
||||
<td class="edup_pre">14</td>
|
||||
<td class="edup_pre">27</td>
|
||||
<td class="edup_pre"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="edup_title"><a href="#">[경영기획] 경영기획기본</a></td>
|
||||
<td class="edup_days">2</td>
|
||||
<td class="edup_time">14</td>
|
||||
<td class="edup_pass"></td>
|
||||
<td class="edup_pass">15,22</td>
|
||||
<td class="edup_pass"></td>
|
||||
<td class="edup_pass">2</td>
|
||||
<td class="edup_pass"></td>
|
||||
<td class="edup_pass">24</td>
|
||||
<td class="edup_pass"></td>
|
||||
<td class="edup_pass">22</td>
|
||||
<td class="edup_this">8</td>
|
||||
<td class="edup_pre">14</td>
|
||||
<td class="edup_pre">27</td>
|
||||
<td class="edup_pre"></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
Loading…
Reference in New Issue
Block a user