|
|
|
@ -915,12 +915,18 @@ $(document).ready(function(){
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let dialogName = "levyExclDialog";
|
|
|
|
|
let dialogId = dialogName+"-"+uuid();
|
|
|
|
|
|
|
|
|
|
dialog.open({
|
|
|
|
|
id : "levyExclDialog--${pageName}",
|
|
|
|
|
id : dialogId,
|
|
|
|
|
title : "부과제외 정보",
|
|
|
|
|
content : resp,
|
|
|
|
|
size : "md",
|
|
|
|
|
init : () => {},
|
|
|
|
|
init : () => {
|
|
|
|
|
$("#"+dialogId).attr("name", dialogName);
|
|
|
|
|
$("#"+dialogId).attr("data-ref-doctx","${pageName}");
|
|
|
|
|
},
|
|
|
|
|
onClose : () => {}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
@ -961,12 +967,18 @@ $(document).ready(function(){
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let dialogName = "overTimeProcessDialog";
|
|
|
|
|
let dialogId = dialogName+"-"+uuid();
|
|
|
|
|
|
|
|
|
|
dialog.open({
|
|
|
|
|
id : "overTimeProcessDialog--${pageName}",
|
|
|
|
|
id : dialogId,
|
|
|
|
|
title : "2시간 초과 처리",
|
|
|
|
|
content : resp,
|
|
|
|
|
size : "lg",
|
|
|
|
|
init : () => {},
|
|
|
|
|
init : () => {
|
|
|
|
|
$("#"+dialogId).attr("name", dialogName);
|
|
|
|
|
$("#"+dialogId).attr("data-ref-doctx","${pageName}");
|
|
|
|
|
},
|
|
|
|
|
onClose : () => {}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
@ -974,8 +986,8 @@ $(document).ready(function(){
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$P.popupSavedCallback = (saved) => {
|
|
|
|
|
if($("#levyExclDialog--${pageName}").length > 0){
|
|
|
|
|
dialog.close("levyExclDialog--${pageName}");
|
|
|
|
|
if($P.refDlgId("levyExclDialog") != ""){
|
|
|
|
|
dialog.close($P.refDlgId("levyExclDialog"));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(saved){
|
|
|
|
@ -1005,7 +1017,9 @@ $(document).ready(function(){
|
|
|
|
|
, title: "사용자 검색"
|
|
|
|
|
, content: resp
|
|
|
|
|
, size: "lg"
|
|
|
|
|
, init: () => { setDialogZindex(); }
|
|
|
|
|
, init: () => {
|
|
|
|
|
setDialogZindex();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|