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 qustnrStrtPnttm; //설문오픈일
private String qustnrTm; //설문오픈시
public String getEduPrcsOrd() {
return eduPrcsOrd;
@ -1090,5 +1094,16 @@ public class VEPrcsDetailVO extends ComDefaultVO implements Serializable {
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
,prcs_cn
,qustnr_strt_pnttm
,qustnr_tm
</sql>
<!-- 조회용 공통 컬럼 명 -->
@ -121,6 +124,10 @@
,#cnAtchFileId#
,#prcsCn#
,#qustnrStrtPnttm#
,#qustnrTm#
,#oprtnAtchFileId#
)
</insert>
@ -286,6 +293,13 @@
, prcs_cn = #prcsCn#
</isNotEmpty>
<isNotEmpty property="qustnrStrtPnttm">
, qustnr_strt_pnttm = #qustnrStrtPnttm#
</isNotEmpty>
<isNotEmpty property="qustnrTm">
, qustnr_tm = #qustnrTm#
</isNotEmpty>
<isNotEmpty property="oprtnAtchFileId">
, oprtn_atch_file_id = #oprtnAtchFileId#
</isNotEmpty>
@ -807,6 +821,9 @@
, b.prcs_div as prcsDiv
, a.edu_place as eduPlace
, a.qustnr_strt_pnttm AS qustnrStrtPnttm
, a.qustnr_tm AS qustnrTm
,a.dead_line_dt AS deadLineDt
,a.prcs_ord AS prcsOrd
,a.edu_part_cd AS eduPartCd

View File

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

View File

@ -46,6 +46,17 @@
$("#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> --%>
</td>
</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">
<th scope="row" id="thId">교육장소</th>
<td class="addPro_wrap">

View File

@ -54,6 +54,10 @@
$("#file_temp").click();
});
for(var m=0; m<=23; m++){
$("#qustnrTm").append("<option value='" + m + "'>" + m + "시</option>");
}
});
@ -260,6 +264,23 @@
</div> --%>
</td>
</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">
<th scope="row" id="thId">교육장소</th>
<td class="addPro_wrap">

View File

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

View File

@ -46,6 +46,17 @@
$("#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> --%>
</td>
</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">
<th scope="row" id="thId">교육장소</th>
<td class="addPro_wrap">

View File

@ -54,6 +54,10 @@
$("#file_temp").click();
});
for(var m=0; m<=23; m++){
$("#qustnrTm").append("<option value='" + m + "'>" + m + "시</option>");
}
});
@ -260,6 +264,21 @@
</div> --%>
</td>
</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">
<th scope="row" id="thId">교육장소</th>
<td class="addPro_wrap">

View File

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

View File

@ -46,6 +46,17 @@
$("#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> --%>
</td>
</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">
<th scope="row" id="thId">교육장소</th>
<td class="addPro_wrap">

View File

@ -54,6 +54,10 @@
$("#file_temp").click();
});
for(var m=0; m<=23; m++){
$("#qustnrTm").append("<option value='" + m + "'>" + m + "시</option>");
}
});
@ -260,6 +264,23 @@
</div> --%>
</td>
</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">
<th scope="row" id="thId">교육장소</th>
<td class="addPro_wrap">