2024-03-12 14:09 성인 강의 활동확인서 excel 등록 작업
This commit is contained in:
parent
666f0e5096
commit
2a9ca3890a
@ -1156,7 +1156,7 @@ public class CrownixAjaxController {
|
||||
|
||||
}
|
||||
|
||||
p_modelAndView.addObject("page_1_28", "총 "+vEInstrDetailVOList.size()+"회, "+i_sumChasi+"차시 [세부내용 별지 참조]");
|
||||
p_modelAndView.addObject("page_1_28", "총 "+vEInstrDetailVOList.size()+"회, "+i_sumChasi+"차시 [세부내용 별지 참조1]");
|
||||
|
||||
if (vEInstrDetailVOList.size()==0) {
|
||||
JSONObject jsDrtInfo = new JSONObject(); //전체 정보
|
||||
|
||||
@ -85,6 +85,12 @@
|
||||
function fn_egov_downFile(atchFileId, fileSn){//atchFileId -> 파일 Id, fileSn -> 파일 순번
|
||||
window.open("<c:url value='/cmm/fms/FileDown.do?atchFileId="+atchFileId+"&fileSn="+fileSn+"'/>");
|
||||
}
|
||||
|
||||
function fncGoScholExcel(){
|
||||
var detailForm = document.detailForm ;
|
||||
detailForm.action = "<c:url value='/ve/oprtn/instr/tngrVisitEdu/instrInfo/instrAplctActvtExcel.do'/>";
|
||||
detailForm.submit();
|
||||
}
|
||||
</script>
|
||||
|
||||
</head>
|
||||
@ -101,6 +107,7 @@
|
||||
<form:form id="detailForm" name="detailForm" commandName="vEPrcsDetailVO" method="post">
|
||||
<input type="hidden" name="instrDetailActvtHstryOrd" id="instrDetailActvtHstryOrd" value="${info.instrDetailActvtHstryOrd }"/>
|
||||
<input type="hidden" name="userId" id="userId" value="<c:out value='${info.userId}'/>" />
|
||||
<input type="hidden" name="siteNm" id="siteNm" value="adult" /> <!-- excel 등록시 복귀 페이지 정보 -->
|
||||
<!-- cont -->
|
||||
<div class="cont_wrap">
|
||||
<div class="box">
|
||||
@ -220,6 +227,7 @@
|
||||
<div class="btn_left">
|
||||
<button type="button" class="btn_type08" onclick="fn_egov_downFile('<c:out value="${info.aplctAtchFileId}" />', '0')">신청서</button>
|
||||
<button type="button" class="btn_type08" onclick="fncCmpltCrtfc('<c:out value="${info.instrDetailActvtHstryOrd }" />'); return false;">미리보기</button>
|
||||
<button type="button" class="btn_type01" onclick="fncGoScholExcel(); return false;">강사활동Excel등록</button>
|
||||
</div>
|
||||
<div class="btn_center">
|
||||
</div>
|
||||
@ -273,7 +281,8 @@
|
||||
var viewer = new m2soft.crownix.Viewer('http://119.193.215.98:8093/ReportingServer/service');
|
||||
viewer.hideToolbarItem(["save"]);
|
||||
viewer.showToolbarItem(["print_pdf"]);
|
||||
viewer.openFile('instr_activity_20231108.mrd', '/rf [http://119.193.215.98:9989/offedu/ve/aplct/adultVisitEdu/eduAplct/instrActivityAjax.do?p_userId='+v_userId+'&p_instrDetailActvtHstryOrd='+p_instrDetailActvtHstryOrd+']');
|
||||
//viewer.openFile('instr_activity_20231108.mrd', '/rf [http://119.193.215.98:9989/offedu/ve/aplct/adultVisitEdu/eduAplct/instrActivityAjax.do?p_userId='+v_userId+'&p_instrDetailActvtHstryOrd='+p_instrDetailActvtHstryOrd+']');
|
||||
viewer.openFile('instr_activity_20231108.mrd', '/rf [http://192.168.0.32:3080/offedu/ve/aplct/adultVisitEdu/eduAplct/instrActivityAjax.do?p_userId='+v_userId+'&p_instrDetailActvtHstryOrd='+p_instrDetailActvtHstryOrd+']');
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -107,6 +107,7 @@
|
||||
<form:form id="detailForm" name="detailForm" commandName="vEPrcsDetailVO" method="post">
|
||||
<input type="hidden" name="instrDetailActvtHstryOrd" id="instrDetailActvtHstryOrd" value="${info.instrDetailActvtHstryOrd }"/>
|
||||
<input type="hidden" name="userId" id="userId" value="<c:out value='${info.userId}'/>" />
|
||||
<input type="hidden" name="siteNm" id="siteNm" value="tngr" /> <!-- excel 등록시 복귀 페이지 정보 -->
|
||||
<!-- cont -->
|
||||
<div class="cont_wrap">
|
||||
<div class="box">
|
||||
|
||||
@ -135,10 +135,18 @@ $( document ).ready(function(){
|
||||
}
|
||||
|
||||
|
||||
function fncGoList(){
|
||||
function fncGoList(){
|
||||
|
||||
var createForm = document.createForm;
|
||||
createForm.action = "<c:url value='/kccadr/oprtn/tngrVisitEdu/instrActvtHstryMngDetail.do'/>";
|
||||
|
||||
if ($("#siteNm").val()=="adult"){
|
||||
createForm.action = "<c:url value='/kccadr/oprtn/adultVisitEdu/instrActvtHstryMngDetail.do'/>";
|
||||
}
|
||||
|
||||
|
||||
createForm.submit();
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -311,6 +319,7 @@ $( document ).ready(function(){
|
||||
<form:form id="createForm" name="createForm" commandName="vEInstrDetailVO" method="post" >
|
||||
<input type="hidden" name="instrDetailActvtHstryOrd" id="instrDetailActvtHstryOrd" value="<c:out value='${vEInstrDetailVO.instrDetailActvtHstryOrd}'/>"/> <!-- 이력순번 -->
|
||||
<input type="hidden" name="userId" id="userId" value="<c:out value='${vEInstrDetailVO.userId}'/>"/> <!-- 사용자 아이디 -->
|
||||
<input type="hidden" name="siteNm" id="siteNm" value="<c:out value='${vEInstrDetailVO.siteNm}'/>"/> <!-- 사용자 아이디 -->
|
||||
|
||||
<!-- cont -->
|
||||
<div class="cont_wrap">
|
||||
@ -372,7 +381,7 @@ $( document ).ready(function(){
|
||||
</div>
|
||||
<div class="btn_right">
|
||||
<button type="button" class="btn_type02" onclick="fn_insert(); return false;">등록</button>
|
||||
<button type="button" class="btn_type03" onclick="fncGoList(); return false;">취소</button>
|
||||
<button type="button" class="btn_type03" onclick="fncGoList(); return false;">목록</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user