<기능개선>
1. PMS NO : 430 2. (주요)작업내용 (1) 회원상세에서 계산서 신청시 안내창 추가
This commit is contained in:
parent
fbbde74e13
commit
8c735b32cf
|
|
@ -613,9 +613,14 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
function gotax(payno) {
|
function gotax(payno) {
|
||||||
|
if (opener.location.href.indexOf("croom/pay") > -1) {
|
||||||
opener.gotaxdetail(payno);
|
opener.gotaxdetail(payno);
|
||||||
self.close();
|
self.close();
|
||||||
}
|
}
|
||||||
|
else {
|
||||||
|
msg("해당 기능은 교육운영/결제내역에서 처리가능합니다.")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
function viewlect(a, ustatus, lectno, fileno, fileurl, orgname, status,pstatus,rstatus, datas) {
|
function viewlect(a, ustatus, lectno, fileno, fileurl, orgname, status,pstatus,rstatus, datas) {
|
||||||
if (ustatus != 99) {
|
if (ustatus != 99) {
|
||||||
|
|
|
||||||
|
|
@ -239,6 +239,9 @@
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</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;">
|
<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>
|
<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;
|
return rslt;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function gotaxdetail(payno) {
|
||||||
|
$("#intval").val(payno)
|
||||||
|
setTimeout(function () {
|
||||||
|
$("#taxform").submit();
|
||||||
|
}, 500);
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue