Merge branch 'hylee' into advc
This commit is contained in:
commit
98d611f887
@ -166,6 +166,8 @@ public class EduAplctMngTngrController {
|
|||||||
vEEduAplctVO.setOrderByQuery(vEEduAplctVO.getSearchSortCnd() + " " +vEEduAplctVO.getSearchSortOrd());
|
vEEduAplctVO.setOrderByQuery(vEEduAplctVO.getSearchSortCnd() + " " +vEEduAplctVO.getSearchSortOrd());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
System.out.println("vEEduAplctVO.getOrderByQuery() :: "+ vEEduAplctVO.getOrderByQuery());
|
||||||
|
|
||||||
//2. pageing step2
|
//2. pageing step2
|
||||||
vEEduAplctVO = this.setPagingStep2Sub(vEEduAplctVO, paginationInfo);
|
vEEduAplctVO = this.setPagingStep2Sub(vEEduAplctVO, paginationInfo);
|
||||||
vEEduAplctVO.setNotiUserId(user.getUniqId());
|
vEEduAplctVO.setNotiUserId(user.getUniqId());
|
||||||
|
|||||||
@ -408,6 +408,42 @@ public class EduRsltMngTngrController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 교육결과관리 상세 화면
|
||||||
|
*/
|
||||||
|
@RequestMapping("popup/chasiStatusPopup.do")
|
||||||
|
public String chasiStatusPopup(
|
||||||
|
@ModelAttribute("vEEduAplctVO") VEEduAplctVO vEEduAplctVO
|
||||||
|
, ModelMap model
|
||||||
|
, HttpSession session
|
||||||
|
, HttpServletRequest request
|
||||||
|
) throws Exception {
|
||||||
|
// 설문조사 문항리스트 조회
|
||||||
|
|
||||||
|
QustnrRespondInfoVO qustnrRespondInfoVO = new QustnrRespondInfoVO();
|
||||||
|
qustnrRespondInfoVO.setSiteId(VeConstants.LCTR_DIV_CD_10);
|
||||||
|
QustnrRespondInfoVO info = egovQustnrRespondInfoService.selectSiteIdQustnrTmplat(qustnrRespondInfoVO);
|
||||||
|
|
||||||
|
Map <String, Object> commandMap =new HashMap<String, Object>();
|
||||||
|
commandMap.put("qestnrTmplatId", "QTMPLA_0000000000001");
|
||||||
|
commandMap.put("qestnrId",info.getQestnrId()); //문제 ID
|
||||||
|
model.addAttribute("Comtnqustnrqesitm", egovQustnrRespondInfoService.selectQustnrRespondInfoManageComtnqustnrqesitm(commandMap));
|
||||||
|
System.out.println("================================= Comtnqustnrqesitm =================================");
|
||||||
|
|
||||||
|
// 설문조사 결과 조회
|
||||||
|
qustnrRespondInfoVO.setEduAplctOrd(vEEduAplctVO.getEduAplctOrd());
|
||||||
|
qustnrRespondInfoVO.setEduChasiOrd(vEEduAplctVO.getEduChasiOrd());
|
||||||
|
List<QustnrRespondInfoVO> chasiSrvyList = egovQustnrRespondInfoService.selectChasiSrvyList(qustnrRespondInfoVO);
|
||||||
|
if(chasiSrvyList.size() > 0) {
|
||||||
|
model.addAttribute("qestnrRespondent", chasiSrvyList.get(0).getQestnrRespondent());
|
||||||
|
model.addAttribute("qestnrParticipant", chasiSrvyList.get(0).getQestnrParticipant());
|
||||||
|
model.addAttribute("chasiSrvyList",chasiSrvyList);
|
||||||
|
}
|
||||||
|
System.out.println("=============================================chasiSrvyList=============================================");
|
||||||
|
|
||||||
|
return "oprtn/tngrVisitEdu/popup/chasiStatusPopup";
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 교육결과관리 상세 화면
|
* 교육결과관리 상세 화면
|
||||||
*/
|
*/
|
||||||
@ -425,6 +461,7 @@ public class EduRsltMngTngrController {
|
|||||||
//String s_userCheckNInfo = checkLoginUtil.userCheckNInfo(model, request);
|
//String s_userCheckNInfo = checkLoginUtil.userCheckNInfo(model, request);
|
||||||
//if (!"".equals(s_userCheckNInfo)) return s_userCheckNInfo;
|
//if (!"".equals(s_userCheckNInfo)) return s_userCheckNInfo;
|
||||||
LoginVO user = EgovUserDetailsHelper.isAuthenticated()? (LoginVO)EgovUserDetailsHelper.getAuthenticatedUser():null;
|
LoginVO user = EgovUserDetailsHelper.isAuthenticated()? (LoginVO)EgovUserDetailsHelper.getAuthenticatedUser():null;
|
||||||
|
model.addAttribute("vEEduAplctVO", vEEduAplctVO);
|
||||||
//로그인 처리====================================
|
//로그인 처리====================================
|
||||||
try{
|
try{
|
||||||
String chasiOrd = vEEduAplctVO.getEduChasiOrd();
|
String chasiOrd = vEEduAplctVO.getEduChasiOrd();
|
||||||
@ -534,6 +571,7 @@ public class EduRsltMngTngrController {
|
|||||||
commandMap.put("qestnrTmplatId", "QTMPLA_0000000000001");
|
commandMap.put("qestnrTmplatId", "QTMPLA_0000000000001");
|
||||||
commandMap.put("qestnrId",info.getQestnrId()); //문제 ID
|
commandMap.put("qestnrId",info.getQestnrId()); //문제 ID
|
||||||
model.addAttribute("Comtnqustnrqesitm", egovQustnrRespondInfoService.selectQustnrRespondInfoManageComtnqustnrqesitm(commandMap));
|
model.addAttribute("Comtnqustnrqesitm", egovQustnrRespondInfoService.selectQustnrRespondInfoManageComtnqustnrqesitm(commandMap));
|
||||||
|
System.out.println("================================= Comtnqustnrqesitm =================================");
|
||||||
|
|
||||||
// 설문조사 결과 조회
|
// 설문조사 결과 조회
|
||||||
qustnrRespondInfoVO.setEduAplctOrd(vEEduAplctVO.getEduAplctOrd());
|
qustnrRespondInfoVO.setEduAplctOrd(vEEduAplctVO.getEduAplctOrd());
|
||||||
@ -544,6 +582,7 @@ public class EduRsltMngTngrController {
|
|||||||
model.addAttribute("qestnrParticipant", chasiSrvyList.get(0).getQestnrParticipant());
|
model.addAttribute("qestnrParticipant", chasiSrvyList.get(0).getQestnrParticipant());
|
||||||
model.addAttribute("chasiSrvyList",chasiSrvyList);
|
model.addAttribute("chasiSrvyList",chasiSrvyList);
|
||||||
}
|
}
|
||||||
|
System.out.println("=============================================chasiSrvyList=============================================");
|
||||||
|
|
||||||
/*
|
/*
|
||||||
System.out.println("------------------------");
|
System.out.println("------------------------");
|
||||||
|
|||||||
@ -774,22 +774,9 @@
|
|||||||
</isEqual>
|
</isEqual>
|
||||||
|
|
||||||
ORDER BY 1=1
|
ORDER BY 1=1
|
||||||
<isEmpty property="orderByQuery">
|
|
||||||
, A.EDU_APLCT_ORD DESC
|
|
||||||
</isEmpty>
|
|
||||||
<isNotEmpty property="orderByQuery">
|
<isNotEmpty property="orderByQuery">
|
||||||
<isEqual property="orderByQuery" compareValue="desc">
|
, $orderByQuery$
|
||||||
, CC.EDU_HOPE_DT desc
|
|
||||||
</isEqual>
|
|
||||||
<isEqual property="orderByQuery" compareValue="asc">
|
|
||||||
, CC.EDU_HOPE_DT asc
|
|
||||||
</isEqual>
|
|
||||||
</isNotEmpty>
|
</isNotEmpty>
|
||||||
|
|
||||||
|
|
||||||
<!-- <isNotEmpty property="orderByQuery"> -->
|
|
||||||
<!-- , $orderByQuery$ -->
|
|
||||||
<!-- </isNotEmpty> -->
|
|
||||||
<isNotEqual property="mode" compareValue="EXCEL">
|
<isNotEqual property="mode" compareValue="EXCEL">
|
||||||
LIMIT #recordCountPerPage# OFFSET #firstIndex#
|
LIMIT #recordCountPerPage# OFFSET #firstIndex#
|
||||||
</isNotEqual>
|
</isNotEqual>
|
||||||
|
|||||||
@ -221,14 +221,63 @@ function replyCalculation(){
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// 강사 변경
|
||||||
|
function fn_chasiStatusPop() {
|
||||||
|
var form = document.chasiStatusPopForm;
|
||||||
|
|
||||||
|
// form.eduAplctOrd.value = aplctOrd;
|
||||||
|
// form.eduChasiOrd.value = chasiOrd;
|
||||||
|
// form.strtTm.value = strtTm;
|
||||||
|
// form.endTm.value = endTm;
|
||||||
|
// form.asgnmAprvlCd.value = code;
|
||||||
|
|
||||||
|
//추가 강사 변경
|
||||||
|
// form.action = "<c:url value='/kccadr/oprtn/tngrVisitEdu/popup/instrAsgnmAddPopup.do'/>";
|
||||||
|
console.log("form :: ", form);
|
||||||
|
form.action = "<c:url value='/kccadr/oprtn/tngrVisitEdu/popup/chasiStatusPopup.do'/>";
|
||||||
|
|
||||||
|
|
||||||
|
window.open("#", "_chasiStatusPop", "scrollbars = no, top=100px, left=100px, height=750px, width=1200px");
|
||||||
|
form.target = "_chasiStatusPop";
|
||||||
|
form.submit();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
<form:form id="chasiStatusPopForm" name="chasiStatusPopForm" action="">
|
||||||
|
<input type="hidden" name="eduAplctOrd" value="<c:out value="${vEEduAplctVO.eduAplctOrd}" />" />
|
||||||
|
<input type="hidden" name="eduChasiOrd" value="<c:out value="${vEEduAplctVO.eduChasiOrd}" />" />
|
||||||
|
</form:form>
|
||||||
<form:form id="listForm" name="listForm" method="post" onsubmit="return false;">
|
<form:form id="listForm" name="listForm" method="post" onsubmit="return false;">
|
||||||
<input type="hidden" name="pageIndex" value="<c:out value='${vEEduAplctVO.pageIndex}' />"/>
|
<input type="hidden" name="pageIndex" value="<c:out value='${vEEduAplctVO.pageIndex}' />"/>
|
||||||
<input type="hidden" name="searchSortCnd" value="<c:out value="${vEEduAplctVO.searchSortCnd}" />" />
|
<input type="hidden" name="searchSortCnd" value="<c:out value="${vEEduAplctVO.searchSortCnd}" />" />
|
||||||
<input type="hidden" name="searchSortOrd" value="<c:out value="${vEEduAplctVO.searchSortOrd}" />" />
|
<input type="hidden" name="searchSortOrd" value="<c:out value="${vEEduAplctVO.searchSortOrd}" />" />
|
||||||
|
|
||||||
|
<input type="hidden" name="searchSubmitYn" value="<c:out value="${vEEduAplctVO.searchSubmitYn}" />" />
|
||||||
|
<input type="hidden" name="searchScholDivCd" value="<c:out value="${vEEduAplctVO.searchScholDivCd}" />" />
|
||||||
|
<input type="hidden" name="searchEduSlctAreaCd" value="<c:out value="${vEEduAplctVO.searchEduSlctAreaCd}" />" />
|
||||||
|
|
||||||
|
<input type="hidden" name="searchStartDt" value="<c:out value="${vEEduAplctVO.searchStartDt}" />" />
|
||||||
|
<input type="hidden" name="searchEndDt" value="<c:out value="${vEEduAplctVO.searchEndDt}" />" />
|
||||||
|
|
||||||
|
<input type="hidden" name="searchCondition" value="<c:out value="${vEEduAplctVO.searchCondition}" />" />
|
||||||
|
<input type="hidden" name="searchKeyword" value="<c:out value="${vEEduAplctVO.searchKeyword}" />" />
|
||||||
</form:form>
|
</form:form>
|
||||||
|
|
||||||
<form id="popForm" name="popForm" method="post">
|
<form id="popForm" name="popForm" method="post">
|
||||||
@ -622,6 +671,11 @@ function replyCalculation(){
|
|||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
</c:if>
|
</c:if>
|
||||||
|
<div>
|
||||||
|
<div class="btn_right">
|
||||||
|
<button type="button" class="btn_type06" onclick="fn_chasiStatusPop(); return false;">수정</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<!-- 비공개 메보 정보 -->
|
<!-- 비공개 메보 정보 -->
|
||||||
<div class="tb_tit01">
|
<div class="tb_tit01">
|
||||||
<p>비공개 메모</p>
|
<p>비공개 메모</p>
|
||||||
@ -704,5 +758,10 @@ function replyCalculation(){
|
|||||||
</div>
|
</div>
|
||||||
</form:form>
|
</form:form>
|
||||||
<!-- //cont -->
|
<!-- //cont -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -0,0 +1,424 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%>
|
||||||
|
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
||||||
|
<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui"%>
|
||||||
|
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
|
||||||
|
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
|
||||||
|
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
|
||||||
|
<%@ taglib prefix="validator" uri="http://www.springmodules.org/tags/commons-validator" %>
|
||||||
|
<%@ taglib prefix="ve" uri="/WEB-INF/tlds/kcc_tld.tld"%>
|
||||||
|
<%
|
||||||
|
/**
|
||||||
|
* @Class Name : instrAsgnmAddPopup.jsp
|
||||||
|
* @Description : 강사배치 추가강의 팝업
|
||||||
|
* @Modification Information
|
||||||
|
* @
|
||||||
|
* @ 수정일 수정자 수정내용
|
||||||
|
* @ ------- -------- ---------------------------
|
||||||
|
* @ 2021.08.09 김봉호 최초 생성
|
||||||
|
* @author 안주영
|
||||||
|
* @since 2022.1.8
|
||||||
|
* @version 1.0
|
||||||
|
* @see
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
%>
|
||||||
|
<html lang="ko">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
|
|
||||||
|
<%-- <script type="text/javascript" src="<c:url value='/js/ve/tmapJS.js'/>"></script> --%>
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
</script>
|
||||||
|
<title>강사배치 팝업</title>
|
||||||
|
<script type="text/javaScript" language="javascript">
|
||||||
|
$(document).ready(function() {
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<!-- ============================================================ -->
|
||||||
|
<!-- ============================================================ -->
|
||||||
|
<!-- ============================================================ -->
|
||||||
|
|
||||||
|
<form id="srvyPopupForm" name="srvyPopupForm" method="post">
|
||||||
|
<input type="hidden" name="eduAplctOrd" id="eduAplctOrd" value="eduAplct_00000001371">
|
||||||
|
<input type="hidden" name="eduChasiOrd" id="eduChasiOrd" value="eduChasi_00000001585">
|
||||||
|
<input type="hidden" name="qestnrId" id="qestnrId" value="QMANAGE_000000000400">
|
||||||
|
<input type="hidden" id="qestmInfoSize" value="8">
|
||||||
|
<div class="tooltip-wrap">
|
||||||
|
<div class="popup_wrap popType05" tabindex="0" data-tooltip-con="sub37_pop01" data-focus="sub37_pop01" data-focus-prev="sub37_pop01_close" style="width: 800px; display: block; left: 666.5px; top: 75.1145px;">
|
||||||
|
<div class="popup_tit">
|
||||||
|
<p>강의만족도 결과 등록</p>
|
||||||
|
<button class="btn_popup_close tooltip-close" data-focus="sub37_pop01_close" title="팝업 닫기"><i></i></button>
|
||||||
|
</div>
|
||||||
|
<div class="popup_cont">
|
||||||
|
<div class="cont_body">
|
||||||
|
<div class="pop_tb_type02">
|
||||||
|
<table>
|
||||||
|
<caption>교육일, 차시, 구분, 대상, 배정강사, 인원, 설문완료 여부 등의 정보제공</caption>
|
||||||
|
<colgroup>
|
||||||
|
<col style="width: 10%;">
|
||||||
|
<col style="width: 15%;">
|
||||||
|
<col style="width: 8%;">
|
||||||
|
<col style="width: 10%;">
|
||||||
|
<col style="width: 10%;">
|
||||||
|
<col style="width: 8%;">
|
||||||
|
<col style="width: 10%;">
|
||||||
|
</colgroup>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th scope="col">교육일</th>
|
||||||
|
<th scope="col">차시</th>
|
||||||
|
<th scope="col">구분</th>
|
||||||
|
<th scope="col">대상</th>
|
||||||
|
<th scope="col">배정강사</th>
|
||||||
|
<th scope="col">인원</th>
|
||||||
|
<th scope="col">설문완료 여부</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<th scope="row" id="popupEduHopeDt">2022-03-30</th>
|
||||||
|
<td id="popupTm">14:10~15:35(85분)</td>
|
||||||
|
<td id="popupDivCd">10</td>
|
||||||
|
<td id="popupTrgt">1-1반</td>
|
||||||
|
<td id="popupInstrNm">원영현</td>
|
||||||
|
<td id="popupPrsnl">55</td>
|
||||||
|
<td id="popupSrvyStatus">설문진행중</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="pop_tb_type01">
|
||||||
|
<table>
|
||||||
|
<caption>참석자, 응답율, 응답자, 무응답에 대한 정보를 제공/입력</caption>
|
||||||
|
<colgroup>
|
||||||
|
<col style="width: 120px;">
|
||||||
|
<col style="width: auto;">
|
||||||
|
<col style="width: 120px;">
|
||||||
|
<col style="width: auto;">
|
||||||
|
</colgroup>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<th scope="row">
|
||||||
|
<p>참석자</p>
|
||||||
|
</th>
|
||||||
|
<td>
|
||||||
|
<label for="qestnrParticipant" class="label">참석자 수 입력</label>
|
||||||
|
<input type="text" numberonly="" class="popupInput" style="width: 50%;" id="qestnrParticipant" name="qestnrParticipant" value="">
|
||||||
|
</td>
|
||||||
|
<th scope="row">
|
||||||
|
<p>응답율</p>
|
||||||
|
</th>
|
||||||
|
<td id="responseRate">-</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th scope="row">
|
||||||
|
<p>응답자</p>
|
||||||
|
</th>
|
||||||
|
<td>
|
||||||
|
<label for="qestnrRespondent" class="label">응답자 수 입력</label>
|
||||||
|
<input type="text" numberonly="" class="popupInput" style="width: 50%;" id="qestnrRespondent" name="qestnrRespondent" value="" onblur="replyCalculation(); return false;">
|
||||||
|
</td>
|
||||||
|
<th scope="row">
|
||||||
|
<p>무응답</p>
|
||||||
|
</th>
|
||||||
|
<td id="noResponse">-</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="pop_tb_type02">
|
||||||
|
<table>
|
||||||
|
<caption>평가문항, 매우만족, 만족, 보통, 불만족, 매우 불만족 입력</caption>
|
||||||
|
<colgroup>
|
||||||
|
<col style="width: auto;">
|
||||||
|
<col style="width: 12%;">
|
||||||
|
<col style="width: 12%;">
|
||||||
|
<col style="width: 12%;">
|
||||||
|
<col style="width: 12%;">
|
||||||
|
<col style="width: 12%;">
|
||||||
|
</colgroup>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th scope="col">평가문항</th>
|
||||||
|
<th scope="col">매우만족</th>
|
||||||
|
<th scope="col">만족</th>
|
||||||
|
<th scope="col">보통</th>
|
||||||
|
<th scope="col">불만족</th>
|
||||||
|
<th scope="col">매우불만족</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<th scope="row" class="t_left">
|
||||||
|
1) 본 교육운영에 대하여 전반적으로 만족하십니까?
|
||||||
|
|
||||||
|
<input type="hidden" name="resultList[0].qestnrId" value="QMANAGE_000000000400">
|
||||||
|
<input type="hidden" name="resultList[0].qestnrQesitmId" value="QQESTN_0000000000510">
|
||||||
|
|
||||||
|
</th>
|
||||||
|
<td>
|
||||||
|
<label for="verySatisfied_0" class="label">매우만족</label>
|
||||||
|
<input type="text" numberonly="" class="popupInput" style="width: 70%;padding:0 5px;text-align:center;" title="매우만족" id="verySatisfied_0" name="resultList[0].verySatisfied" value="0">
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<label for="satisfied_0" class="label">만족</label>
|
||||||
|
<input type="text" numberonly="" class="popupInput" style="width: 70%;padding:0 5px;text-align:center;" title="만족" id="satisfied_0" name="resultList[0].satisfied" value="0">
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<label for="neither_0" class="label">보통</label>
|
||||||
|
<input type="text" numberonly="" class="popupInput" style="width: 70%;padding:0 5px;text-align:center;" title="보통" id="neither_0" name="resultList[0].neither" value="">
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<label for="dissatisfied_0" class="label">불만족</label>
|
||||||
|
<input type="text" numberonly="" class="popupInput" style="width: 70%;padding:0 5px;text-align:center;" title="불만족" id="dissatisfied_0" name="resultList[0].dissatisfied" value="">
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<label for="veryDissatisfied_0" class="label">매우불만족</label>
|
||||||
|
<input type="text" numberonly="" class="popupInput" style="width: 70%;padding:0 5px;text-align:center;" title="매우불만족" id="veryDissatisfied_0" name="resultList[0].veryDissatisfied" value="">
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<th scope="row" class="t_left">
|
||||||
|
2) 본 교육 내용구성에 대해서는 어느 정도 만족 하십니까?
|
||||||
|
|
||||||
|
<input type="hidden" name="resultList[1].qestnrId" value="QMANAGE_000000000400">
|
||||||
|
<input type="hidden" name="resultList[1].qestnrQesitmId" value="QQESTN_0000000000511">
|
||||||
|
|
||||||
|
</th>
|
||||||
|
<td>
|
||||||
|
<label for="verySatisfied_1" class="label">매우만족</label>
|
||||||
|
<input type="text" numberonly="" class="popupInput" style="width: 70%;padding:0 5px;text-align:center;" title="매우만족" id="verySatisfied_1" name="resultList[1].verySatisfied" value="0">
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<label for="satisfied_1" class="label">만족</label>
|
||||||
|
<input type="text" numberonly="" class="popupInput" style="width: 70%;padding:0 5px;text-align:center;" title="만족" id="satisfied_1" name="resultList[1].satisfied" value="0">
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<label for="neither_1" class="label">보통</label>
|
||||||
|
<input type="text" numberonly="" class="popupInput" style="width: 70%;padding:0 5px;text-align:center;" title="보통" id="neither_1" name="resultList[1].neither" value="">
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<label for="dissatisfied_1" class="label">불만족</label>
|
||||||
|
<input type="text" numberonly="" class="popupInput" style="width: 70%;padding:0 5px;text-align:center;" title="불만족" id="dissatisfied_1" name="resultList[1].dissatisfied" value="">
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<label for="veryDissatisfied_1" class="label">매우불만족</label>
|
||||||
|
<input type="text" numberonly="" class="popupInput" style="width: 70%;padding:0 5px;text-align:center;" title="매우불만족" id="veryDissatisfied_1" name="resultList[1].veryDissatisfied" value="">
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<th scope="row" class="t_left">
|
||||||
|
3) 교육 시간은 적절했다고 생각하십니까?
|
||||||
|
|
||||||
|
<input type="hidden" name="resultList[2].qestnrId" value="QMANAGE_000000000400">
|
||||||
|
<input type="hidden" name="resultList[2].qestnrQesitmId" value="QQESTN_0000000000512">
|
||||||
|
|
||||||
|
</th>
|
||||||
|
<td>
|
||||||
|
<label for="verySatisfied_2" class="label">매우만족</label>
|
||||||
|
<input type="text" numberonly="" class="popupInput" style="width: 70%;padding:0 5px;text-align:center;" title="매우만족" id="verySatisfied_2" name="resultList[2].verySatisfied" value="0">
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<label for="satisfied_2" class="label">만족</label>
|
||||||
|
<input type="text" numberonly="" class="popupInput" style="width: 70%;padding:0 5px;text-align:center;" title="만족" id="satisfied_2" name="resultList[2].satisfied" value="0">
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<label for="neither_2" class="label">보통</label>
|
||||||
|
<input type="text" numberonly="" class="popupInput" style="width: 70%;padding:0 5px;text-align:center;" title="보통" id="neither_2" name="resultList[2].neither" value="">
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<label for="dissatisfied_2" class="label">불만족</label>
|
||||||
|
<input type="text" numberonly="" class="popupInput" style="width: 70%;padding:0 5px;text-align:center;" title="불만족" id="dissatisfied_2" name="resultList[2].dissatisfied" value="">
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<label for="veryDissatisfied_2" class="label">매우불만족</label>
|
||||||
|
<input type="text" numberonly="" class="popupInput" style="width: 70%;padding:0 5px;text-align:center;" title="매우불만족" id="veryDissatisfied_2" name="resultList[2].veryDissatisfied" value="">
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<th scope="row" class="t_left">
|
||||||
|
4) 본 교육을 받기 전 귀하의 저작권에 대한 인식은 어느 정도라고 생각하십니까?
|
||||||
|
|
||||||
|
<input type="hidden" name="resultList[3].qestnrId" value="QMANAGE_000000000400">
|
||||||
|
<input type="hidden" name="resultList[3].qestnrQesitmId" value="QQESTN_0000000000513">
|
||||||
|
|
||||||
|
</th>
|
||||||
|
<td>
|
||||||
|
<label for="verySatisfied_3" class="label">매우만족</label>
|
||||||
|
<input type="text" numberonly="" class="popupInput" style="width: 70%;padding:0 5px;text-align:center;" title="매우만족" id="verySatisfied_3" name="resultList[3].verySatisfied" value="0">
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<label for="satisfied_3" class="label">만족</label>
|
||||||
|
<input type="text" numberonly="" class="popupInput" style="width: 70%;padding:0 5px;text-align:center;" title="만족" id="satisfied_3" name="resultList[3].satisfied" value="0">
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<label for="neither_3" class="label">보통</label>
|
||||||
|
<input type="text" numberonly="" class="popupInput" style="width: 70%;padding:0 5px;text-align:center;" title="보통" id="neither_3" name="resultList[3].neither" value="">
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<label for="dissatisfied_3" class="label">불만족</label>
|
||||||
|
<input type="text" numberonly="" class="popupInput" style="width: 70%;padding:0 5px;text-align:center;" title="불만족" id="dissatisfied_3" name="resultList[3].dissatisfied" value="">
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<label for="veryDissatisfied_3" class="label">매우불만족</label>
|
||||||
|
<input type="text" numberonly="" class="popupInput" style="width: 70%;padding:0 5px;text-align:center;" title="매우불만족" id="veryDissatisfied_3" name="resultList[3].veryDissatisfied" value="">
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<th scope="row" class="t_left">
|
||||||
|
5) 본 교육을 받은 후, 귀하의 저작권에 대한 인식은 어느 정도라고 생각하십니까?
|
||||||
|
|
||||||
|
<input type="hidden" name="resultList[4].qestnrId" value="QMANAGE_000000000400">
|
||||||
|
<input type="hidden" name="resultList[4].qestnrQesitmId" value="QQESTN_0000000000514">
|
||||||
|
|
||||||
|
</th>
|
||||||
|
<td>
|
||||||
|
<label for="verySatisfied_4" class="label">매우만족</label>
|
||||||
|
<input type="text" numberonly="" class="popupInput" style="width: 70%;padding:0 5px;text-align:center;" title="매우만족" id="verySatisfied_4" name="resultList[4].verySatisfied" value="0">
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<label for="satisfied_4" class="label">만족</label>
|
||||||
|
<input type="text" numberonly="" class="popupInput" style="width: 70%;padding:0 5px;text-align:center;" title="만족" id="satisfied_4" name="resultList[4].satisfied" value="0">
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<label for="neither_4" class="label">보통</label>
|
||||||
|
<input type="text" numberonly="" class="popupInput" style="width: 70%;padding:0 5px;text-align:center;" title="보통" id="neither_4" name="resultList[4].neither" value="">
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<label for="dissatisfied_4" class="label">불만족</label>
|
||||||
|
<input type="text" numberonly="" class="popupInput" style="width: 70%;padding:0 5px;text-align:center;" title="불만족" id="dissatisfied_4" name="resultList[4].dissatisfied" value="">
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<label for="veryDissatisfied_4" class="label">매우불만족</label>
|
||||||
|
<input type="text" numberonly="" class="popupInput" style="width: 70%;padding:0 5px;text-align:center;" title="매우불만족" id="veryDissatisfied_4" name="resultList[4].veryDissatisfied" value="">
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<th scope="row" class="t_left">
|
||||||
|
6) 본 교육을 통해, 학교 수업 혹은 직무에 얼마나 도움이 될 것이라고 생각하십니까?
|
||||||
|
|
||||||
|
<input type="hidden" name="resultList[5].qestnrId" value="QMANAGE_000000000400">
|
||||||
|
<input type="hidden" name="resultList[5].qestnrQesitmId" value="QQESTN_0000000000515">
|
||||||
|
|
||||||
|
</th>
|
||||||
|
<td>
|
||||||
|
<label for="verySatisfied_5" class="label">매우만족</label>
|
||||||
|
<input type="text" numberonly="" class="popupInput" style="width: 70%;padding:0 5px;text-align:center;" title="매우만족" id="verySatisfied_5" name="resultList[5].verySatisfied" value="0">
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<label for="satisfied_5" class="label">만족</label>
|
||||||
|
<input type="text" numberonly="" class="popupInput" style="width: 70%;padding:0 5px;text-align:center;" title="만족" id="satisfied_5" name="resultList[5].satisfied" value="0">
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<label for="neither_5" class="label">보통</label>
|
||||||
|
<input type="text" numberonly="" class="popupInput" style="width: 70%;padding:0 5px;text-align:center;" title="보통" id="neither_5" name="resultList[5].neither" value="">
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<label for="dissatisfied_5" class="label">불만족</label>
|
||||||
|
<input type="text" numberonly="" class="popupInput" style="width: 70%;padding:0 5px;text-align:center;" title="불만족" id="dissatisfied_5" name="resultList[5].dissatisfied" value="">
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<label for="veryDissatisfied_5" class="label">매우불만족</label>
|
||||||
|
<input type="text" numberonly="" class="popupInput" style="width: 70%;padding:0 5px;text-align:center;" title="매우불만족" id="veryDissatisfied_5" name="resultList[5].veryDissatisfied" value="">
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<th scope="row" class="t_left">
|
||||||
|
7) 강사가 교육 5분 전까지 도착했나요?(지각여부_교사 only)
|
||||||
|
|
||||||
|
<input type="hidden" name="resultList[6].qestnrId" value="QMANAGE_000000000400">
|
||||||
|
<input type="hidden" name="resultList[6].qestnrQesitmId" value="QQESTN_0000000000520">
|
||||||
|
|
||||||
|
</th>
|
||||||
|
<td>
|
||||||
|
<label for="verySatisfied_6" class="label">매우만족</label>
|
||||||
|
<input type="text" numberonly="" class="popupInput" style="width: 70%;padding:0 5px;text-align:center;" title="매우만족" id="verySatisfied_6" name="resultList[6].verySatisfied" value="0">
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<label for="satisfied_6" class="label">만족</label>
|
||||||
|
<input type="text" numberonly="" class="popupInput" style="width: 70%;padding:0 5px;text-align:center;" title="만족" id="satisfied_6" name="resultList[6].satisfied" value="0">
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<label for="neither_6" class="label">보통</label>
|
||||||
|
<input type="text" numberonly="" class="popupInput" style="width: 70%;padding:0 5px;text-align:center;" title="보통" id="neither_6" name="resultList[6].neither" value="">
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<label for="dissatisfied_6" class="label">불만족</label>
|
||||||
|
<input type="text" numberonly="" class="popupInput" style="width: 70%;padding:0 5px;text-align:center;" title="불만족" id="dissatisfied_6" name="resultList[6].dissatisfied" value="">
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<label for="veryDissatisfied_6" class="label">매우불만족</label>
|
||||||
|
<input type="text" numberonly="" class="popupInput" style="width: 70%;padding:0 5px;text-align:center;" title="매우불만족" id="veryDissatisfied_6" name="resultList[6].veryDissatisfied" value="">
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<th scope="row" class="t_left">
|
||||||
|
8) 본 교육과 관련하여 강사가 교육 5분 전까지 도착했습니까?(지각여부확인_교사만)
|
||||||
|
|
||||||
|
<input type="hidden" name="resultList[7].qestnrId" value="QMANAGE_000000000400">
|
||||||
|
<input type="hidden" name="resultList[7].qestnrQesitmId" value="QQESTN_0000000000516">
|
||||||
|
|
||||||
|
</th>
|
||||||
|
<td>
|
||||||
|
<label for="verySatisfied_7" class="label">매우만족</label>
|
||||||
|
<input type="text" numberonly="" class="popupInput" style="width: 70%;padding:0 5px;text-align:center;" title="매우만족" id="verySatisfied_7" name="resultList[7].verySatisfied" value="0">
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<label for="satisfied_7" class="label">만족</label>
|
||||||
|
<input type="text" numberonly="" class="popupInput" style="width: 70%;padding:0 5px;text-align:center;" title="만족" id="satisfied_7" name="resultList[7].satisfied" value="0">
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<label for="neither_7" class="label">보통</label>
|
||||||
|
<input type="text" numberonly="" class="popupInput" style="width: 70%;padding:0 5px;text-align:center;" title="보통" id="neither_7" name="resultList[7].neither" value="">
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<label for="dissatisfied_7" class="label">불만족</label>
|
||||||
|
<input type="text" numberonly="" class="popupInput" style="width: 70%;padding:0 5px;text-align:center;" title="불만족" id="dissatisfied_7" name="resultList[7].dissatisfied" value="">
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<label for="veryDissatisfied_7" class="label">매우불만족</label>
|
||||||
|
<input type="text" numberonly="" class="popupInput" style="width: 70%;padding:0 5px;text-align:center;" title="매우불만족" id="veryDissatisfied_7" name="resultList[7].veryDissatisfied" value="">
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="pop_btn_wrap btn_layout01">
|
||||||
|
<div class="btn_left">
|
||||||
|
</div>
|
||||||
|
<div class="btn_center">
|
||||||
|
|
||||||
|
<button type="button" class="btnType05" id="popupSubmin" onclick="srvySendSubmit();">제출</button>
|
||||||
|
|
||||||
|
<button type="button" class="btnType02 tooltip-close" data-focus="sub37_pop01_close" data-focus-next="sub37_pop01">취소</button>
|
||||||
|
</div>
|
||||||
|
<div class="btn_right">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@ -96,6 +96,7 @@
|
|||||||
}
|
}
|
||||||
,dataType:'json'
|
,dataType:'json'
|
||||||
,success:function(returnData){
|
,success:function(returnData){
|
||||||
|
console.log(returnData);
|
||||||
var info = returnData.chasiInfo;
|
var info = returnData.chasiInfo;
|
||||||
var tm = info.strtTm.replace(/(.{2})/,"$1:") +"~"+ info.endTm.replace(/(.{2})/,"$1:")+"("+info.lrnTm+"분)"
|
var tm = info.strtTm.replace(/(.{2})/,"$1:") +"~"+ info.endTm.replace(/(.{2})/,"$1:")+"("+info.lrnTm+"분)"
|
||||||
$("#popupEduHopeDt").text(info.eduHopeDt);
|
$("#popupEduHopeDt").text(info.eduHopeDt);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user