-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -332,55 +329,6 @@
$P.ctrl.urls.load = wctx.url(prefixUrl + "/020/info.do") // 검색
}
- // 임대차계약 첨부 파일 조회
- $P.fnSearchFileList = (lsctId) => {
- let tableFileList = $P.findn("fileList"); // table element 찾기
- let fileLength = tableFileList.rows.length;
-
- // 기존 table에 자료가 존재하면 tableRow 삭제
- for (let iLoop = 1; iLoop < fileLength; iLoop++) {
- tableFileList.deleteRow(1); // table 행(Row) 삭제
- }
-
- // 임대차계약 ID가 없다면 첨부파일을 조회하지 안는다..
- if (!lsctId) return;
-
- // 첨부파일 리스트
- ajax.get({
- url: "file/list.do"
- , data: {
- infoType: "120"
- , infoKeys: lsctId
- , fetchSize: 0
- }
- , success: (resp) => {
- let fileNo = 0;
- let fileList = resp.fileList;
-
- fileList.forEach(function (item, index, array) {
- fileNo = index + 1;
-
- let innerHtml = "";
- innerHtml += "
";
- innerHtml += "" + fileNo + " | ";
- innerHtml += "" + item.FILE_ID + " | ";
- innerHtml += "" + item.FILE_NM + " | ";
- innerHtml += "" + item.FILE_SIZE + " byte | ";
- innerHtml += "" + "" + " | ";
- innerHtml += "
";
-
- $P.$findn("tbodyFileList").append(innerHtml);
- });
- }
- });
- }
-
- // 첨부파일 다운로드 아이콘 클릭 이벤트
- $P.fnFileDownload = (fileID) => {
- top.location.href = "/file/download.do?fileID=" + fileID;
- }
-
/**************************************************************************
* 버튼 clickEvent
**************************************************************************/
@@ -435,15 +383,14 @@
};
}
, async function(vhrnoEl) {
- return await $P.getVehicleTotalInfo(vhrnoEl); // 차적조회는 "단속정보 수정" 에서 해라...
+ return await $P.getVehicleTotalInfo(vhrnoEl);
}
);
// 6. 사진영역 초기화
let crdnInfo = $P.ctrl.getCurrent();
- let existVideo = false;
- initPhotoMain("${pageName}", crdnInfo.fileList, existVideo);
+ initPhotoMain("${pageName}", crdnInfo.fileList, false);
});
diff --git a/src/main/webapp/resources/js/fims/rent/rent03020.js b/src/main/webapp/resources/js/fims/rent/rent03020.js
index 7273c0ad..9848c144 100644
--- a/src/main/webapp/resources/js/fims/rent/rent03020.js
+++ b/src/main/webapp/resources/js/fims/rent/rent03020.js
@@ -29,11 +29,6 @@ function newRent03020Control(pageName, doctx="[data-doctx='rent03020']") {
// 화면에 임대차계약 Dataset 셋팅
let formFields2 = new FimsFormFields(ctrl.selector("[name='frmEditLsct']"));
formFields2.set(ctrl, item);
-
- let fileKey = item.data.LSCT_ID;
- if (fileKey != null) {
- pageObject[pageName].fnSearchFileList(fileKey);
- }
};
// 상세 정보 dialog
@@ -81,6 +76,9 @@ function newRent03020Control(pageName, doctx="[data-doctx='rent03020']") {
// Dataset 셋팅
ctrl.setData([resp.Info]); // 정보
+
+ // 사진영역 초기화
+ initPhotoMain(pageName, resp.Info.fileList, false);
}
});
}