스미싱의심 발송취소후 이용정지 NO 일경우 화면 새로고침 추가

This commit is contained in:
itn 2023-09-18 11:54:20 +09:00
parent 16fed6da78
commit c5595640bc
5 changed files with 5 additions and 9 deletions

View File

@ -765,8 +765,8 @@ public class MjonMsgServiceImpl extends EgovAbstractServiceImpl implements MjonM
int resultSts = 0; int resultSts = 0;
try { try {
System.out.println("++++++++++++++++++ updateMsgDelaySendRealTimeData groupId ::: "+mjonResvMsgVO.getMsgGroupId()); System.out.println("++++++++++++++++++ updateMsgDelaySendRealTimeData groupId ::: "+mjonResvMsgVO.getMsgGroupId());
//삭제 문자 건수 MSG_SEQ 번호 받아오기 //삭제 문자 건수 MSG_SEQ 번호 받아오기
List<MjonResvMsgVO> resultMsgSeqList = mjonReservMsgDAO.selectMsgSeqListByGroupId(mjonResvMsgVO); List<MjonResvMsgVO> resultMsgSeqList = mjonReservMsgDAO.selectMsgSeqListByGroupId(mjonResvMsgVO);

View File

@ -3636,14 +3636,12 @@ public class MjonMsgController {
} }
for(String temp : arrMsgGroupId) { for(String temp : arrMsgGroupId) {
mjonResvMsgVO.setMsgGroupId(temp);//취소 문자 그룹 아이디 mjonResvMsgVO.setMsgGroupId(temp);//취소 문자 그룹 아이디
//문자 발송 지연 데이터 즉시 발송처리 //문자 발송 지연 데이터 즉시 발송처리
int count = mjonMsgService.updateMsgDelaySendRealTimeData(mjonResvMsgVO); int count = mjonMsgService.updateMsgDelaySendRealTimeData(mjonResvMsgVO);
resultSts = resultSts + count; resultSts = resultSts + count;
} }
if(resultSts > 0) { if(resultSts > 0) {

View File

@ -482,7 +482,6 @@
</select> </select>
<update id="MjonReservMsgDAO.deleteReservMsgGroupDataAjax" parameterClass="mjonMsgResvVO"> <update id="MjonReservMsgDAO.deleteReservMsgGroupDataAjax" parameterClass="mjonMsgResvVO">
UPDATE MJ_MSG_GROUP_DATA UPDATE MJ_MSG_GROUP_DATA

View File

@ -1614,6 +1614,9 @@ function fn_SpamMberUpdt(
}); });
} }
else {
location.reload();
}
} }
@ -2289,18 +2292,14 @@ function fnMsgDelayCancel(msgGroupId){
alert(msg); alert(msg);
location.reload(); location.reload();
}else if(result == 'dateFail'){ }else if(result == 'dateFail'){
alert(msg); alert(msg);
location.reload(); location.reload();
}else if(result == 'fail'){ }else if(result == 'fail'){
alert(msg); alert(msg);
return false; return false;
}else{ }else{
alert(msg); alert(msg);
location.reload(); location.reload();
} }
}, },
beforeSend: function () { beforeSend: function () {