瀏覽代碼

출하수거관리-수거현황 팝업 로고 수정

yhl88 2 年之前
父節點
當前提交
d905f3ac34

+ 3 - 1
src/main/webapp/app/popup/biz/BIZPOP_COL_STTMT_PRN.html

@@ -23,7 +23,9 @@
23 23
 								</div>
24 24
 							</div>
25 25
 							<div class="col-xs-12 itp_form_inline">
26
-								<div class="col-xs-5"></div>
26
+								<div class="col-xs-5">
27
+									<img src="#" alt="로고 샘플" id="ITP_BIZPOP_COL_STTMT_PRN_BRAND_LOGO" style="border:none; border-radius: 0; height:85px; width:85px; position: relative; padding:0;" class="form-control itp_input" name="" >
28
+								</div>
27 29
 								<div class="itp_title">
28 30
 									<label>수거확인서</label>
29 31
 								</div>

+ 5 - 1
src/main/webapp/js/app/popup/biz/ITP_BIZPOP_COL_STTMT_PRN.js

@@ -116,7 +116,11 @@ let pageObj = {
116 116
 		$('#ITP_BIZPOP_COL_STTMT_PRN .fnRtnAddr').text(result.rtnAddr);
117 117
 		
118 118
 		$('#ITP_BIZPOP_COL_STTMT_PRN .fnDlvQty').text(result.dlvQty);
119
-		
119
+		if (result.fileLogNoList[0].filePath == '' || result.fileLogNoList[0].filePath.length == 0) {
120
+			$('#ITP_BIZPOP_COL_STTMT_PRN_BRAND_LOGO').hide();
121
+		} else {
122
+			$('#ITP_BIZPOP_COL_STTMT_PRN_BRAND_LOGO').attr('src', result.fileLogNoList[0].filePath);
123
+		}	
120 124
 		// 품목  리스트 조회
121 125
 		pageObj.grid.init(result.pickDtlInfoList);
122 126
 	},

+ 5 - 1
src/main/webapp/js/app/popup/biz/ITP_BIZPOP_DLV_STTMT_PRN.js

@@ -158,7 +158,11 @@ let pageObj = {
158 158
 		$('#ITP_BIZPOP_DLV_STTMT_PRN .fnPoAddr').text(result.poAddr);
159 159
 		
160 160
 		$('#ITP_BIZPOP_DLV_STTMT_PRN .fnDlvQty').text(result.dlvQty);
161
-		$('#ITP_BIZPOP_DLV_STTMT_PRN_BRAND_LOGO').attr('src', result.fileLogNoList[0].filePath);
161
+		if (result.fileLogNoList[0].filePath == '' || result.fileLogNoList[0].filePath.length == 0) {
162
+			$('#ITP_BIZPOP_DLV_STTMT_PRN_BRAND_LOGO').hide();
163
+		} else {
164
+			$('#ITP_BIZPOP_DLV_STTMT_PRN_BRAND_LOGO').attr('src', result.fileLogNoList[0].filePath);
165
+		}		
162 166
 		// 품목  리스트 조회
163 167
 		pageObj.grid.init(result.invDtlInfoList);
164 168
 	},