@@ -211,8 +220,6 @@
// $P.control 설정
$P.control.defaultFetchSize = FETCH_XXS; // 1 페이지당 조회되는 자료 건수 index.jsp에서 확인 FETCH_XS = 30
-
-
$P.seqInfoControl = new DatasetControl({
urls : {
load : wctx.url("/adds/nims/getNimsProductSeqInfo.do"), // 시리얼번호 검색
@@ -247,8 +254,6 @@
// $P.control 설정
$P.seqInfoControl.defaultFetchSize = FETCH_MD; // 1 페이지당 조회되는 자료 건수 index.jsp에서 확인 FETCH_XS = 30
-
-
/**************************************************************************
* DatasetControl 이벤트
**************************************************************************/
@@ -301,8 +306,6 @@
, prefix: "${infoPrefix}DetailPaging--${pageName}"
, totalSize: obj.totalCount
});
-
-
};
/**************************************************************************
@@ -358,19 +361,12 @@
});
return false;
}
-
- // if($P.formFields.get().schProductNm.length !== 0 && $P.formFields.get().schProductNm.length < 2){
- // dialog.alert({
- // content: "상품명은 2자 이상으로 조회해 주세요."
- // });
- // return false;
- // }
-
- // FIXME:: NIMS API 개발 완료후 적용
+
let bsshCd = '${bsshCd}';
- <%--if(!$('#chkBsshCd--${pageName}').is(":checked")){--%>
- <%-- bsshCd = '';--%>
- <%--}--%>
+
+ if($('input:radio[name="schPrdCd"]:checked').val() === 'nimsPrd'){
+ bsshCd = '';
+ }
$P.control.query = {
... $P.formFields.get(),
@@ -386,13 +382,11 @@
$P.control.load(1);
}
-
$P.scrollList = () => {
$P.control.query.pg = $P.control.query.pageNum + 1;
$P.control.load($P.control.query.pageNum + 1);
}
-
//그리드(우)조회(새로 조회)
$P.fnDetailSearchList = () => {
@@ -457,6 +451,7 @@
$("#btnSave--${pageName}").on("click", () => $P.fnSave()); // 저장
$("#btnSearch--${pageName}").on("click", () => $P.fnSearchList());
$("#btnSearchDtl--${pageName}").on("click", () => $P.fnDetailSearchList());
+ $('input:radio[name="schPrdCd"]').on("change", () => $P.fnSearchList());
$('input:radio[name="schMnfNo"]').on("change", () => $P.fnDetailSearchList());
$("#frmSearch--${pageName} input").onEnterPress($P.fnSearchList);
@@ -480,6 +475,7 @@
// 초기 화면 설정
$P.initForm = () => {
$("#btnSearchDtl--${pageName}").prop("disabled", true);
+ $('input:radio[name="schPrdCd"]').filter('[value="bcPrd"]').prop('checked', true);
$('input:radio[name="schMnfNo"]').filter('[value="bc"]').prop('checked', true);
}