친구톡 발송결과 살세 > 재전송 삭제
This commit is contained in:
parent
b3c25e021e
commit
51cf1fe0d9
@ -394,21 +394,19 @@ function fnReservCancel(msgGroupId){
|
||||
}
|
||||
|
||||
/**
|
||||
* @알림톡 재전송
|
||||
* @재전송
|
||||
*/
|
||||
function fnMjMsgReSendAll() {
|
||||
|
||||
var msgType = $('#msgType').val();
|
||||
var form = document.reSendAllForm;
|
||||
|
||||
if (!confirm("알림톡 발송 화면으로 이동합니다.")) {
|
||||
return;
|
||||
}
|
||||
|
||||
// msgKind에 따른 action 설정
|
||||
form.action = "/web/mjon/alimtalk/kakaoAlimtalkMsgDataView.do";
|
||||
|
||||
if (confirm((msgType == '8' ? '알림톡' : '친구톡') + " 발송 화면으로 이동합니다.")) {
|
||||
form.action = msgType == '8'
|
||||
? '/web/mjon/alimtalk/kakaoAlimtalkMsgDataView.do'
|
||||
: '/web/mjon/kakao/friendstalk/kakaoFriendsTalkMsgDataView.do';
|
||||
form.submit();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
function fn_rowBtnSH(tabText){
|
||||
@ -649,7 +647,11 @@ function previewPhone(){
|
||||
<div class="res_info_in">
|
||||
<div class="res_info_top clearfix">
|
||||
<p>발송정보</p>
|
||||
<p><button type="button" class="btnType btnType3" onclick="fnMjMsgReSendAll();">재전송</button></p>
|
||||
<p>
|
||||
<c:if test="${result.msgType eq '8'}">
|
||||
<button type="button" class="btnType btnType3" onclick="fnMjMsgReSendAll();">재전송</button>
|
||||
</c:if>
|
||||
</p>
|
||||
</div>
|
||||
<div class="res_info_btm">
|
||||
<dl>
|
||||
@ -667,6 +669,7 @@ function previewPhone(){
|
||||
<dd>
|
||||
<c:if test="${result.msgType eq '8'}">알림톡</c:if>
|
||||
<c:if test="${result.msgType eq '9'}">친구톡</c:if>
|
||||
<input type="hidden" id="msgType" value="${result.msgType }"/>
|
||||
</dd>
|
||||
</dl>
|
||||
<dl>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user