Просмотр исходного кода

발주관리-납품서현황 팝업 로고 수정

yhl88 лет назад: 2
Родитель
Сommit
96890f250d

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

@@ -18,7 +18,7 @@
18 18
 							<div class="col-xs-12 itp_form_inline">
19 19
 								<div class="form-horizontal fix">
20 20
 									<div class="col-xs-5 itp_in itp_pr">
21
-										<img src="/oqpo-view/images/oqpologo.png" alt="로고 샘플" id="ITP_BIZPOP_DLV_STTMT_PRN_BRAND_LOGO "style="border:none; border-radius: 0; height:85px; width:85px; position: relative; padding:0;" class="form-control itp_input" name="" >
21
+										<img src="#" alt="로고 샘플" id="ITP_BIZPOP_DLV_STTMT_PRN_BRAND_LOGO" style="border:none; border-radius: 0; height:85px; width:85px; position: relative; padding:0;" class="form-control itp_input" name="" >
22 22
 									</div>
23 23
 									<div class="col-xs-4">
24 24
 										<label style="font-size:24px;">납품확인서</label>

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

@@ -5,7 +5,7 @@ require(['config'], function() {
5 5
 
6 6
 	});
7 7
 });
8
-
8
+console.log(fn_make_user_info.get('brandId'));
9 9
 let API_POP_INV_INFO = '/api/pomng/inoutmng/info-inv';
10 10
 
11 11
 const THIS_FORM_ID = '#ITP_FORM_BIZPOP_DLV_STTMT_PRN';
@@ -114,7 +114,7 @@ let pageObj = {
114 114
 	init: function() {
115 115
 		this.button();
116 116
 	},
117
-	call: function( param) {
117
+	call: function(param) {
118 118
 		fn_ajax_call(API_POP_INV_INFO, JSON.stringify(param), this.callback, 'POST');
119 119
 	},
120 120
 	button: function() {
@@ -158,7 +158,7 @@ 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
-		
161
+		$('#ITP_BIZPOP_DLV_STTMT_PRN_BRAND_LOGO').attr('src', result.fileLogNoList[0].filePath);
162 162
 		// 품목  리스트 조회
163 163
 		pageObj.grid.init(result.invDtlInfoList);
164 164
 	},