2025-09-30 14:29 설문오픈일시 추가

This commit is contained in:
myname 2025-09-30 14:30:02 +09:00
parent 963e0d60ac
commit ce74596290
11 changed files with 198 additions and 5 deletions

View File

@ -236,6 +236,10 @@ public class VEPrcsDetailVO extends ComDefaultVO implements Serializable {
private String reqNo; //요청번호 - excel 참고 private String reqNo; //요청번호 - excel 참고
private String qustnrStrtPnttm; //설문오픈일
private String qustnrTm; //설문오픈시
public String getEduPrcsOrd() { public String getEduPrcsOrd() {
return eduPrcsOrd; return eduPrcsOrd;
@ -1090,5 +1094,16 @@ public class VEPrcsDetailVO extends ComDefaultVO implements Serializable {
this.reqNo = reqNo; this.reqNo = reqNo;
} }
public String getQustnrStrtPnttm() {
return qustnrStrtPnttm;
}
public void setQustnrStrtPnttm(String qustnrStrtPnttm) {
this.qustnrStrtPnttm = qustnrStrtPnttm;
}
public String getQustnrTm() {
return qustnrTm;
}
public void setQustnrTm(String qustnrTm) {
this.qustnrTm = qustnrTm;
}
} }

View File

@ -42,6 +42,9 @@
,cn_atch_file_id ,cn_atch_file_id
,prcs_cn ,prcs_cn
,qustnr_strt_pnttm
,qustnr_tm
</sql> </sql>
<!-- 조회용 공통 컬럼 명 --> <!-- 조회용 공통 컬럼 명 -->
@ -121,6 +124,10 @@
,#cnAtchFileId# ,#cnAtchFileId#
,#prcsCn# ,#prcsCn#
,#qustnrStrtPnttm#
,#qustnrTm#
,#oprtnAtchFileId# ,#oprtnAtchFileId#
) )
</insert> </insert>
@ -283,8 +290,15 @@
, cn_atch_file_id = #cnAtchFileId# , cn_atch_file_id = #cnAtchFileId#
</isNotEmpty> </isNotEmpty>
<isNotEmpty property="prcsCn"> <isNotEmpty property="prcsCn">
, prcs_cn = #prcsCn# , prcs_cn = #prcsCn#
</isNotEmpty> </isNotEmpty>
<isNotEmpty property="qustnrStrtPnttm">
, qustnr_strt_pnttm = #qustnrStrtPnttm#
</isNotEmpty>
<isNotEmpty property="qustnrTm">
, qustnr_tm = #qustnrTm#
</isNotEmpty>
<isNotEmpty property="oprtnAtchFileId"> <isNotEmpty property="oprtnAtchFileId">
, oprtn_atch_file_id = #oprtnAtchFileId# , oprtn_atch_file_id = #oprtnAtchFileId#
@ -807,6 +821,9 @@
, b.prcs_div as prcsDiv , b.prcs_div as prcsDiv
, a.edu_place as eduPlace , a.edu_place as eduPlace
, a.qustnr_strt_pnttm AS qustnrStrtPnttm
, a.qustnr_tm AS qustnrTm
,a.dead_line_dt AS deadLineDt ,a.dead_line_dt AS deadLineDt
,a.prcs_ord AS prcsOrd ,a.prcs_ord AS prcsOrd
,a.edu_part_cd AS eduPartCd ,a.edu_part_cd AS eduPartCd

View File

@ -510,6 +510,12 @@
<c:out value="${info.eduStrtPnttm}"/> <c:out value="${info.eduStrtPnttm}"/>
</td> </td>
</tr> </tr>
<tr>
<th scope="row">설문오픈일시</th>
<td>
<c:out value="${info.qustnrStrtPnttm}"/> <c:out value="${info.qustnrTm}"/>시
</td>
</tr>
<tr> <tr>
<th scope="row">상세교육과정</th> <th scope="row">상세교육과정</th>
<td> <td>

View File

@ -45,6 +45,17 @@
$(".btn_type01").on('click', function(){ $(".btn_type01").on('click', function(){
$("#file_temp").click(); $("#file_temp").click();
}); });
for(var m=0; m<=23; m++){
if ('${info.qustnrTm}'==m){
$("#qustnrTm").append("<option value='" + m + "' selected>" + m + "시</option>");
}else{
$("#qustnrTm").append("<option value='" + m + "'>" + m + "시</option>");
}
}
}); });
@ -299,8 +310,25 @@
<div class="calendar_wrap"> <div class="calendar_wrap">
<input type="text" class="calendar" title="종료일 선택" id="eduDdlnPnttm" name="eduDdlnPnttm" value="${info.eduDdlnPnttm}"> <input type="text" class="calendar" title="종료일 선택" id="eduDdlnPnttm" name="eduDdlnPnttm" value="${info.eduDdlnPnttm}">
</div> --%> </div> --%>
</td> </td>
</tr> </tr>
<tr>
<th scope="row">설문오픈일</th>
<td>
<div class="calendar_wrap">
<input type="text" class="calendar" title="시작일 선택" id="qustnrStrtPnttm" name="qustnrStrtPnttm" value="${info.qustnrStrtPnttm}">
<label for="qustnrTm" class="label">설문오픈시</label>
<select name="qustnrTm" id="qustnrTm" class="sel_type1">
</select>
</div>
<%-- ~
<div class="calendar_wrap">
<input type="text" class="calendar" title="종료일 선택" id="eduDdlnPnttm" name="eduDdlnPnttm" value="${info.eduDdlnPnttm}">
</div> --%>
</td>
</tr>
<tr id="tr_eduPlace"> <tr id="tr_eduPlace">
<th scope="row" id="thId">교육장소</th> <th scope="row" id="thId">교육장소</th>
<td class="addPro_wrap"> <td class="addPro_wrap">

View File

@ -53,6 +53,10 @@
$("#filebutton").on('click', function(){ $("#filebutton").on('click', function(){
$("#file_temp").click(); $("#file_temp").click();
}); });
for(var m=0; m<=23; m++){
$("#qustnrTm").append("<option value='" + m + "'>" + m + "시</option>");
}
}); });
@ -260,6 +264,23 @@
</div> --%> </div> --%>
</td> </td>
</tr> </tr>
<tr>
<th scope="row">설문오픈일시</th>
<td>
<div class="calendar_wrap">
<input type="text" class="calendar" title="설문오픈일 선택" id="qustnrStrtPnttm" name="qustnrStrtPnttm" />
<label for="qustnrTm" class="label">설문오픈시</label>
<select name="qustnrTm" id="qustnrTm" class="sel_type1">
</select>
</div>
<%-- ~
<div class="calendar_wrap">
<input type="text" class="calendar" title="종료일 선택" id="endPnttm" name="endPnttm" value="${vEEduAplctVO.endPnttm}">
</div> --%>
</td>
</tr>
<tr id="tr_eduPlace"> <tr id="tr_eduPlace">
<th scope="row" id="thId">교육장소</th> <th scope="row" id="thId">교육장소</th>
<td class="addPro_wrap"> <td class="addPro_wrap">

View File

@ -498,7 +498,13 @@
<td> <td>
<c:out value="${info.eduStrtPnttm}"/> <c:out value="${info.eduStrtPnttm}"/>
</td> </td>
</tr> </tr>
<tr>
<th scope="row">설문오픈일시</th>
<td>
<c:out value="${info.qustnrStrtPnttm}"/> <c:out value="${info.qustnrTm}"/>시
</td>
</tr>
<tr> <tr>
<th scope="row">상세교육과정</th> <th scope="row">상세교육과정</th>
<td> <td>

View File

@ -45,6 +45,17 @@
$(".btn_type01").on('click', function(){ $(".btn_type01").on('click', function(){
$("#file_temp").click(); $("#file_temp").click();
}); });
for(var m=0; m<=23; m++){
if ('${info.qustnrTm}'==m){
$("#qustnrTm").append("<option value='" + m + "' selected>" + m + "시</option>");
}else{
$("#qustnrTm").append("<option value='" + m + "'>" + m + "시</option>");
}
}
}); });
@ -301,6 +312,21 @@
</div> --%> </div> --%>
</td> </td>
</tr> </tr>
<tr>
<th scope="row">설문오픈일</th>
<td>
<div class="calendar_wrap">
<input type="text" class="calendar" title="시작일 선택" id="qustnrStrtPnttm" name="qustnrStrtPnttm" value="${info.qustnrStrtPnttm}">
<label for="qustnrTm" class="label">설문오픈시</label>
<select name="qustnrTm" id="qustnrTm" class="sel_type1">
</select>
</div>
<%-- ~
<div class="calendar_wrap">
<input type="text" class="calendar" title="종료일 선택" id="eduDdlnPnttm" name="eduDdlnPnttm" value="${info.eduDdlnPnttm}">
</div> --%>
</td>
</tr>
<tr id="tr_eduPlace"> <tr id="tr_eduPlace">
<th scope="row" id="thId">교육장소</th> <th scope="row" id="thId">교육장소</th>
<td class="addPro_wrap"> <td class="addPro_wrap">

View File

@ -53,6 +53,10 @@
$("#filebutton").on('click', function(){ $("#filebutton").on('click', function(){
$("#file_temp").click(); $("#file_temp").click();
}); });
for(var m=0; m<=23; m++){
$("#qustnrTm").append("<option value='" + m + "'>" + m + "시</option>");
}
}); });
@ -260,6 +264,21 @@
</div> --%> </div> --%>
</td> </td>
</tr> </tr>
<tr>
<th scope="row">설문오픈일시</th>
<td>
<div class="calendar_wrap">
<input type="text" class="calendar" title="설문오픈일 선택" id="qustnrStrtPnttm" name="qustnrStrtPnttm" />
<label for="qustnrTm" class="label">설문오픈시</label>
<select name="qustnrTm" id="qustnrTm" class="sel_type1">
</select>
</div>
<%-- ~
<div class="calendar_wrap">
<input type="text" class="calendar" title="종료일 선택" id="endPnttm" name="endPnttm" value="${vEEduAplctVO.endPnttm}">
</div> --%>
</td>
</tr>
<tr id="tr_eduPlace"> <tr id="tr_eduPlace">
<th scope="row" id="thId">교육장소</th> <th scope="row" id="thId">교육장소</th>
<td class="addPro_wrap"> <td class="addPro_wrap">

View File

@ -510,6 +510,12 @@
<c:out value="${info.eduStrtPnttm}"/> <c:out value="${info.eduStrtPnttm}"/>
</td> </td>
</tr> </tr>
<tr>
<th scope="row">설문오픈일시</th>
<td>
<c:out value="${info.qustnrStrtPnttm}"/> <c:out value="${info.qustnrTm}"/>시
</td>
</tr>
<tr> <tr>
<th scope="row">상세교육과정</th> <th scope="row">상세교육과정</th>
<td> <td>

View File

@ -45,6 +45,17 @@
$(".btn_type01").on('click', function(){ $(".btn_type01").on('click', function(){
$("#file_temp").click(); $("#file_temp").click();
}); });
for(var m=0; m<=23; m++){
if ('${info.qustnrTm}'==m){
$("#qustnrTm").append("<option value='" + m + "' selected>" + m + "시</option>");
}else{
$("#qustnrTm").append("<option value='" + m + "'>" + m + "시</option>");
}
}
}); });
@ -301,6 +312,23 @@
</div> --%> </div> --%>
</td> </td>
</tr> </tr>
<tr>
<th scope="row">설문오픈일</th>
<td>
<div class="calendar_wrap">
<input type="text" class="calendar" title="시작일 선택" id="qustnrStrtPnttm" name="qustnrStrtPnttm" value="${info.qustnrStrtPnttm}">
<label for="qustnrTm" class="label">설문오픈시</label>
<select name="qustnrTm" id="qustnrTm" class="sel_type1">
</select>
</div>
<%-- ~
<div class="calendar_wrap">
<input type="text" class="calendar" title="종료일 선택" id="eduDdlnPnttm" name="eduDdlnPnttm" value="${info.eduDdlnPnttm}">
</div> --%>
</td>
</tr>
<tr id="tr_eduPlace"> <tr id="tr_eduPlace">
<th scope="row" id="thId">교육장소</th> <th scope="row" id="thId">교육장소</th>
<td class="addPro_wrap"> <td class="addPro_wrap">

View File

@ -53,6 +53,10 @@
$("#filebutton").on('click', function(){ $("#filebutton").on('click', function(){
$("#file_temp").click(); $("#file_temp").click();
}); });
for(var m=0; m<=23; m++){
$("#qustnrTm").append("<option value='" + m + "'>" + m + "시</option>");
}
}); });
@ -260,6 +264,23 @@
</div> --%> </div> --%>
</td> </td>
</tr> </tr>
<tr>
<th scope="row">설문오픈일시</th>
<td>
<div class="calendar_wrap">
<input type="text" class="calendar" title="설문오픈일 선택" id="qustnrStrtPnttm" name="qustnrStrtPnttm" />
<label for="qustnrTm" class="label">설문오픈시</label>
<select name="qustnrTm" id="qustnrTm" class="sel_type1">
</select>
</div>
<%-- ~
<div class="calendar_wrap">
<input type="text" class="calendar" title="종료일 선택" id="endPnttm" name="endPnttm" value="${vEEduAplctVO.endPnttm}">
</div> --%>
</td>
</tr>
<tr id="tr_eduPlace"> <tr id="tr_eduPlace">
<th scope="row" id="thId">교육장소</th> <th scope="row" id="thId">교육장소</th>
<td class="addPro_wrap"> <td class="addPro_wrap">