2025-09-30 14:29 설문오픈일시 추가
This commit is contained in:
parent
963e0d60ac
commit
ce74596290
@ -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;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -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>
|
||||||
@ -286,6 +293,13 @@
|
|||||||
, 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#
|
||||||
</isNotEmpty>
|
</isNotEmpty>
|
||||||
@ -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
|
||||||
|
|||||||
@ -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>
|
||||||
|
|||||||
@ -46,6 +46,17 @@
|
|||||||
$("#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">
|
||||||
|
|||||||
@ -54,6 +54,10 @@
|
|||||||
$("#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">
|
||||||
|
|||||||
@ -499,6 +499,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>
|
||||||
|
|||||||
@ -46,6 +46,17 @@
|
|||||||
$("#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">
|
||||||
|
|||||||
@ -54,6 +54,10 @@
|
|||||||
$("#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">
|
||||||
|
|||||||
@ -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>
|
||||||
|
|||||||
@ -46,6 +46,17 @@
|
|||||||
$("#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">
|
||||||
|
|||||||
@ -54,6 +54,10 @@
|
|||||||
$("#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">
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user