fix: 목록조회화면 : 업체선택후 조회시 검색조건 오류 fix

-> 관할관청코드가 reset되는 문제 해결
dev
Jonguk. Lim 4 months ago
parent 07c3f08ccc
commit ecf9f379bd

@ -426,6 +426,7 @@
$P.fnSearchList = () => {
// 검색조건
$P.control.query = $P.formFields.get(); // 검색 조건
$P.control.query.schSggCd = "${currentUser.deptCode}";
if(!$('#chkDsuseDe--${pageName}').is(":checked")){
$P.control.query.schDateFrom = '';
$P.control.query.schDateTo = '';

@ -534,6 +534,7 @@
$P.fnSearchList = () => {
// 검색조건
$P.control.query = $P.formFields.get();
$P.control.query.schSggCd = "${currentUser.deptCode}";
$P.control.query.nimsRptYn = 'Y';// 검색 조건
$P.control.query.fetchSize = $P.control.defaultFetchSize; // 한번에 조회되는 자료 건수
$P.control.query.delYn = "N"; // 삭제 여부

@ -234,8 +234,6 @@
urls : {
load : wctx.url("/adds/nims/dsuseMgtDetail-list.do")
}
// , query.schDscdmngId : $P.control.getValue("DSCDMNG_ID")
// , data : {"schDscdmngId" : $P.control.getValue("DSCDMNG_ID")}
, prefix : "dsuseMgtDetail"
, prefixName : "신청서접수상세"
, keymapper : info => info ? info.DSCDMNG_SN : ""
@ -455,17 +453,6 @@
});
}
/**************************************************************************
* 사용자 함수(function)
**************************************************************************/
// 사용자검색 callback
$P.callbackFindUser = (userId, userNm) => {
$("#schRgtrCd--${pageName}").val(userId); // 사용자 ID
$("#schRgtrNm--${pageName}").val(userNm); // 사용자 명
}
// 폐기신청서 접수 등록 버튼 이벤트
$P.fnCreateDsuseMGT = () => {
$P.control.getInfo();
@ -515,6 +502,7 @@
$P.fnSearchList = () => {
// 검색조건
$P.control.query = $P.formFields.get(); // 검색 조건
$P.control.query.schSggCd = "${currentUser.deptCode}";
if(!$('#chkDsuseDe--${pageName}').is(":checked")){
$P.control.query.schDateFrom = '';
$P.control.query.schDateTo = '';

@ -468,6 +468,7 @@
$P.fnSearchList = () => {
// 검색조건
$P.control.query = $P.formFields.get(); // 검색 조건
$P.control.query.schSggCd = "${currentUser.deptCode}";
if(!$('#chkDsuseDe--${pageName}').is(":checked")){
$P.control.query.schDateFrom = '';
$P.control.query.schDateTo = '';

Loading…
Cancel
Save