<기능개선>

1. PMS NO : 430
2. (주요)작업내용 
(1) 회원상세에서 계산서 신청시 안내창 추가
This commit is contained in:
jity7777 2024-01-30 05:39:55 +00:00
parent fbbde74e13
commit 8c735b32cf
2 changed files with 17 additions and 2 deletions

View File

@ -613,9 +613,14 @@
}
function gotax(payno) {
if (opener.location.href.indexOf("croom/pay") > -1) {
opener.gotaxdetail(payno);
self.close();
}
else {
msg("해당 기능은 교육운영/결제내역에서 처리가능합니다.")
}
}
function viewlect(a, ustatus, lectno, fileno, fileurl, orgname, status,pstatus,rstatus, datas) {
if (ustatus != 99) {

View File

@ -239,6 +239,9 @@
</form>
</div>
<form id="taxform" method="post" action="/croom/taxdetail">
<input type="hidden" id="intval" name="intval" />
</form>
<div id="lectbox2" style="display: none;width:100%;text-align:right;margin:10px 10px;">
<a href="#" onclick="javascript:ee(@(Model.User.userno));" class="btn btn-s-xs btn-info" style="margin-right:10px">교육생으로 입장</a>
@ -766,5 +769,12 @@
return rslt;
}
function gotaxdetail(payno) {
$("#intval").val(payno)
setTimeout(function () {
$("#taxform").submit();
}, 500);
}
</script>
}