이지우 - 조사관 배정 시 더블클릭 방지

This commit is contained in:
JIWOO 2025-08-20 18:05:36 +09:00
parent c26b8f8f17
commit 56a93c46d4

View File

@ -109,10 +109,12 @@ $(document).ready(function(){
});
$("#deptConfirm").click(function(){
$(this).prop('disabled', true);
if($("#caseGubun").val() == ""){
alert("조정유형을 선택해 주세요");
$("#caseGubun").focus();
$(this).prop('disabled', false);
return false;
}
@ -125,6 +127,7 @@ $(document).ready(function(){
if($("#presidentAssign").val() == ""){
alert("부서명을 선택 해 주세요.");
$("#presidentAssign").focus();
$(this).prop('disabled', false);
return false;
}
@ -141,10 +144,12 @@ $(document).ready(function(){
});
$("#deptConfirm2").click(function(){
$(this).prop('disabled', true);
if($("#caseGubun").val() == ""){
alert("조정유형을 선택해 주세요");
$("#caseGubun").focus();
$(this).prop('disabled', false);
return false;
}
@ -163,6 +168,7 @@ $(document).ready(function(){
if($("#presidentAssign").val() == ""){
alert("부서명을 선택 해 주세요.");
$("#presidentAssign").focus();
$(this).prop('disabled', false);
return false;
}
@ -179,10 +185,12 @@ $(document).ready(function(){
});
$("#deptConfirm3").click(function(){
$(this).prop('disabled', true);
if($("#examinerAssign").val() == ""){
alert("담당자를 선택 해 주세요.");
$("#examinerAssign").focus();
$(this).prop('disabled', false);
return false;
}
@ -224,10 +232,11 @@ $(document).ready(function(){
});
$("#deptConfirm4").click(function(){
$(this).prop('disabled', true);
if($("#caseGubun").val() == ""){
alert("조정유형을 선택해 주세요");
$("#caseGubun").focus();
$(this).prop('disabled', false);
return false;
}
@ -246,6 +255,7 @@ $(document).ready(function(){
if($("#presidentAssign").val() == ""){
alert("부서명을 선택 해 주세요.");
$("#presidentAssign").focus();
$(this).prop('disabled', false);
return false;
}