瀏覽代碼

출하수거관리-출하현황 납품서조회 테스트 진행

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

+ 2 - 2
src/main/webapp/app/inoutmng/INOUTMNG02010.html

@@ -43,8 +43,8 @@
43 43
 									</div>
44 44
 									<div class="form-group" style="padding-top: 10px; border-top: 1px dotted #ccc;">
45 45
 										<div class="col-xs-2 itp_ip itp_noMar">
46
-											<select id="ITP_FORM_INOUTMNG02010_SEARCH_SHMT_REQ_ST_CD" data-select-code="SHMT_DTL_ST_CD" class="form-control itp_input" name="sshmtReqStCd">
47
-												<option value="">출하상태</option>											
46
+											<select id="ITP_FORM_INOUTMNG02010_SEARCH_SHMT_REQ_ST_CD" data-select-code="SHMT_REQ_ST_CD" class="form-control itp_input" name="sshmtReqStCd">
47
+												<option value=""></option>											
48 48
 											</select>
49 49
 										</div>
50 50
 										<div class="col-xs-3 itp_ip itp_noMar">

+ 1 - 3
src/main/webapp/app/pomng/POMNG04010.html

@@ -19,9 +19,7 @@
19 19
                                 <input type="hidden" id="ITP_FORM_POMNG04010_SEARCH_BRAND_ID" name="sbrandId" value="">
20 20
 									<div class="form-group">
21 21
 										<div class="col-xs-2 itp_ip itp_noMar">
22
-                                            <select id="ITP_FORM_POMNG04010_SERVICE_PODR_DT" class="form-control itp_input" name="servicePodrDt">
23
-												<option value="A">발주일자*</option>											
24
-											</select>
22
+                                            <label>발주일자 *</label>
25 23
 										</div>										
26 24
 										<div class="col-xs-3 itp_ip itp_noMar">
27 25
 											<div class="input-daterange input-group date">

+ 1 - 3
src/main/webapp/app/pomng/POMNG07010.html

@@ -17,9 +17,7 @@
17 17
 								<input type="hidden" id="ITP_FORM_POMNG07010_SEARCH_STORE_ID" name="sstoreId" value="">
18 18
 									<div class="form-group">
19 19
 										<div class="col-xs-2 itp_ip itp_noMar">
20
-											<select id="ITP_FORM_POMNG07010_SERVICE_DT" class="form-control itp_input" name="serviceDt">
21
-												<option value="A">일고일*</option>											
22
-											</select>
20
+											<label>입고일 *</label>
23 21
 										</div>											
24 22
 										<div class="col-xs-3 itp_ip itp_noMar">
25 23
 											<div class="input-daterange input-group date">

+ 6 - 4
src/main/webapp/js/app/pomng/ITP_POMNG04010.js

@@ -183,11 +183,13 @@ let pageObj = {
183 183
 			});
184 184
 			// 조회일자 지정	
185 185
 			var now = new Date();
186
-			var defaultToDate = new Date(now);
187
-			defaultToDate.setDate(now.getDate() + 10);
186
+			var defaultToDate1 = new Date(now);
187
+			var defaultToDate2 = new Date(now);
188
+			defaultToDate1.setDate(now.getDate() - 30);
189
+			defaultToDate2.setDate(now.getDate() + 30);
188 190
 			$('#ITP_TAB_POMNG04010 .input-group.date').datepicker(ITP_DATE_LANGUAGE);
189
-			$('#ITP_FORM_POMNG04010_SEARCH_FROM_DT').datepicker('setDate', now);
190
-			$('#ITP_FORM_POMNG04010_SEARCH_TO_DT').datepicker('setDate', defaultToDate);
191
+			$('#ITP_FORM_POMNG04010_SEARCH_FROM_DT').datepicker('setDate', defaultToDate1);
192
+			$('#ITP_FORM_POMNG04010_SEARCH_TO_DT').datepicker('setDate', defaultToDate2);
191 193
 		},
192 194
 		grid: function() {
193 195
 			itp_fn_jqgrid_resize(POMNG04010_GRID_ID, POMNG04010_GRID_LIST, 'lg');

+ 1 - 1
src/main/webapp/js/app/stinfo/ITP_STINFO02010.js

@@ -418,7 +418,7 @@ let viewObj = {
418 418
 
419 419
 		$('#ITP_FORM_STINFO02010_VIEW .fnStoreAcctInfo').text(result.storeBnkNm + ' ' + result.storeAcctNo + ' ' + result.storeOwacNm);
420 420
 		$('#ITP_FORM_STINFO02010_VIEW .fnLoanDvsn').text(result.loanDvsnNm + " - (" + itp_fn_number_comma(result.limitAmt) + "원)");
421
-		$('#ITP_FORM_STINFO02010_VIEW .fnBrandAcctInfo').text(result.brandBnkNm + ' ' + result.brandAcctNo + ' ' + result.brandOwacNm);
421
+		$('#ITP_FORM_STINFO02010_VIEW .fnBrandAcctInfo').text('(' + result.brandBnkNm + ') ' + result.brandAcctNo + ' (예금주) ' + result.brandOwacNm);
422 422
 		$('#ITP_FORM_STINFO02010_VIEW .fnAcctBal').text(itp_fn_number_comma(result.acctBal) + "원");
423 423
 		$('#ITP_FORM_STINFO02010_VIEW .fnWhsUseYn').text(result.whsUseYn);
424 424
 		$('#ITP_FORM_STINFO02010_VIEW .fnLimitAmt').text(result.limitAmt);