+
-
+
-
+
diff --git a/src/main/webapp/resources/js/fims/photo-main.js b/src/main/webapp/resources/js/fims/photo-main.js
index d1d0a43a..5e69e78f 100644
--- a/src/main/webapp/resources/js/fims/photo-main.js
+++ b/src/main/webapp/resources/js/fims/photo-main.js
@@ -59,12 +59,12 @@ function settingPhotoMain(pageName, crdnIdElement, carInfoFunc, carLinkFunc){
var popupHeight = 750;
var popupX = (window.screen.width / 2) - (popupWidth / 2);
var popupY= (window.screen.height / 2) - (popupHeight / 2);
-
+
var popup = window.open(wctx.url("/sprt/sprt03/020/main.do?openerPageName="+pageName+"&"+"fileId="+fileId)
,"editPhoto"
,"width="+popupWidth+", height="+popupHeight+", left="+popupX+", top="+popupY
);
- $.blockUI({message : ""});
+ $.blockUI({message : ""});
popup.onload = () => {
popup.addEventListener('beforeunload', function() {
$.unblockUI();
@@ -122,7 +122,9 @@ function settingPhotoMain(pageName, crdnIdElement, carInfoFunc, carLinkFunc){
// pageName에 따라 template이 다르다.
var template;
- if (pageName == "sprt02020") {
+ if (pageName == "rent02020") {
+ template = $P.findn("imgRadioTemplateRentInfo").innerHTML;
+ } else if (pageName == "sprt02020") {
template = $P.findn("imgRadioTemplateTotalInfo").innerHTML;
} else {
template = $P.findn("imgRadioTemplate").innerHTML;
@@ -245,8 +247,6 @@ function settingPhotoMain(pageName, crdnIdElement, carInfoFunc, carLinkFunc){
}
});
}
-
-
} else if(flag == "delete"){
fileProcessingURL = wctx.url("crdn/crdn06/deleteCrdnImageFile.do");
@@ -264,7 +264,6 @@ function settingPhotoMain(pageName, crdnIdElement, carInfoFunc, carLinkFunc){
for(var i=0; i < inputs.length; i++){
formData.append("orderedKeys", inputs[i].value);
}
-
}
ajax.post({
@@ -291,9 +290,7 @@ function settingPhotoMain(pageName, crdnIdElement, carInfoFunc, carLinkFunc){
}
},
});
-
}
-
}
function initPhotoMain(pageName, fileList, existVideo){
@@ -307,6 +304,11 @@ function initPhotoMain(pageName, fileList, existVideo){
$P.$findn("btnOpenVideoCapture").hide();
}
+ // 렌트업무에서는 버튼을 숨긴다.
+ if (pageName == "rent02020") {
+ $P.$findn("divBtn").hide();
+ }
+
$P.existFileArr = [];
if(fileList){
fileList.forEach(function(item){
@@ -318,6 +320,6 @@ function initPhotoMain(pageName, fileList, existVideo){
$P.localUploadArr = [];
$P.findn("inputUploadSet").value = "";
$P.$findn("inputUploadSet").trigger("change");
-
+
$P.fnDisplay();
}
\ No newline at end of file