|
|
|
@ -563,8 +563,11 @@ $(document).ready(function(){
|
|
|
|
|
|
|
|
|
|
$P.crdnControl.onSave = (resp) => {
|
|
|
|
|
if (resp.saved) {
|
|
|
|
|
|
|
|
|
|
dialog.alert("저장됐습니다.");
|
|
|
|
|
|
|
|
|
|
dialog.alert({
|
|
|
|
|
content : "저장됐습니다.",
|
|
|
|
|
init : function() { focusClose(); }
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
if($("#levyExcldialog--${pageName}").length > 0){
|
|
|
|
|
dialog.close("levyExcldialog--${pageName}");
|
|
|
|
@ -684,6 +687,7 @@ $(document).ready(function(){
|
|
|
|
|
if(vhrno.value == ""){
|
|
|
|
|
dialog.alert({
|
|
|
|
|
content:"수용 처리를 하기 위해선 차량번호가 입력되어야 합니다.",
|
|
|
|
|
init : function() { focusClose(); },
|
|
|
|
|
onClose:function(){vhrno.focus();}
|
|
|
|
|
});
|
|
|
|
|
return;
|
|
|
|
@ -692,6 +696,7 @@ $(document).ready(function(){
|
|
|
|
|
if(rtpyrNm.value == ""){
|
|
|
|
|
dialog.alert({
|
|
|
|
|
content:"수용 처리를 하기 위해선 소유주정보가 입력되어야 합니다.",
|
|
|
|
|
init : function() { focusClose(); },
|
|
|
|
|
onClose:function(){rtpyrNm.focus();}
|
|
|
|
|
});
|
|
|
|
|
return;
|
|
|
|
@ -718,7 +723,12 @@ $(document).ready(function(){
|
|
|
|
|
if(resp.saved){
|
|
|
|
|
var message = "민원회수 요청이 등록되었습니다.\n"
|
|
|
|
|
+"30~60분 사이에 서버에서 민원시스템으로 전송이 진행되니 이후에 민원시스템에서 확인하시기 바랍니다.";
|
|
|
|
|
dialog.alert(message);
|
|
|
|
|
|
|
|
|
|
dialog.alert({
|
|
|
|
|
content : message,
|
|
|
|
|
init : function() { focusClose(); }
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var crdnId = $("#crdnId--${pageName}").val();
|
|
|
|
|
|
|
|
|
@ -790,6 +800,7 @@ $(document).ready(function(){
|
|
|
|
|
if(rtpyrNm.value == ""){
|
|
|
|
|
dialog.alert({
|
|
|
|
|
content:"계고 처리를 하기 위해선 소유주정보가 입력되어야 합니다.",
|
|
|
|
|
init : function() { focusClose(); },
|
|
|
|
|
onClose:function(){rtpyrNm.focus();}
|
|
|
|
|
});
|
|
|
|
|
return;
|
|
|
|
@ -897,7 +908,11 @@ $(document).ready(function(){
|
|
|
|
|
data : { crdnId : crdnId },
|
|
|
|
|
success : resp => {
|
|
|
|
|
if (resp.saved) {
|
|
|
|
|
dialog.alert("복사 자료가 생성되었습니다.");
|
|
|
|
|
dialog.alert({
|
|
|
|
|
content : "복사 자료가 생성되었습니다.",
|
|
|
|
|
init : function() { focusClose(); }
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$("#refreshEnd--${pageName}").attr("data-cursor-key", crdnId);
|
|
|
|
|
$P.provided.refreshList();
|
|
|
|
|
}
|
|
|
|
@ -1132,6 +1147,7 @@ $(document).ready(function(){
|
|
|
|
|
if(crdnYmd == ""){
|
|
|
|
|
dialog.alert({
|
|
|
|
|
content:"단속일자를 입력하세요.",
|
|
|
|
|
init : function() { focusClose(); },
|
|
|
|
|
onClose:function(){ $("#crdnYmd--${pageName}").focus(); }
|
|
|
|
|
});
|
|
|
|
|
return;
|
|
|
|
@ -1139,6 +1155,7 @@ $(document).ready(function(){
|
|
|
|
|
if(vhrno == ""){
|
|
|
|
|
dialog.alert({
|
|
|
|
|
content:"차량번호를 입력하세요.",
|
|
|
|
|
init : function() { focusClose(); },
|
|
|
|
|
onClose:function(){ $(this).focus(); }
|
|
|
|
|
});
|
|
|
|
|
return;
|
|
|
|
@ -1154,7 +1171,11 @@ $(document).ready(function(){
|
|
|
|
|
success:resp => {
|
|
|
|
|
|
|
|
|
|
if(!resp.found){
|
|
|
|
|
dialog.alert("차량 정보가 없습니다.");
|
|
|
|
|
dialog.alert({
|
|
|
|
|
content : "차량 정보가 없습니다.",
|
|
|
|
|
init : function() { focusClose(); }
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$("#rtpyrId--${pageName}").val("");
|
|
|
|
|
$("#rtpyrNm--${pageName}").val("");
|
|
|
|
|
$("#rtpyrSeCd--${pageName}").val("");
|
|
|
|
|