민원상담 수정.

main
JoJH 1 week ago
parent 5fbdb0a397
commit a277ed65da

@ -32,7 +32,7 @@
<label is="name-label" class="col-form-label bg-lighter pe-2 w-px-120 text-sm-end required" for="dscsnYmd">상담일자</label> <label is="name-label" class="col-form-label bg-lighter pe-2 w-px-120 text-sm-end required" for="dscsnYmd">상담일자</label>
<input is="id-input" type="text" class="form-control form-date" name="dscsnYmd" data-map="DSCSN_YMD" <input is="id-input" type="text" class="form-control form-date" name="dscsnYmd" data-map="DSCSN_YMD"
data-fmt-type="day" autocomplete="off" title="날짜 선택" maxlength="10" required /> data-fmt-type="day" autocomplete="off" title="날짜 선택" maxlength="10" required />
<button type="button" class="bx bx-lg bx-calendar bg-white" name="btnLevyExclYmd"></button> <button type="button" class="bx bx-lg bx-calendar bg-white" name="btnDscsnYmd"></button>
</div> </div>
<div class="col-md-6"> <div class="col-md-6">
<label is="name-label" class="col-form-label bg-lighter pe-2 w-px-120 text-sm-end" for="cvlprNm">민원인명</label> <label is="name-label" class="col-form-label bg-lighter pe-2 w-px-120 text-sm-end" for="cvlprNm">민원인명</label>
@ -139,7 +139,7 @@
$P.$findn("frmEdit").find("input,textarea,select").prop("disabled", true); $P.$findn("frmEdit").find("input,textarea,select").prop("disabled", true);
// button 요소들을 disabled // button 요소들을 disabled
$P.$findn("btnLevyExclYmd").prop("disabled", true); // 부과제외 일자 달력 버튼 $P.$findn("btnDscsnYmd").prop("disabled", true); // 상담일자 달력 버튼
$P.$findn("btnSave").prop("disabled", true); // 저장 버튼 $P.$findn("btnSave").prop("disabled", true); // 저장 버튼
} else if ($P.callPurpose == "update") { } else if ($P.callPurpose == "update") {
$P.$findn("cvlcptRcptSeCd").prop("disabled", true); // 민원 접수 구분 코드 $P.$findn("cvlcptRcptSeCd").prop("disabled", true); // 민원 접수 구분 코드

@ -32,9 +32,9 @@ function newExcl01020Control(pageName, doctx="[data-doctx='excl01020']") {
ctrl.urls.create = wctx.url("/" + item.data.TASK_SE_CD + pageObject[pageName].prefixUrl + "/020/create.do"); // 등록 ctrl.urls.create = wctx.url("/" + item.data.TASK_SE_CD + pageObject[pageName].prefixUrl + "/020/create.do"); // 등록
ctrl.urls.update = wctx.url("/" + item.data.TASK_SE_CD + pageObject[pageName].prefixUrl + "/020/update.do"); // 수정 ctrl.urls.update = wctx.url("/" + item.data.TASK_SE_CD + pageObject[pageName].prefixUrl + "/020/update.do"); // 수정
// 부과제외 일자 // 등록
if (item.data.LEVY_EXCL_YMD == null) { if (!item.data.LEVY_EXCL_ID) {
$(ctrl.find("[name='levyExclYmd']")).datepicker("setDate", TODAY()); $(ctrl.find("[name='levyExclYmd']")).datepicker("setDate", TODAY()); // 부과제외 일자
} }
}; };

@ -25,6 +25,11 @@ function newSprt04020Control(pageName, doctx="[data-doctx='sprt04020']") {
// 업무구분에 따른 URL 변경 // 업무구분에 따른 URL 변경
ctrl.urls.create = wctx.url("/" + item.data.TASK_SE_CD + pageObject[pageName].prefixUrl + "/020/create.do"); // 등록 ctrl.urls.create = wctx.url("/" + item.data.TASK_SE_CD + pageObject[pageName].prefixUrl + "/020/create.do"); // 등록
ctrl.urls.update = wctx.url("/" + item.data.TASK_SE_CD + pageObject[pageName].prefixUrl + "/020/update.do"); // 수정 ctrl.urls.update = wctx.url("/" + item.data.TASK_SE_CD + pageObject[pageName].prefixUrl + "/020/update.do"); // 수정
// 등록
if (!item.data.CVLCPT_DSCSN_ID) {
$(ctrl.find("[name='dscsnYmd']")).datepicker("setDate", TODAY()); // 상담 일자
}
}; };
// 저장 callback // 저장 callback

Loading…
Cancel
Save