|
|
|
@ -13,13 +13,13 @@
|
|
|
|
|
<label class="w-px-120 bg-label-danger pe-2 col-form-label text-sm-center">감경 정보</label>
|
|
|
|
|
<!-- 버튼 우측 정렬 -->
|
|
|
|
|
<span class="container-window-btn-right">
|
|
|
|
|
<button type="button" class="btn btn-primary" id="btnCreate--${pageName}${pageDataName1}" title="감경 등록" onclick="fnCreate${pageName}${pageDataName1}();">
|
|
|
|
|
<button type="button" class="btn btn-primary" id="btnCreateRduct--${pageName}" title="감경 등록" onclick="fnCreateRduct${pageName}();">
|
|
|
|
|
감경 등록
|
|
|
|
|
</button>
|
|
|
|
|
<button type="button" class="btn btn-primary" id="btnUpdate--${pageName}${pageDataName1}" title="감경 수정" onclick="fnUpdate${pageName}${pageDataName1}();">
|
|
|
|
|
<button type="button" class="btn btn-primary" id="btnUpdateRduct--${pageName}" title="감경 수정" onclick="fnUpdateRduct${pageName}();">
|
|
|
|
|
감경 수정
|
|
|
|
|
</button>
|
|
|
|
|
<button type="button" class="btn btn-primary" id="btnRemove--${pageName}${pageDataName1}" title="감경 삭제" onclick="fnRemove${pageName}${pageDataName1}();">
|
|
|
|
|
<button type="button" class="btn btn-primary" id="btnRemoveRduct--${pageName}" title="감경 삭제" onclick="fnRemoveRduct${pageName}();">
|
|
|
|
|
감경 삭제
|
|
|
|
|
</button>
|
|
|
|
|
</span>
|
|
|
|
@ -77,13 +77,16 @@
|
|
|
|
|
<label class="w-px-120 bg-label-danger pe-2 col-form-label text-sm-center">부과제외 정보</label>
|
|
|
|
|
<!-- 버튼 우측 정렬 -->
|
|
|
|
|
<span class="container-window-btn-right">
|
|
|
|
|
<button type="button" class="btn btn-primary" id="btnCreate--${pageName}${pageDataName2}" title="부과제외 등록" onclick="fnCreate${pageName}${pageDataName2}();">
|
|
|
|
|
<button type="button" class="btn btn-primary" id="btnCreateWrng--${pageName}" title="계고 등록" onclick="fnCreateWrng${pageName}();">
|
|
|
|
|
계고 등록
|
|
|
|
|
</button>
|
|
|
|
|
<button type="button" class="btn btn-primary" id="btnCreateLevyExcl--${pageName}" title="부과제외 등록" onclick="fnCreateLevyExcl${pageName}();">
|
|
|
|
|
부과제외 등록
|
|
|
|
|
</button>
|
|
|
|
|
<button type="button" class="btn btn-primary" id="btnUpdate--${pageName}${pageDataName2}" title="부과제외 수정" onclick="fnUpdate${pageName}${pageDataName2}();">
|
|
|
|
|
<button type="button" class="btn btn-primary" id="btnUpdateLevyExcl--${pageName}" title="부과제외 수정" onclick="fnUpdateLevyExcl${pageName}();">
|
|
|
|
|
부과제외 수정
|
|
|
|
|
</button>
|
|
|
|
|
<button type="button" class="btn btn-primary" id="btnRemove--${pageName}${pageDataName2}" title="부과제외 삭제" onclick="fnRemove${pageName}${pageDataName2}();">
|
|
|
|
|
<button type="button" class="btn btn-primary" id="btnRemoveLevyExcl--${pageName}" title="부과제외 삭제" onclick="fnRemoveLevyExcl${pageName}();">
|
|
|
|
|
부과제외 삭제
|
|
|
|
|
</button>
|
|
|
|
|
</span>
|
|
|
|
@ -405,7 +408,6 @@
|
|
|
|
|
if ((typeof resp) != "string") {
|
|
|
|
|
if (resp.retMessage != "") {
|
|
|
|
|
dialog.alert(resp.retMessage);
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -415,7 +417,6 @@
|
|
|
|
|
, title : dialogTitle
|
|
|
|
|
, content : resp
|
|
|
|
|
, size : "lg"
|
|
|
|
|
, init : () => { }
|
|
|
|
|
, onClose : () => { refreshDataInfo${pageName}(); } // callback 자료 재조회
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
@ -551,39 +552,54 @@
|
|
|
|
|
|
|
|
|
|
// 화면 초기값 설정
|
|
|
|
|
setForm${pageName} = () => {
|
|
|
|
|
|
|
|
|
|
// 화면 호출(viewPurpose)이 readonly 라면 버튼 비활성화
|
|
|
|
|
if (${pageNameMain}ViewPurpose == "readonly") {
|
|
|
|
|
$("#btnCreateRduct--${pageName}").prop("disabled", true);
|
|
|
|
|
$("#btnUpdateRduct--${pageName}").prop("disabled", true);
|
|
|
|
|
$("#btnRemoveRduct--${pageName}").prop("disabled", true);
|
|
|
|
|
$("#btnCreateLevyExcl--${pageName}").prop("disabled", true);
|
|
|
|
|
$("#btnCreateWrng--${pageName}").prop("disabled", true);
|
|
|
|
|
$("#btnUpdateLevyExcl--${pageName}").prop("disabled", true);
|
|
|
|
|
$("#btnRemoveLevyExcl--${pageName}").prop("disabled", true);
|
|
|
|
|
} else {
|
|
|
|
|
$("#btnCreateRduct--${pageName}").prop("disabled", false);
|
|
|
|
|
$("#btnUpdateRduct--${pageName}").prop("disabled", false);
|
|
|
|
|
$("#btnRemoveRduct--${pageName}").prop("disabled", false);
|
|
|
|
|
$("#btnCreateLevyExcl--${pageName}").prop("disabled", false);
|
|
|
|
|
$("#btnCreateWrng--${pageName}").prop("disabled", false);
|
|
|
|
|
$("#btnUpdateLevyExcl--${pageName}").prop("disabled", false);
|
|
|
|
|
$("#btnRemoveLevyExcl--${pageName}").prop("disabled", false);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
|
* 버튼 clickEvent
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
// 감경 등록
|
|
|
|
|
fnCreate${pageName}${pageDataName1} = () => {
|
|
|
|
|
fnCreateRduct${pageName} = () => {
|
|
|
|
|
let crdnId = $("#crdnId--${pageNameMain}").val();
|
|
|
|
|
let sggCd = $("#sggCd--${pageNameMain}").val();
|
|
|
|
|
let taskSeCd = $("#taskSeCd--${pageNameMain}").val();
|
|
|
|
|
|
|
|
|
|
// 단속 ID 가 없다면.. return
|
|
|
|
|
if (crdnId == undefined || crdnId == "") {
|
|
|
|
|
if (crdnId == null || crdnId == "") {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let params = {
|
|
|
|
|
callPurpose : "create"
|
|
|
|
|
, crdnId : crdnId
|
|
|
|
|
, sggCd : sggCd
|
|
|
|
|
, taskSeCd : taskSeCd
|
|
|
|
|
, sggCd : $("#sggCd--${pageNameMain}").val()
|
|
|
|
|
, taskSeCd : $("#taskSeCd--${pageNameMain}").val()
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
${pageName}${pageDataName1}Control.getInfo(params);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 감경 수정
|
|
|
|
|
fnUpdate${pageName}${pageDataName1} = () => {
|
|
|
|
|
fnUpdateRduct${pageName} = () => {
|
|
|
|
|
let rductId = ${pageName}${pageDataName1}Control.dataset.getValue("RDUCT_ID");
|
|
|
|
|
|
|
|
|
|
// 감경 ID 가 없다면.. return
|
|
|
|
|
if (rductId == undefined || rductId == "") {
|
|
|
|
|
if (rductId == null || rductId == "") {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -599,11 +615,11 @@
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 감경 삭제
|
|
|
|
|
fnRemove${pageName}${pageDataName1} = () => {
|
|
|
|
|
fnRemoveRduct${pageName} = () => {
|
|
|
|
|
let rductId = ${pageName}${pageDataName1}Control.dataset.getValue("RDUCT_ID");
|
|
|
|
|
|
|
|
|
|
// 감경 ID 가 없다면.. return
|
|
|
|
|
if (rductId == undefined || rductId == "") {
|
|
|
|
|
if (rductId == null || rductId == "") {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -623,22 +639,40 @@
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 계고 등록
|
|
|
|
|
fnCreateWrng${pageName} = () => {
|
|
|
|
|
let crdnId = $("#crdnId--${pageNameMain}").val();
|
|
|
|
|
|
|
|
|
|
// 단속 ID 가 없다면.. return
|
|
|
|
|
if (crdnId == null || crdnId == "") {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let params = {
|
|
|
|
|
callPurpose : "create"
|
|
|
|
|
, crdnId : crdnId
|
|
|
|
|
, sggCd : $("#sggCd--${pageNameMain}").val()
|
|
|
|
|
, taskSeCd : $("#taskSeCd--${pageNameMain}").val()
|
|
|
|
|
, levyExclSeCd : "2"
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
${pageName}${pageDataName2}Control.getInfo(params);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 부과제외 등록
|
|
|
|
|
fnCreate${pageName}${pageDataName2} = () => {
|
|
|
|
|
fnCreateLevyExcl${pageName} = () => {
|
|
|
|
|
let crdnId = $("#crdnId--${pageNameMain}").val();
|
|
|
|
|
let sggCd = $("#sggCd--${pageNameMain}").val();
|
|
|
|
|
let taskSeCd = $("#taskSeCd--${pageNameMain}").val();
|
|
|
|
|
|
|
|
|
|
// 단속 ID 가 없다면.. return
|
|
|
|
|
if (crdnId == undefined || crdnId == "") {
|
|
|
|
|
if (crdnId == null || crdnId == "") {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let params = {
|
|
|
|
|
callPurpose : "create"
|
|
|
|
|
, crdnId : crdnId
|
|
|
|
|
, sggCd : sggCd
|
|
|
|
|
, taskSeCd : taskSeCd
|
|
|
|
|
, sggCd : $("#sggCd--${pageNameMain}").val()
|
|
|
|
|
, taskSeCd : $("#taskSeCd--${pageNameMain}").val()
|
|
|
|
|
, levyExclSeCd : "1"
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
@ -646,11 +680,11 @@
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 부과제외 수정
|
|
|
|
|
fnUpdate${pageName}${pageDataName2} = () => {
|
|
|
|
|
fnUpdateLevyExcl${pageName} = () => {
|
|
|
|
|
let levyExclId = ${pageName}${pageDataName2}Control.dataset.getValue("LEVY_EXCL_ID");
|
|
|
|
|
|
|
|
|
|
// 부과 제외 ID 가 없다면.. return
|
|
|
|
|
if (levyExclId == undefined || levyExclId == "") {
|
|
|
|
|
if (levyExclId == null || levyExclId == "") {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -666,11 +700,11 @@
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 부과제외 삭제
|
|
|
|
|
fnRemove${pageName}${pageDataName2} = () => {
|
|
|
|
|
fnRemoveLevyExcl${pageName} = () => {
|
|
|
|
|
let levyExclId = ${pageName}${pageDataName2}Control.dataset.getValue("LEVY_EXCL_ID");
|
|
|
|
|
|
|
|
|
|
// 부과제외 ID 가 없다면.. return
|
|
|
|
|
if (levyExclId == undefined || levyExclId == "") {
|
|
|
|
|
if (levyExclId == null || levyExclId == "") {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|