diff --git a/src/main/webapp/WEB-INF/jsp/oprtn/adultVisitEdu/eduAplctMngDetail.jsp b/src/main/webapp/WEB-INF/jsp/oprtn/adultVisitEdu/eduAplctMngDetail.jsp
index 09393783..96d336b5 100644
--- a/src/main/webapp/WEB-INF/jsp/oprtn/adultVisitEdu/eduAplctMngDetail.jsp
+++ b/src/main/webapp/WEB-INF/jsp/oprtn/adultVisitEdu/eduAplctMngDetail.jsp
@@ -32,6 +32,7 @@
교육신청 상세
+
@@ -752,6 +771,10 @@
0/1000 byte
+
+
+
+
diff --git a/src/main/webapp/WEB-INF/jsp/oprtn/adultVisitEdu/eduAsgnmCnfrmMngDetail.jsp b/src/main/webapp/WEB-INF/jsp/oprtn/adultVisitEdu/eduAsgnmCnfrmMngDetail.jsp
index 2bf21dc6..1aa38c34 100644
--- a/src/main/webapp/WEB-INF/jsp/oprtn/adultVisitEdu/eduAsgnmCnfrmMngDetail.jsp
+++ b/src/main/webapp/WEB-INF/jsp/oprtn/adultVisitEdu/eduAsgnmCnfrmMngDetail.jsp
@@ -32,6 +32,7 @@
교육확정 상세
+
@@ -605,6 +625,10 @@
0/1000 byte
+
+
+
+
diff --git a/src/main/webapp/WEB-INF/jsp/oprtn/adultVisitEdu/eduInstrFeeMngList.jsp b/src/main/webapp/WEB-INF/jsp/oprtn/adultVisitEdu/eduInstrFeeMngList.jsp
index 95b32fca..a43cda2a 100644
--- a/src/main/webapp/WEB-INF/jsp/oprtn/adultVisitEdu/eduInstrFeeMngList.jsp
+++ b/src/main/webapp/WEB-INF/jsp/oprtn/adultVisitEdu/eduInstrFeeMngList.jsp
@@ -192,7 +192,7 @@
$('input:checkbox[name="chk"]:checked').each(function() {
sendSms(
$(this).data('instrphone'),
- "교육운영 관리 시스템입니다." + $(this).data('instrnm')+"님의 " + $(this).data('date') + " 교육 강사료는 " + $(this).data('instrfeesum') +"원입니다.",
+ $(this).data('instrnm')+"님의 " + $(this).data('date') + " 교육 강사료는 " + $(this).data('instrfeesum') +"원입니다.",
$(this).val().split('@')[0],
$(this).data('userid'),
"S",
@@ -202,6 +202,34 @@
alert("발송되었습니다.");
}
+
+ function testSendSms(){
+ var chkLen = $(listForm).find("input[name=chk]:checked").length;
+ var testPhone = $("#testPhone").val();
+
+ if(chkLen == 0){
+ alert("선택된 항목이 없습니다.");
+ return;
+ }
+
+ if(testPhone == ''){
+ alert("테스트 번호를 입력해주세요.")
+ return;
+ }
+
+ //테스트 발송 시 체크된 항목 중 첫번째 내용만 전송
+ $('input:checkbox[name="chk"]:checked').first().each(function() {
+ sendSms(
+ testPhone,
+ $(this).data('instrnm')+"님의 " + $(this).data('date') + " 교육 강사료는 " + $(this).data('instrfeesum') +"원입니다.",
+ "testSms",
+ "testSms",
+ "S",
+ "Y"
+ );
+ });
+
+ }
신청관리
@@ -400,6 +428,8 @@
+
+
diff --git a/src/main/webapp/WEB-INF/jsp/oprtn/adultVisitEdu/eduRsltMngDetail.jsp b/src/main/webapp/WEB-INF/jsp/oprtn/adultVisitEdu/eduRsltMngDetail.jsp
index 5e6920ed..f9edc754 100644
--- a/src/main/webapp/WEB-INF/jsp/oprtn/adultVisitEdu/eduRsltMngDetail.jsp
+++ b/src/main/webapp/WEB-INF/jsp/oprtn/adultVisitEdu/eduRsltMngDetail.jsp
@@ -29,6 +29,7 @@
교육과정관리
+
@@ -557,6 +577,10 @@
0/1000 byte
+
+
+
+
diff --git a/src/main/webapp/WEB-INF/jsp/oprtn/adultVisitEdu/eduRsltMngList.jsp b/src/main/webapp/WEB-INF/jsp/oprtn/adultVisitEdu/eduRsltMngList.jsp
index 7d7b86d5..d0497019 100644
--- a/src/main/webapp/WEB-INF/jsp/oprtn/adultVisitEdu/eduRsltMngList.jsp
+++ b/src/main/webapp/WEB-INF/jsp/oprtn/adultVisitEdu/eduRsltMngList.jsp
@@ -213,7 +213,7 @@
$('input:checkbox[name="chk"]:checked').each(function() {
sendSms(
$(this).data('phone'),
- "교육운영 관리 시스템입니다.\n" + $(this).data('chrgnm')+"님의 " + $(this).data('date') + " 교육 강의만족도 제출 바랍니다.",
+ $(this).data('chrgnm')+"님의 " + $(this).data('date') + " 교육 강의만족도 제출 바랍니다.",
$(this).val().split('@')[0],
$(this).data('userid'),
"S",
@@ -221,7 +221,7 @@
);
sendEmail(
$(this).data('email'),
- "교육운영 관리 시스템입니다. \n" + $(this).data('chrgnm')+"님의 " + $(this).data('date') + " 교육 강의만족도 제출 바랍니다.",
+ $(this).data('chrgnm')+"님의 " + $(this).data('date') + " 교육 강의만족도 제출 바랍니다.",
$(this).val().split('@')[0],
$(this).data('userid'),
"S",
@@ -251,6 +251,32 @@
alert("발송되었습니다.");
}
+
+ function testSendEmail(){
+ var chkLen = $(listForm).find("input[name=chk]:checked").length;
+ var mailAdress = $("#testSndEMail").val();
+ if(chkLen == 0){
+ alert("선택된 항목이 없습니다.");
+ return;
+ }
+
+ if(mailAdress == ''){
+ alert("테스트 발송 이메일 주소를 입력해주세요.");
+ return false;
+ }
+
+ $('input:checkbox[name="chk"]:checked').first().each(function() {
+ sendEmail(
+ mailAdress,
+ $(this).data('chrgnm')+"님의 " + $(this).data('date') + " 교육 강의만족도 제출 바랍니다.",
+ $(this).val().split('@')[0],
+ $(this).data('userid'),
+ "S",
+ "Y"
+ );
+ });
+
+ }
//알림 등록용 함수-문자,메일 중 요청한 곳에만 추가한다.
function fncNotiReg(
@@ -519,6 +545,8 @@
+
+
<%--
<%-- selectedValue="" --%>
<%-- /> --%>
diff --git a/src/main/webapp/WEB-INF/jsp/oprtn/adultVisitEdu/instrMngDetail.jsp b/src/main/webapp/WEB-INF/jsp/oprtn/adultVisitEdu/instrMngDetail.jsp
index 7655127b..a6b88223 100644
--- a/src/main/webapp/WEB-INF/jsp/oprtn/adultVisitEdu/instrMngDetail.jsp
+++ b/src/main/webapp/WEB-INF/jsp/oprtn/adultVisitEdu/instrMngDetail.jsp
@@ -674,7 +674,7 @@ function getYears(getYear){
-
+
@@ -691,7 +691,7 @@ function getYears(getYear){
+ type="button" class="btnType01 btn_type08" data-tooltip="sub26_pop01" onclick="fncRsdnePopup();return false;">선택
|
@@ -981,7 +981,7 @@ function getYears(getYear){
- |
+ |
diff --git a/src/main/webapp/WEB-INF/jsp/oprtn/cpyrgExprnClsrm/oprtnAplctMngReg.jsp b/src/main/webapp/WEB-INF/jsp/oprtn/cpyrgExprnClsrm/oprtnAplctMngReg.jsp
index 8371ad51..8b40d3cb 100644
--- a/src/main/webapp/WEB-INF/jsp/oprtn/cpyrgExprnClsrm/oprtnAplctMngReg.jsp
+++ b/src/main/webapp/WEB-INF/jsp/oprtn/cpyrgExprnClsrm/oprtnAplctMngReg.jsp
@@ -686,11 +686,11 @@
-
+
-
+
-
+
diff --git a/src/main/webapp/WEB-INF/jsp/oprtn/fndthEnhanceTrn/fndthEduPrcsAplctCfnMngDetail.jsp b/src/main/webapp/WEB-INF/jsp/oprtn/fndthEnhanceTrn/fndthEduPrcsAplctCfnMngDetail.jsp
index 642db7e5..a560fca0 100644
--- a/src/main/webapp/WEB-INF/jsp/oprtn/fndthEnhanceTrn/fndthEduPrcsAplctCfnMngDetail.jsp
+++ b/src/main/webapp/WEB-INF/jsp/oprtn/fndthEnhanceTrn/fndthEduPrcsAplctCfnMngDetail.jsp
@@ -292,22 +292,21 @@
}
function testSnd(){
- var cn = $("#testSndEMail").val();
- if(cn == ''){
+ var mailAdress = $("#testSndEMail").val();
+ var cn = $("#smsEmail").val();
+ if(mailAdress == ''){
alert("테스트 발송 이메일 주소를 입력해주세요.");
return false;
}
-
sendEmail(
- cn,
+ mailAdress,
$("#smsEmail").val(),
- $(this).val(),
- $(this).data('userid'),
+ "testSend",
+ "testSend",
"A", // 기반강화
- "N"
+ "Y"
);
- alert("발송되었습니다.");
}
@@ -850,9 +849,9 @@
0/1000 byte
-
-
-
+
+
+
diff --git a/src/main/webapp/WEB-INF/jsp/oprtn/fndthEnhanceTrn/fndthEduPrcsMngReg.jsp b/src/main/webapp/WEB-INF/jsp/oprtn/fndthEnhanceTrn/fndthEduPrcsMngReg.jsp
index efd50b6a..26364d64 100644
--- a/src/main/webapp/WEB-INF/jsp/oprtn/fndthEnhanceTrn/fndthEduPrcsMngReg.jsp
+++ b/src/main/webapp/WEB-INF/jsp/oprtn/fndthEnhanceTrn/fndthEduPrcsMngReg.jsp
@@ -127,26 +127,22 @@
-
-
-
-

-
-
-
-
-
-
-
+
+

+
-
+
+
+
+
+
<%--
--%>
| 과정명 |
-
+ |
|
diff --git a/src/main/webapp/WEB-INF/jsp/oprtn/tngrVisitEdu/popup/instrHstryMngPopup.jsp b/src/main/webapp/WEB-INF/jsp/oprtn/tngrVisitEdu/popup/instrHstryMngPopup.jsp
index 97a1e25b..159f5766 100644
--- a/src/main/webapp/WEB-INF/jsp/oprtn/tngrVisitEdu/popup/instrHstryMngPopup.jsp
+++ b/src/main/webapp/WEB-INF/jsp/oprtn/tngrVisitEdu/popup/instrHstryMngPopup.jsp
@@ -322,8 +322,8 @@