Przeglądaj źródła

공급사-단가관리, 기준정보관리-단가관리, 공급사 검색팝업 세부수정

yhl88 2 lat temu
rodzic
commit
f03dcb6686

+ 2 - 2
src/main/webapp/app/stinfo/STINFO05010.html

@@ -150,7 +150,7 @@
150 150
 									<div class="itp_form_info">	
151 151
 										<div class="itp_form_in">	
152 152
 											<div class="form-group">
153
-												<label class="col-xs-2 itp_lb">품목번호 *</label>
153
+												<label class="col-xs-2 itp_lb">품목 *</label>
154 154
 												<div class="col-xs-10 itp_ip">
155 155
 													<div class="col-xs-a itp_in fnItemId"></div>
156 156
 													<label class="col-xs-1" style="width:2%;">/</label>
@@ -283,7 +283,7 @@
283 283
 									</div>
284 284
 									<div class="itp_form_in">	
285 285
 										<div class="form-group">
286
-											<label class="col-xs-2 itp_lb">품목번호 *</label>
286
+											<label class="col-xs-2 itp_lb">품목 *</label>
287 287
 											<div class="col-xs-10 itp_ip">
288 288
 												<div class="col-xs-a itp_in fnItemId"></div>
289 289
 												<label class="col-xs-1" style="width:2%;">/</label>

+ 1 - 0
src/main/webapp/js/app/popup/biz/ITP_BIZPOP_STORE_SPPLY.js

@@ -114,6 +114,7 @@ function itp_fn_BIZPOP_STORE_SPPLY(parentPopFn, args, returnType) {
114 114
 		loadComplete: function(data) {
115 115
 			console.log(data);
116 116
 			itp_fn_grid_load_complete(data, THIS_GIRD_ID, true, undefined, 'BIZPOP_STORE_SPPLY', itp_BIZPOP_STORE_SPPLY_search, itp_fn_BIZPOP_STORE_SPPLY_empty, true, data.gridRecords, false);
117
+			$(THIS_GIRD_ID).jqGrid('hideCol', 'cb');
117 118
 	    },
118 119
 	    loadError: function(jqXHR, textStatus, errorThrown) {
119 120
 	    	itp_fn_grid_load_error(jqXHR, textStatus, errorThrown);

+ 8 - 1
src/main/webapp/js/app/stinfo/ITP_STINFO05010.js

@@ -323,6 +323,7 @@ let listObj = {
323 323
 			// 데이터 없을때
324 324
 			//listObj.empty.push();
325 325
 			this.search();
326
+			$(STINFO05010_GRID_ID).jqGrid('hideCol', 'cb');
326 327
 		},
327 328
 		search: function() {
328 329
 			pageObj.switchScreen('LIST');
@@ -413,7 +414,13 @@ let viewObj = {
413 414
 		$('#ITP_FORM_STINFO05010_VIEW .fnItemNm').text(result.itemNm);
414 415
 		$('#ITP_FORM_STINFO05010_VIEW .fnSpplyId').text(result.spplyId);
415 416
 		$('#ITP_FORM_STINFO05010_VIEW .fnSpplyNm').text(result.spplyNm);
416
-		$('#ITP_FORM_STINFO05010_VIEW .fnSpplyItemId').text(result.spplyItemId);
417
+		let spplyItemId;
418
+		if (result.spplyItemId == null || result.spplyItemId == '') {
419
+			spplyItemId = '(미등록)';
420
+		} else {
421
+			spplyItemId = result.spplyItemId;
422
+		}
423
+		$('#ITP_FORM_STINFO05010_VIEW .fnSpplyItemId').text(spplyItemId);
417 424
 		$('#ITP_FORM_STINFO05010_VIEW .fnContSttDt').text(result.contSttDt);
418 425
 		$('#ITP_FORM_STINFO05010_VIEW .fnContEndDt').text(result.contEndDt);
419 426
 		$('#ITP_FORM_STINFO05010_VIEW .fnLeadTime').text(itp_fn_number_comma(result.leadTime) + ' Day(s)');

+ 3 - 2
src/main/webapp/js/app/vendinfo/ITP_VENDINFO03010.js

@@ -65,9 +65,10 @@ const gridColModel = {
65 65
 		},
66 66
 		{
67 67
 			index: 'LEAD_TIME', name: 'leadTime',
68
-			label: ITP_MSG_LOCALE.label.leadTime, 	//리드타임 (Day)
68
+			label: '리드타임 Day(s)', 	//리드타임 (Day)
69 69
 			width: '7', fixed: false, align: 'right',
70
-			sortable: false, hidden: false
70
+			sortable: false, hidden: false,
71
+			formatter: 'integer', formatoptions: {thousandsSeparator: ','}
71 72
 		},
72 73
 		{
73 74
 			index: 'UNIT_ST_NM', name: 'unitStNm',