|
|
|
@ -34,12 +34,12 @@
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 업체명 -->
|
|
|
|
|
<div class="col-5">
|
|
|
|
|
<label class="form-label fw-bold form-search-title text-end" for="schVhrno--${pageName}">업체명</label>
|
|
|
|
|
<input type="text" class="form-control w-px-160" id="schBsshNM--${pageName}" name="schBsshNm" autocomplete="off" readonly/>
|
|
|
|
|
<input type="hidden" id="schBsshCd--${pageName}" name="schBsshCd" autocomplete="off" />
|
|
|
|
|
<button type="button" class="btn btn-search w-px-120" id="btnBsshSearch--${pageName}" title="업체 검색">
|
|
|
|
|
업체 검색
|
|
|
|
|
</button>
|
|
|
|
|
<label class="form-label fw-bold form-search-title text-end" for="schBsshNm--${pageName}">업체명</label>
|
|
|
|
|
<input type="text" class="form-control w-px-160" id="schBsshNM--${pageName}" name="schBsshNm" data-map="bsshNm" autocomplete="off" readonly/>
|
|
|
|
|
<input type="hidden" id="schBsshCd--${pageName}" name="schBsshCd" data-map="bsshCd" autocomplete="off" />
|
|
|
|
|
<button type="button" class="btn btn-search w-px-120" id="btnBsshSearch--${pageName}" title="업체 검색">
|
|
|
|
|
업체 검색
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 처리상태 -->
|
|
|
|
|
<div class="col-6">
|
|
|
|
@ -319,26 +319,24 @@
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$P.control.getBsshInfo = (gdccId) => {
|
|
|
|
|
let dialogTitle = "마약류 취급자 조회";
|
|
|
|
|
let params = {};
|
|
|
|
|
|
|
|
|
|
ajax.get({
|
|
|
|
|
url : wctx.url("/adds/nims/bssh-popup.do")
|
|
|
|
|
, data : params || {}
|
|
|
|
|
, success : resp => {
|
|
|
|
|
dialog.open({
|
|
|
|
|
id : $P.control.prefixed("Dialog")
|
|
|
|
|
, title : dialogTitle
|
|
|
|
|
, content : resp
|
|
|
|
|
, size : $P.control.infoSize
|
|
|
|
|
, onClose : () => { $P.control.setData(); }
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$P.control.getBsshInfo = (gdccId) => {
|
|
|
|
|
let dialogTitle = "마약류 취급업체 조회";
|
|
|
|
|
let params = {openPage : "frmSearch--${pageName}"};
|
|
|
|
|
|
|
|
|
|
ajax.get({
|
|
|
|
|
url : wctx.url("/adds/nims/bssh-popup.do")
|
|
|
|
|
, data : params
|
|
|
|
|
, success : resp => {
|
|
|
|
|
dialog.open({
|
|
|
|
|
id : "bsshPopupDialog"
|
|
|
|
|
, title : dialogTitle
|
|
|
|
|
, content : resp
|
|
|
|
|
, size : $P.control.infoSize
|
|
|
|
|
, onClose : () => { }
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
|
* 사용자 함수(function)
|
|
|
|
|