Merge branch 'hylee' into advc
This commit is contained in:
commit
a8409117cf
@ -470,11 +470,11 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
var dataToSend = {
|
// var dataToSend = {
|
||||||
"sspnIdtmtTrgtOrdList" : sspnIdtmtTrgtOrdList,
|
// "sspnIdtmtTrgtOrdList" : sspnIdtmtTrgtOrdList,
|
||||||
"eduStateCd" : p_eduStateCd,
|
// "eduStateCd" : p_eduStateCd,
|
||||||
"reqStateCd" : p_reqStateCd
|
// "reqStateCd" : p_reqStateCd
|
||||||
};
|
// };
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -485,12 +485,26 @@
|
|||||||
this.fn_cmmAjax(dataToSend);
|
this.fn_cmmAjax(dataToSend);
|
||||||
*/
|
*/
|
||||||
|
|
||||||
document.listForm.action = "<c:url value='/kccadr/oprtn/cndtnSspnIdtmt/popup/cnclStatusPopup.do'/>";
|
console.log('sspnIdtmtTrgtOrdList : ', sspnIdtmtTrgtOrdList);
|
||||||
window.open("", "_CancelStatusPopup", "scrollbars = no, top=100px, left=100px, height=750px, width=750px");
|
var form = document.popForm;
|
||||||
document.listForm.target = "_CancelStatusPopup";
|
form.sspnIdtmtTrgtOrdList.value = sspnIdtmtTrgtOrdList;
|
||||||
document.listForm.submit();
|
form.eduStateCd.value = p_eduStateCd;
|
||||||
|
form.reqStateCd.value = p_reqStateCd;
|
||||||
|
|
||||||
|
|
||||||
|
document.popForm.action = "<c:url value='/kccadr/oprtn/cndtnSspnIdtmt/popup/cnclStatusPopup.do'/>";
|
||||||
|
var popup = window.open("", "_CancelStatusPopup", "scrollbars = no, top=100px, left=100px, height=750px, width=750px");
|
||||||
|
document.popForm.target = "_CancelStatusPopup";
|
||||||
|
document.popForm.submit();
|
||||||
|
|
||||||
|
|
||||||
|
var timer = setInterval(function() {
|
||||||
|
if(popup.closed) {
|
||||||
|
clearInterval(timer);
|
||||||
|
window.location.reload();
|
||||||
|
}
|
||||||
|
}, 1000);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -605,6 +619,9 @@
|
|||||||
</form>
|
</form>
|
||||||
<form id="popForm" name="popForm" method="post">
|
<form id="popForm" name="popForm" method="post">
|
||||||
<input type="hidden" name="sspnIdtmtTrgtOrd" value=""/>
|
<input type="hidden" name="sspnIdtmtTrgtOrd" value=""/>
|
||||||
|
<input type="hidden" id="sspnIdtmtTrgtOrdList" name="sspnIdtmtTrgtOrdList" value="" />
|
||||||
|
<input type="hidden" id="eduStateCd" name="eduStateCd" value="" />
|
||||||
|
<input type="hidden" id="reqStateCd" name="reqStateCd" value="" />
|
||||||
<input type="hidden" name="targetId" value=""/>
|
<input type="hidden" name="targetId" value=""/>
|
||||||
<input type="hidden" name="type" value=""/>
|
<input type="hidden" name="type" value=""/>
|
||||||
<input type="hidden" name="phone" value=""/>
|
<input type="hidden" name="phone" value=""/>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user