fit : 메인 데이터셋 변경과 검색버튼 기능 구분 제거.

dev
Leeyh1121 4 months ago
parent 2d49ca3f44
commit 9029b3be00

@ -264,7 +264,7 @@
$("#tbody--${pageName}").setCurrentRow(key); $("#tbody--${pageName}").setCurrentRow(key);
$("#btnSearch3--${pageName}").prop("disabled", false); $("#btnSearch3--${pageName}").prop("disabled", false);
$P.fnDetailSearchList("Y"); $P.fnDetailSearchList();
} }
// 현재 선택 자료 변경 이벤트 // 현재 선택 자료 변경 이벤트
@ -279,7 +279,7 @@
// FIXME: 페이징 // FIXME: 페이징
$P.detailControl.onDatasetChange = (obj) => { $P.detailControl.onDatasetChange = (obj) => {
$P.renderDetailList(obj.${infoPrefix}Total); $P.renderDetailList(obj.${infoPrefix}Total);
debugger; //debugger;
$("#${infoPrefix}DetailPaging--${pageName}").setPagingInfo({ $("#${infoPrefix}DetailPaging--${pageName}").setPagingInfo({
list: $P.detailControl.dataset list: $P.detailControl.dataset
, prefix: "${infoPrefix}DetailPaging--${pageName}" , prefix: "${infoPrefix}DetailPaging--${pageName}"
@ -373,16 +373,16 @@ debugger;
} }
// FIXME: 페이징처리 // FIXME: 페이징처리
$P.fnDetailSearchList = (schYn) => { $P.fnDetailSearchList = () => {
if (schYn == "Y"){ $P.detailControl.query = {
$P.detailControl.query = { fg: $('#schOpt--productMain').val(), // 1-제조번호, 2-시리얼번호
fg: $('#schOpt--productMain').val(), // 1-제조번호, 2-시리얼번호 pg: 1,
pg: 1, p: $P.control.dataset.getCurrent().prductCd , //제품코드
p: $P.control.dataset.getCurrent().prductCd , //제품코드 prdValidDe: $("input[name='schPrdValidDe']").val().replaceAll("-", ""),
prdValidDe: $("input[name='schPrdValidDe']").val().replaceAll("-", ""), t: $('#schText--productMain').val(), //제조번호 또는 시리얼번호
t: $('#schText--productMain').val(), //제조번호 또는 시리얼번호 userId: "${currentUser.account}"
userId: "${currentUser.account}" };
}; /*
}else{ }else{
$P.detailControl.query.pageNum = 1; $P.detailControl.query.pageNum = 1;
$P.detailControl.query = { $P.detailControl.query = {
@ -393,7 +393,7 @@ debugger;
t: $('#schText--productMain').val(), //제조번호 또는 시리얼번호 t: $('#schText--productMain').val(), //제조번호 또는 시리얼번호
userId: "${currentUser.account}" userId: "${currentUser.account}"
}; };
} }*/
$P.detailControl.query.fetchSize = 100; // 한번에 조회되는 자료 건수 $P.detailControl.query.fetchSize = 100; // 한번에 조회되는 자료 건수
$P.detailControl.query.delYn = "N"; // 삭제 여부 $P.detailControl.query.delYn = "N"; // 삭제 여부
@ -441,7 +441,7 @@ debugger;
$("#btnSave--${pageName}").on("click", () => $P.fnSave()); // 저장 $("#btnSave--${pageName}").on("click", () => $P.fnSave()); // 저장
$("#btnSearch--${pageName}").on("click", () => $P.fnSearchList()); $("#btnSearch--${pageName}").on("click", () => $P.fnSearchList());
$("#btnSearch2--${pageName}").on("click", () => $P.fnSearchList("Y")); $("#btnSearch2--${pageName}").on("click", () => $P.fnSearchList("Y"));
$("#btnSearch3--${pageName}").on("click", () => $P.fnDetailSearchList("Y")); $("#btnSearch3--${pageName}").on("click", () => $P.fnDetailSearchList());
} }
// DataTables width 변경 조정 (업무별 그리드가 존재 한다면.. crdn06010-main.jsp 참고) // DataTables width 변경 조정 (업무별 그리드가 존재 한다면.. crdn06010-main.jsp 참고)

Loading…
Cancel
Save