소스 검색

모바일 로그인 수정

juney 2 년 전
부모
커밋
5d82814132

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

@@ -22,9 +22,7 @@
22 22
 									<input type="hidden" id="ITP_FORM_POMNG02010_DETAIL_SSTORE_ID" name="sstoreId" value="">
23 23
 									<div class="form-group">
24 24
 										<div class="col-xs-2 itp_ip itp_noMar">
25
-											<select id="ITP_FORM_POMNG04010_SERVICE_PCH_REQ_DT" class="form-control itp_input" name="servicePchReqDt">
26
-												<option value="A">생성일</option>											
27
-											</select>
25
+											<label>생성일 *</label>
28 26
 										</div>										
29 27
 										<div class="col-xs-3 itp_ip itp_noMar">
30 28
 											<div class="input-daterange input-group date">

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

@@ -22,9 +22,7 @@
22 22
 									<input type="hidden" id="ITP_FORM_POMNG03010_DETAIL_SSTORE_ID" name="sstoreId" value="">
23 23
 									<div class="form-group">
24 24
 										<div class="col-xs-2 itp_ip itp_noMar">
25
-											<select id="ITP_FORM_POMNG03010_SERVICE_DLV_REQ_DT" class="form-control itp_input" name="serviceDlvReqDt">
26
-												<option value="A">납기요청일*</option>											
27
-											</select>
25
+											<label>납기요청일 *</label>
28 26
 										</div>											
29 27
 										<div class="col-xs-3 itp_ip itp_noMar">
30 28
 											<div class="input-daterange input-group date">

+ 0 - 11
src/main/webapp/app/rtnmng/RTNMNG05010.html

@@ -56,17 +56,6 @@
56 56
 										</div>
57 57
 										<div class="col-xs-1 itp_in" style="width:5%; padding:0px;">
58 58
 											<button type="button" id="ITP_BTN_RTNMNG05010_SEARCH_POP_SSPPLY_NM" class="btn btn-success btn-sm SEB" style="display: inline-block;"><i class="glyphicon glyphicon-search"></i></button>
59
-						                </div>
60
-										<div class="col-xs-3 itp_ip itp_noMar">
61
-											<div class="input-group">
62
-												<input type="text" id="ITP_FORM_RTNMNG05010_SEARCH_SWHS_NM" class="form-control itp_input" placeholder="반품입고창고" readonly="readonly" />
63
-												<span class="input-group-btn">
64
-													<button id="ITP_BTN_RTNMNG05010_SEARCH_DEL_SWHS_NM" class="btn btn-default btn-sm UPB" type="button" style="padding:3.8px 10px;"><i class="glyphicon glyphicon-remove"></i></button>
65
-												</span>
66
-											</div>
67
-										</div>
68
-										<div class="col-xs-1 itp_in" style="width:5%; padding:0px;">
69
-											<button type="button" id="ITP_BTN_RTNMNG05010_SEARCH_POP_SWHS_NM" class="btn btn-success btn-sm SEB" style="display: inline-block;"><i class="glyphicon glyphicon-search"></i></button>
70 59
 						                </div>
71 60
 										<div class="col-xs-4 itp_ip itp_noMar">
72 61
 											<input type="text" id="ITP_FORM_RTNMNG05010_SEARCH_ITEM_NM" class="form-control itp_input" name="sitemNm" placeholder="품목번호 or 품목명" />

+ 3 - 1
src/main/webapp/js/app/loanmng/ITP_LOANMNG04010.js

@@ -202,8 +202,10 @@ let viewObj = {
202 202
 		var limitAmt;
203 203
 		if(result.loanDvsn == 'LD01') { // 선불(충전)
204 204
 			limitAmt = result.chrgeLimitAmt;
205
+			$('#ITP_FORM_LOANMNG04010_VIEW .fnPosbLimitAmt').text(itp_fn_number_comma(result.acctBal - result.useAmtTotal)); // TODO 가용한도금액
205 206
 		} else if(result.loanDvsn == 'LD02') { // 후불(신용)
206
-			limitAmt = result.credtLimitAmt;				
207
+			limitAmt = result.credtLimitAmt;
208
+			$('#ITP_FORM_LOANMNG04010_VIEW .fnPosbLimitAmt').text(itp_fn_number_comma(limitAmt - result.useAmtTotal)); // TODO 가용한도금액
207 209
 		}
208 210
 		$('#ITP_FORM_LOANMNG04010_VIEW .fnCredtLimitAmt').text(itp_fn_number_comma(limitAmt));
209 211
 		$('#ITP_FORM_LOANMNG04010_VIEW .fnContDt').text(''); // TODO 계약기간

+ 6 - 0
src/main/webapp/js/app/pomng/ITP_POMNG03010.js

@@ -834,6 +834,8 @@ let listObj = {
834 834
 			let param = $('#ITP_FORM_POMNG03010_SEARCH').serializeObject();
835 835
 			param.gridSize = $.jgrid.defaults.rowNum;
836 836
 			param.gridPage = $.jgrid.defaults.page;
837
+			console.log(111);
838
+			console.log(JSON.stringify(param));
837 839
 			$(POMNG03010_GRID_ID).setGridParam({'postData': JSON.stringify(param)}).trigger('reloadGrid');
838 840
 		},
839 841
 		pocreate: function(param) {
@@ -936,9 +938,13 @@ let listObj = {
936 938
 				loadComplete: function(data) {
937 939
 					itp_fn_grid_load_complete(data, POMNG03010_GRID_ID, true, 'number', 'POMNG03010', listObj.itp_POMNG03010_search, listObj.empty, true, data.gridRecords, true);
938 940
 					var ids = $(POMNG03010_GRID_ID).getDataIDs();
941
+					var css = {'background-color':'#FFCCCC'};
939 942
 					$.each(ids, function(idx, rowId) {
940 943
 						$(POMNG03010_GRID_ID).jqGrid('setCell', rowId, 'storeId', '', ITP_GRID_COL_STYLE.link);
944
+						$(POMNG03010_GRID_ID).jqGrid('setCell', rowId, 'dlvReqDt', '', css);
945
+						$(POMNG03010_GRID_ID).jqGrid('setCell', rowId, 'whsNm', '', css);
941 946
 					});
947
+					$(POMNG03010_GRID_ID).setSelection(1, true);
942 948
 				},
943 949
 				onPaging: function(action) {
944 950
 					itp_fn_grid_paging(POMNG03010_GRID_ID, action, param);

+ 5 - 19
src/main/webapp/js/app/rtnmng/ITP_RTNMNG05010.js

@@ -336,6 +336,7 @@ let listObj = {
336 336
 		});
337 337
 		
338 338
 		// 매장/창고 조회 버튼 클릭
339
+		/*
339 340
 		$('#ITP_BTN_RTNMNG05010_SEARCH_POP_SWHS_NM').on('click', function() {
340 341
 			_this.popup('whs');
341 342
 		});
@@ -344,6 +345,7 @@ let listObj = {
344 345
 			$('#ITP_FORM_RTNMNG05010_SEARCH_SWHS_NM').val('');
345 346
 			$('#ITP_FORM_RTNMNG05010_SEARCH_SWHS_ID').val('');
346 347
 		});
348
+		*/
347 349
 		
348 350
 		// 수거창고 조회 버튼 클릭
349 351
 		$('#ITP_BTN_RTNMNG05010_SEARCH_POP_SRTN_WHS_NM').on('click', function() {
@@ -359,28 +361,16 @@ let listObj = {
359 361
 	popup: function(arg) {
360 362
 		var whsDvsn = "";		
361 363
 		if (fn_make_user_info.get('storeId') == "") {  // 브랜드
362
-			if (arg === 'whs') {   // 반품입고창고
363
-				whsDvsn = "W01";
364
-			} else if (arg === 'rwhs') {  // 수거창고
365
-				whsDvsn = "W01";
366
-			}			
364
+			whsDvsn = "W01";
367 365
 		} else { 
368
-			if (arg === 'whs') {    // 반품입고창고
369
-				whsDvsn = "W02";
370
-			} else if (arg === 'rwhs') {  // 수거창고
371
-				whsDvsn = "W02";
372
-			}	
366
+			whsDvsn = "W02";
373 367
 		}
374 368
 		
375 369
 		if(arg === 'spply'){
376 370
 			var popFn = this.callback.supply;			
377 371
 			const key = {brandId:fn_make_user_info.get('brandId'),storeId:fn_make_user_info.get('storeId')};
378 372
 			fn_call_popup('biz', 'BIZPOP_STORE_SPPLY', '#ITP_ASIDE', popFn, key, 'S');			
379
-		} else if(arg === 'whs'){  // 수거창고
380
-			var popFn = this.callback.whs;
381
-			const key1 = {brandId:fn_make_user_info.get('brandId'),storeId:fn_make_user_info.get('storeId'), whsDvsn:whsDvsn};
382
-			fn_call_popup('biz', 'BIZPOP_WHS_LOCATION', '#ITP_ASIDE', popFn, key1, 'S');
383
-		} else if(arg === 'rwhs'){  //반품입고창고
373
+		} else if(arg === 'rwhs'){  //수거창고
384 374
 			var popFn = this.callback.rwhs;
385 375
 			const key1 = {brandId:fn_make_user_info.get('brandId'),storeId:fn_make_user_info.get('storeId'), whsDvsn:whsDvsn};
386 376
 			fn_call_popup('biz', 'BIZPOP_WHS_LOCATION', '#ITP_ASIDE', popFn, key1, 'S');
@@ -392,10 +382,6 @@ let listObj = {
392 382
 			$('#ITP_FORM_RTNMNG05010_SEARCH_SSPPLY_NM').val(rowDataPop.spplyNm);
393 383
 			$('#ITP_FORM_RTNMNG05010_SEARCH_SSPPLY_ID').val(rowDataPop.spplyId);
394 384
 		},
395
-		whs: function(rowDataPop) {
396
-			$('#ITP_FORM_RTNMNG05010_SEARCH_SWHS_NM').val(rowDataPop.whsNm);
397
-			$('#ITP_FORM_RTNMNG05010_SEARCH_SWHS_ID').val(rowDataPop.whsId);
398
-		}, 
399 385
 		rwhs: function(rowDataPop) {
400 386
 			$('#ITP_FORM_RTNMNG05010_SEARCH_SRTN_WHS_NM').val(rowDataPop.whsNm);
401 387
 			$('#ITP_FORM_RTNMNG05010_SEARCH_SRTN_WHS_ID').val(rowDataPop.whsId);

+ 4 - 266
src/main/webapp/mobile/app/main.html

@@ -32,13 +32,13 @@
32 32
 				<button id="ITP_MOBILE_BTN_MENU"><img src="../img/menu.png" alt=""></button>
33 33
 				<button id="ITP_MOBILE_BTN_HOME"><img src="../img/home.png" alt=""></button>
34 34
 			</div>
35
-			<div class="logout">
36
-				<button id="ITP_MOBILE_BTN_LOGOUT"><img src="../img/logout.png" alt=""></button>
37
-			</div>
38 35
 			<div class="name_info">
39 36
 				<div class="bn fnBrnadNm"></div>
40 37
 				<div class="fnStoreNm"></div>
41 38
 			</div>
39
+			<div class="logout">
40
+				<button id="ITP_MOBILE_BTN_LOGOUT"><img src="../img/logout.png" alt=""></button>
41
+			</div>
42 42
 		</div>
43 43
 	</header>
44 44
 
@@ -104,269 +104,7 @@
104 104
 
105 105
 	<div id="ITP_CONTAINER" class="fix">
106 106
 		<div class="itp_mobile_contents">
107
-<section id="ITP_MOBILE_MPOMNG03010">  
108
-  <div id="ITP_POP_MPOMNG03010_SPPLY_AREA" class="popup2 mobile-pop-close" style="display: none;">
109
-	<div class="pop">
110
-		<div class="header">
111
-			<div class="header_left">
112
-				<label>공급업체</label>
113
-			</div>
114
-			<div class="header_right">
115
-				<button type="button" id="ITP_BTN_MPOMNG03010_POP_SPPLY_CLOSE"><img src="../img/close.png"></button>
116
-			</div>
117
-		</div>
118
-		<div class="search_bar">
119
-			<form id="ITP_FORM_MPOMNG03010_POP_SPPLY" class="form-horizontal" onsubmit="return false;">
120
-				<input type="hidden" id="ITP_FORM_MPOMNG03010_POP_SPPLY_ITEM_BRAND_ID" name="sbrandId" value="">
121
-				<input type="hidden" id="ITP_FORM_MPOMNG03010_PO_PSPPLY_ITEM_STORE_ID" name="sstoreId" value="">
122
-				<input id="ITP_FORM_MPOMNG03010_POP_SPPLY_KEYWORD" type="text" name="sSpplyNm" placeholder="공급업체명">
123
-				<button id="ITP_BTN_MPOMNG03010_POP_SPPLY_SEARCH"><img src="../img/search.png"></button>
124
-			</form>
125
-		</div>
126
-		<div class="select_btn">
127
-			<button id="ITP_BTN_MPOMNG03010_POP_SPPLY_NM" class="btn_blue">공급업체 ▼</button>
128
-		</div>
129
-		<div id="ITP_POP_MPOMNG03010_SPPLY_LIST_AREA" class="popup_scroll">
130
-			<ul id="ITP_POP_MPOMNG03010_SPPLY_LIST_ROWS" class="mb_0 itp_nav"></ul>
131
-			<div id="ITP_POP_MPOMNG03010_SPPLY_LIST_ROWCOPY" style="display: block;">
132
-				<li class="row_2">
133
-					<div class="scroll_left">
134
-						<div class="fnSpplyNm">공급업체 명A</div>
135
-						<div class="sub fnLocationNm">서울특별시 동대문구 서울 시립대로 12길</div>
136
-						<div class="sub fnLocationNm">누리자 B/D</div>
137
-					</div>
138
-					<div class="scroll_right">
139
-						<button id="ITP_BTN_MPOMNG03010_POP_SPPLY_CHOICE" class="fnSpplyId">선택</button>
140
-					</div>
141
-				</li>
142
-			</div>
143
-		</div>
144
-	</div>
145
-  </div>
146
-	<div id="ITP_POP_MPOMNG03010_WHS_AREA" class="popup2 mobile-pop-close" style="display: none;">
147
-		<div class="pop">
148
-			<div class="header">
149
-				<div class="header_left">
150
-					<label>납품장소</label>
151
-				</div>
152
-				<div class="header_right">
153
-					<button type="button" id="ITP_BTN_MPOMNG03010_POP_WHS_CLOSE" class="btn-pop-close"><img src="../img/close.png"></button>
154
-				</div>
155
-			</div>
156
-			<div class="search_bar">
157
-				<form id="ITP_FORM_MPOMNG03010_POP_WHS" class="form-horizontal" onsubmit="return false;">
158
-					<input type="hidden" id="ITP_FORM_MPOMNG03010_WHS_ITEM_BRAND_ID" name="sbrandId" value="">
159
-					<input type="hidden" id="ITP_FORM_MPOMNG03010_WHS_ITEM_STORE_ID" name="sstoreId" value="">
160
-					<input id="ITP_FORM_MPOMNG03010_POP_WHS_KEYWORD" type="text" name="swhsNm" placeholder="납품장소명">
161
-					<button id="ITP_BTN_MPOMNG03010_POP_WHS_SEARCH"><img src="../img/search.png"></button>
162
-				</form>
163
-			</div>
164
-			<div class="select_btn">
165
-				<button id="ITP_BTN_MPOMNG03010_POP_WHS_NM" class="btn_blue">납품장소▼</button>
166
-			</div>
167
-			<div id="ITP_LIST_MPOMNG03010_POP_WHS_AREA" class="popup_scroll">
168
-				<ul id="ITP_LIST_MPOMNG03010_POP_WHS_ROWS" class="mb_0 itp_nav"></ul>
169
-				<div id="ITP_LIST_MPOMNG03010_POP_WHS_ROWCOPY" style="display: block;">
170
-					<li class="row_2">
171
-						<div class="scroll_left">
172
-							<div class="fnWhsNm">브랜드 창고 명A</div>
173
-						    <div class="sub fnLocationNm">서울특별시 동대문구 서울 시립대로 12길</div>
174
-							<div class="sub fnLocationNm">누리자 B/D</div>
175
-						</div>
176
-						<div class="scroll_right">
177
-							<button id="ITP_BTN_MPOMNG03010_POP_WHS_CHOICE" class="fnWhsId" data-whs-id="">선택</button>
178
-						</div>
179
-					</li>
180
-				</div>
181
-			</div>
182
-		</div>
183
-	</div>
184
-  <div id="ITP_AJAX_MPOMNG03010_LIST_CONTAINER" style="display: block;">
185
-      <form id="ITP_FORM_MPOMNG03010_LIST" class="form-horizontal" onsubmit="return false;">
186
-      <input type="hidden" id="ITP_FORM_MPOMNG03010_DETAIL_VIEW_CD" name="viewCd" value="C">
187
-	    <div class="content">
188
-    	  <div class="line header">
189
-			<div class="itp_search_header">구매발주현황</div>
190
-      	  </div>
191
-	      <div class="line">
192
-	        <label>발주일자</label>
193
-	        <div class="date_to date">
194
-	          <input id="ITP_FORM_MPOMNG03010_LIST_SEARCH_FROM_DT" name="fromDt" type="date">
195
-	          <div class="at">~</div>
196
-	          <input id="ITP_FORM_MPOMNG03010_LIST_SEARCH_TO_DT" name="toDt" type="date">
197
-	        </div>
198
-	      </div>
199
-	      <div class="line">
200
-	        <label>발주상태</label>
201
-	        <div class="float_left">
202
-	          <select name="spchOdrStCd" id="ITP_FORM_MPOMNG03010_LIST_SEARCH_PCH_ORD_ST_CD">
203
-	            <option value=""></option>
204
-	          </select>
205
-	      	</div>   
206
-	      </div>
207
-	      <div class="line">
208
-	        <label>공급업체</label>
209
-	        <div class="float_left">
210
-	          <input type="text" id="ITP_FORM_MPOMNG03010_LIST_SEARCH_SPPLY_NM" name="sspplyNm" placeholder="A공급업체명">
211
-			  <input type="hidden" id="ITP_FORM_MPOMNG03010_LIST_SEARCH_SPPLY_ID" class="" name="sspplyId" />
212
-              <div class="itp_input_btn">
213
-	         	 <button id="ITP_BTN_MPOMNG03010_LIST_SEARCH_SPPLY_NM"><img src="../img/search.png" alt=""></button>
214
-      		  </div>
215
-	        </div>
216
-	        <div class="float_right_btn">
217
-	          <button id="ITP_BTN_MPOMNG03010_LIST_DELETE_SPPLY_NM"><img src="../img/delete.png" alt=""></button>
218
-	        </div>
219
-	      </div>
220
-	      <div class="line">
221
-          	<label>납품장소</label>
222
-          	<div class="search_nm">
223
-	            <div class="float_left">
224
-	              <input type="text" id="ITP_FORM_MPOMNG03010_LIST_SEARCH_WHS_NM" class="" name="swhsNm" placeholder="매장명" />
225
-				  <input type="hidden" id="ITP_FORM_MPOMNG03010_LIST_SEARCH_WHS_ID" class="" name="swhsId" />
226
-           		  <div class="itp_input_btn">
227
-	              	<button id="ITP_BTN_MPOMNG03010_LIST_SEARCH_WHS_NM"><img src="../img/search.png" alt=""></button>
228
-				  </div>
229
-	            </div>
230
-	            <div class="float_right_btn">
231
-	              <button id="ITP_BTN_MPOMNG03010_LIST_DELETE_WHS_NM"><img src="../img/delete.png" alt=""></button>
232
-	            </div>
233
-          	</div>
234
-   	 	  </div>
235
-	      <div class="line" style="height:50px;">
236
-	        <div class="search">
237
-	          <button id="ITP_BTN_MPOMNG03010_LIST_SEARCH" class="btn-primary btn-sm ADB">검색</button>
238
-	        </div>
239
-	      </div>
240
-	      <div class="table_header">
241
-	        <h1><발주 내역></h1>
242
-	      </div>
243
-	    </div>
244
-      <div id="ITP_LIST_MPOMNG03010_LIST_ITEM_AREA" class="scroll_area row-3">
245
-        <ul id="ITP_LIST_MPOMNG03010_LIST_ITEM_ROWS" class="mb_0"></ul>
246
-        	<div id="ITP_LIST_MPOMNG03010_LIST_ITEM_ROWCOPY" style="display: block;">
247
-		      <li class="list-row2">
248
-		        <div class="left">
249
-		          <div class="nomal">
250
-		            <label>발주일자 &nbsp;:</label>
251
-		            <div class="history">
252
-		              <div class="fnPodrDt">2022.10.01</div> 
253
-		              (<div class="fnOwnerNm">홍길동 점주</div>)
254
-		            </div>
255
-		          </div>
256
-		        </div>
257
-		        <div class="left">
258
-		          <div class="nomal">
259
-		            <label>발주상태 &nbsp;:</label>
260
-		            <div class="history">
261
-		              <div class="fnPodrStCd">대기</div>
262
-		            </div>
263
-		            <label>납품장소명&nbsp;:</label>
264
-		            <div class="history">
265
-		              <div class="fnDlvPlaceNm">A매장내</div>
266
-		            </div>
267
-		          </div>
268
-		        </div>
269
-		        <div class="left">
270
-		          <div class="nomal">
271
-		            <label>발주정보 &nbsp;:</label>
272
-		            <div class="history">
273
-		              <div class="fnItemQty">품목수(3)</div> 
274
-		              <i>-</i>
275
-		              <div class="fnItemAtm">1,200,000</div>원
276
-		            </div>
277
-		          </div>
278
-		        </div>
279
-		        <div class="left">
280
-		          <div class="nomal">
281
-		            <label>공급업체 &nbsp;:</label>
282
-		            <div class="history">
283
-		              <div class="fnSpplyNm">A공급업체</div> 
284
-		            </div>
285
-		          </div>
286
-		        </div>
287
-		      </li>
288
-	      </div>
289
-	    </div>
290
-    </form>
291
-  </div>
292
-  <div id="ITP_AJAX_MPOMNG03010_VIEW_CONTAINER" style="display: none;">
293
-     <form id="ITP_FORM_MPOMNG03010_VIEW" class="form-horizontal" onsubmit="return false;">
294
-      <input type="hidden" id="ITP_FORM_MPOMNG03010_VIEW_VIEW_CD" name="viewCd" value="C">
295
-	    <div class="content">
296
-	      <div class="line">
297
-	        <label>발주일자</label>
298
-	        <div class="line_right">
299
-	          <div class="fnPodrDt">2022.10.10</div>
300
-	        </div>      
301
-	      </div>
302
-	      <div class="line">
303
-	        <label>발주금액</label>
304
-	        <div class="line_right">
305
-	          <div class="fnPodrAmt">424,000원</div>
306
-	        </div>
307
-	      </div>
308
-	      <div class="line">
309
-	        <label>납품장소</label>
310
-	        <div class="line_right">
311
-	          <div class="fnDlvPlace">A매장내</div>
312
-	        </div>
313
-	      </div>
314
-	      <div class="line">
315
-	        <label>공급업체</label>
316
-	        <div class="line_right">
317
-	          <div class="fnSpplyNm">A공급업체</div>
318
-	        </div>
319
-	      </div>
320
-	      <div class="table_header">
321
-	        <h1>> 발주 품목</h1>
322
-	      </div>
323
-	    </div>
324
-      <div id="ITP_LIST_MPOMNG03010_VIEW_ITEM_AREA" class="scroll_area row-2">
325
-        <ul id="ITP_LIST_MPOMNG03010_VIEW_ITEM_ROWS" class="mb_0"></ul>
326
-        	<div id="ITP_LIST_MPOMNG03010_VIEW_ITEM_ROWCOPY" style="display:block;">
327
-			  <li>
328
-		        <div>
329
-		          <div class="left_info col-4">
330
-		            <div class="thick">
331
-             		  <label>품목명</label>
332
-             		  <span>:</span>
333
-		              <div class="fnItemNm">품목명</div>
334
-		            </div>
335
-		          </div>
336
-		          <div class="left_info col-6">
337
-		            <div class="thick">
338
-		              <label>수량/금액</label> 
339
-		              <span>:</span>
340
-		              <div class="fnQty">200</div>
341
-		              <span>/</span>
342
-		              <div class="fnAmt">1,224,000</div>
343
-		            </div>
344
-		          </div>
345
-		          <div class="left_info col-4">
346
-		            <div class="thick">
347
-		              <label>구매가 </label>
348
-		              <span>:</span>
349
-		              <div class="fnPchActAmt">12,000</div>
350
-		            </div>
351
-		          </div>
352
-		          <div class="left_info col-6">
353
-		            <div class="thick">
354
-		              <label>납기요청일</label>
355
-		              <span>:</span>
356
-		              <div class="fnDlvReqDt">2022.10.01</div>
357
-		            </div>
358
-		          </div>
359
-		        </div>
360
-		      </li>
361
-	      </div>
362
-	    </div>
363
-	    <div class="button_bar">
364
-	      <button id="ITP_BTN_MPOMNG03010_VIEW_CANCEL" class="col_12 btn-gray CLB">취소</button>
365
-	    </div>
366
-    </form>
367
-  </div>
368
-  <div id="ITP_MOBILE_JS"></div>
369
-</section>
107
+
370 108
 		</div>
371 109
 	</div>
372 110
 	<footer id="ITP_FOOTER">

+ 37 - 35
src/main/webapp/mobile/app/mpomng/MPOMNG02010.html

@@ -1,18 +1,18 @@
1 1
 <section id="ITP_MOBILE_MPOMNG02010">
2
-  <div id="ITP_AJAX_MPOMNG02010_LIST_CONTAINER" style="display: none;">
2
+  <div id="ITP_AJAX_MPOMNG02010_LIST_CONTAINER" style="display: block;">
3 3
     <div class="content">
4 4
       <form id="ITP_FORM_MPOMNG02010_LIST_SEARCH" class="form-horizontal" onsubmit="return false;">
5 5
         <input type="hidden" id="ITP_FORM_MPOMNG02010_LIST_SEARCH_BRAND_ID" name="sbrandId" value="">
6 6
         <input type="hidden" id="ITP_FORM_MPOMNG02010_LIST_SEARCH_STORE_ID" name="sstoreId" value="">
7 7
    	    <div class="line header">
8
-			<div class="itp_search_header">구매요청현황</div>
8
+			<div class="itp_search_header"><img src="../img/right_arrow_pink.png" alt="">구매요청현황</div>
9 9
       	</div>
10 10
         <div class="line">
11 11
           <label>구매요청일</label>
12 12
 	        <div class="date_to date">
13
-              <input type="text" id="ITP_FORM_MPOMNG02010_LIST_SEARCH_FROM_DT" name="fromDt" class="itp_input date" readonly>
13
+	          <input type="date" id="ITP_FORM_MPOMNG02010_LIST_SEARCH_FROM_DT" name="fromDt" pattern="\d{4}.\d{2}.\d{2}">
14 14
 	          <div class="at">~</div>
15
-              <input type="text" id="ITP_FORM_MPOMNG02010_LIST_SEARCH_TO_DT" name="toDt" class="itp_input date" readonly>
15
+	          <input type="date" id="ITP_FORM_MPOMNG02010_LIST_SEARCH_TO_DT" name="toDt" pattern="\d{4}.\d{2}.\d{2}">
16 16
 	        </div>
17 17
 		</div>
18 18
       <div class="line">
@@ -46,17 +46,17 @@
46 46
       </div>
47 47
       </form>
48 48
     </div>
49
-    <div id="ITP_LIST_MPOMNG02010_ITEM_AREA" class="scroll_area row-1">
50
-      <ul id="ITP_LIST_MPOMNG02010_ITEM_ROWS" class="mb_0 panel-group"></ul>
51
-      <div id="ITP_LIST_MPOMNG02010_ITEM_ROWCOPY" style="display: none;">
52
-        <li class="history_list list-row">
49
+    <div id="ITP_LIST_MPOMNG02010_LIST_AREA" class="scroll_area row-1">
50
+      <ul id="ITP_LIST_MPOMNG02010_LIST_ROWS" class="mb_0 panel-group"></ul>
51
+      <div id="ITP_LIST_MPOMNG02010_LIST_ROWCOPY" style="display: block;">
52
+        <li class="history_list">
53 53
           <div class="left">
54 54
             <div class="nomal">
55 55
               <label>구매요청일 </label>
56 56
               <span>:</span>
57 57
               <div class="history">
58
-                <div class="fnPchReqDt"></div>
59
-                (<div class="fnPchReqMgrNm"></div>)
58
+                <div class="fnPchReqDt">2022.10.01</div>
59
+                (<div class="fnPchReqMgrNm">홍길동 점주</div>)
60 60
               </div>
61 61
             </div>
62 62
           </div>
@@ -66,14 +66,14 @@
66 66
                   <label>구매상태</label>
67 67
                   <span>:</span>
68 68
                   <div class="history">
69
-                    <div class="fnPchReqStNm"></div>
69
+                    <div class="fnPchReqStNm">대기</div>
70 70
                   </div>
71 71
               </div>
72 72
               <div class="half">
73 73
                   <label>납품장소명 </label>
74 74
                   <span>:</span>
75 75
                   <div class="history">
76
-                    <div class="fnWhsLocationNm"></div>
76
+                    <div class="fnWhsLocationNm">A매장내</div>
77 77
                   </div>
78 78
               </div>
79 79
             </div>
@@ -83,7 +83,7 @@
83 83
               <label>구매요청 정보</label>
84 84
               <span>:</span>
85 85
               <div class="history">
86
-                <div class="fnPchReqItemQty"></div>
86
+                <div class="fnPchReqItemQty">품목수(3)</div>
87 87
                 <i>- </i>
88 88
                 <div class="fnPchReqTotalAmt"></div> 원
89 89
               </div>
@@ -94,7 +94,7 @@
94 94
               <label>결재정보 </label>
95 95
               <span>:</span>
96 96
               <div class="history">
97
-                <div class="fnPchReqRjctNm"></div>
97
+                <div class="fnPchReqRjctNm">결제완료</div>
98 98
               </div>
99 99
             </div>
100 100
           </div>
@@ -133,18 +133,19 @@
133 133
       </div>
134 134
     </div>
135 135
     <div id="ITP_LIST_MPOMNG02010_VIEW_AREA" class="scroll_area row-2">
136
-      <ul id="ITP_LIST_MPOMNG02010_VIEW_ROWS" class="mb_0"></ul>
136
+      <ul id="ITP_LIST_MPOMNG02010_VIEW_ROWS" class="mb_0 panel-group"></ul>
137 137
       <div id="ITP_LIST_MPOMNG02010_VIEW_ROWCOPY" style="display: block;">
138 138
         <li class="list-row">
139 139
           <div class="left_info">
140
-             <div class="thick">
140
+            <div class="thick">
141
+              	<label>품목명</label>
142
+                <span>:</span>
141 143
                 <div class="itp_item fnItemNm">품목명</div>
142 144
               </div>
143 145
               <div class="thick">
144
-                <div class="itp_gram fnUnitAmt">700g</div>
145
-              </div>
146
-              <div class="thick">
147
-                <div class="itp_amt fnUnitAmt">1,120,000원</div>
146
+              	<label>구매가</label>
147
+                <span>:</span>
148
+                <div class="itp_amt fnUnitAmt">asdfasdf</div>
148 149
               </div>
149 150
            </div>   
150 151
           <div class="right">
@@ -170,7 +171,7 @@
170 171
       <input type="hidden" id="ITP_FORM_MPOMNG02010_MODIFY_MALL_ID" name="mallId" value="">
171 172
       <div class="content">
172 173
       	<div class="line header">
173
-			<div class="itp_search_header">구매요청현황</div>
174
+			<div class="itp_search_header"><img src="../img/right_arrow_pink.png" alt="">구매요청현황</div>
174 175
       	</div>
175 176
         <div class="line">
176 177
           <label>납기요청일</label>
@@ -211,21 +212,22 @@
211 212
         </div>
212 213
       </div>
213 214
       <div id="ITP_LIST_MPOMNG02010_MODIFY_AREA" class="scroll_area row-1-1">
214
-        <ul id="ITP_LIST_MPOMNG02010_MODIFY_ROWS" class="mb_0"></ul>
215
-        <div id="ITP_LIST_MPOMNG02010_MODIFY_ROWCOPY" style="display: block;">
215
+        <ul id="ITP_LIST_MPOMNG02010_MODIFY_ROWS" class="mb_0 panel-group"></ul>
216
+        <div id="ITP_LIST_MPOMNG02010_MODIFY_ROWCOPY" style="display: none;">
216 217
           <li class="list-row">
217 218
             <div class="left_info">
218 219
               <div class="check_box">
219
-                <div><input type="checkbox" name="brandUnitUnqNo" class="fnBrandUnitUnqNo" /></div>
220
+                <div style="display:none;"><input style="width:20px;" type="checkbox" name="brandUnitUnqNo" class="fnBrandUnitUnqNo" /></div>
220 221
               </div>
221 222
               <div class="thick">
223
+              	<label>품목명</label>
224
+                <span>:</span>
222 225
                 <div class="itp_item fnItemNm">품목명</div>
223 226
               </div>
224 227
               <div class="thick">
225
-                <div class="itp_gram fnUnitAmt">700g</div>
226
-              </div>
227
-              <div class="thick">
228
-                <div class="itp_amt fnUnitAmt">1,120,000원</div>
228
+              	<label>구매가</label>
229
+                <span>:</span>
230
+                <div class="itp_amt fnUnitAmt">asdfasdf</div>
229 231
               </div>
230 232
             </div>
231 233
             <div class="right">
@@ -284,16 +286,16 @@
284 286
         </form>
285 287
       </div>
286 288
       <div class="select_btn">
287
-        <button id="ITP_BTN_MPOMNG02010_POP_WHS_NM" class="btn_blue">납품장소 V</button>
289
+        <button id="ITP_BTN_MPOMNG02010_POP_WHS_NM" class="btn_blue">납품장소 </button>
288 290
       </div>
289 291
       <div id="ITP_LIST_MPOMNG02010_POP_WHS_AREA" class="popup_scroll">
290
-        <ul id="ITP_LIST_MPOMNG02010_POP_WHS_ROWS" class="mb_0 itp_nav"></ul>
291
-        <div id="ITP_LIST_MPOMNG02010_POP_WHS_ROWCOPY" style="display: none;">
292
+        <ul id="ITP_LIST_MPOMNG02010_POP_WHS_ROWS" class="mb_0 panel-group itp_nav"></ul>
293
+        <div id="ITP_LIST_MPOMNG02010_POP_WHS_ROWCOPY" style="display: block;">
292 294
           <li class="row_2">
293 295
             <div class="scroll_left">
294
-              <div class="fnWhsNm"></div>
295
-              <div class="sub fnLocationNm"></div>
296
-              <div class="sub fnLocationNm"></div>
296
+              <div class="fnWhsNm">브랜드 창고 명A</div>
297
+              <div class="sub fnLocationNm">서울특별시 동대문구 서울 시립대로 12길</div>
298
+              <div class="sub fnLocationNm">누리자 B/D</div>
297 299
             </div>
298 300
             <div class="scroll_right">
299 301
               <button id="ITP_BTN_MPOMNG02010_POP_WHS_CHOICE" class="fnWhsId" data-whs-id="">선택</button>
@@ -325,7 +327,7 @@
325 327
         </div>
326 328
       </form>
327 329
       <div id="ITP_LIST_MPOMNG02010_POP_ITEM_AREA" class="popup_scroll">
328
-        <ul id="ITP_LIST_MPOMNG02010_POP_ITEM_ROWS" class="mb_0"></ul>
330
+        <ul id="ITP_LIST_MPOMNG02010_POP_ITEM_ROWS" class="mb_0 panel-group"></ul>
329 331
         <div id="ITP_LIST_MPOMNG02010_POP_ITEM_ROWCOPY" style="display: block;">
330 332
            <li class="row_2">
331 333
              <div class="scroll_left">

+ 40 - 35
src/main/webapp/mobile/app/mpomng/MPOMNG04010.html

@@ -21,13 +21,12 @@
21 21
 			  <button id="ITP_BTN_MPOMNG04010_POP_SPPLY_NM" class="btn_blue">공급업체 ▼</button>
22 22
 		  </div>
23 23
 		  <div id="ITP_POP_MPOMNG04010_SPPLY_LIST_AREA" class="popup_scroll">
24
-			  <ul id="ITP_POP_MPOMNG04010_SPPLY_LIST_ROWS" class="mb_0 itp_nav"></ul>
24
+			  <ul id="ITP_POP_MPOMNG04010_SPPLY_LIST_ROWS" class="mb_0 panel-group itp_nav"></ul>
25 25
 			  <div id="ITP_POP_MPOMNG04010_SPPLY_LIST_ROWCOPY" style="display: block;">
26 26
 				  <li class="row_2">
27 27
 					  <div class="scroll_left">
28
-						  <div class="fnSpplyNm">공급업체 명A</div>
29
-						  <div class="sub fnLocationNm">서울특별시 동대문구 서울 시립대로 12길</div>
30
-						  <div class="sub fnLocationNm">누리자 B/D</div>
28
+						  <div class="con_2 fnSpplyNm">공급업체 명A</div>
29
+						  <div class="con_2 sub fnStNm">($)</div>
31 30
 					  </div>
32 31
 					  <div class="scroll_right">
33 32
 						  <button id="ITP_BTN_MPOMNG04010_POP_SPPLY_CHOICE" class="fnSpplyId">선택</button>
@@ -37,7 +36,7 @@
37 36
 		  </div>
38 37
 	  </div>
39 38
 	</div>
40
-	  <div id="ITP_POP_MPOMNG04010_WHS_AREA" class="popup2 mobile-pop-close" style="display: none;">
39
+    <div id="ITP_POP_MPOMNG04010_WHS_AREA" class="popup2 mobile-pop-close" style="display: none;">
41 40
 		  <div class="pop">
42 41
 			  <div class="header">
43 42
 				  <div class="header_left">
@@ -59,7 +58,7 @@
59 58
 				  <button id="ITP_BTN_MPOMNG04010_POP_WHS_NM" class="btn_blue">납품장소▼</button>
60 59
 			  </div>
61 60
 			  <div id="ITP_LIST_MPOMNG04010_POP_WHS_AREA" class="popup_scroll">
62
-				  <ul id="ITP_LIST_MPOMNG04010_POP_WHS_ROWS" class="mb_0 itp_nav"></ul>
61
+				  <ul id="ITP_LIST_MPOMNG04010_POP_WHS_ROWS" class="mb_0 panel-group itp_nav"></ul>
63 62
 				  <div id="ITP_LIST_MPOMNG04010_POP_WHS_ROWCOPY" style="display: block;">
64 63
 					  <li class="row_2">
65 64
 						  <div class="scroll_left">
@@ -80,8 +79,8 @@
80 79
 		<input type="hidden" id="ITP_FORM_MPOMNG04010_DETAIL_VIEW_CD" name="viewCd" value="C">
81 80
 		  <div class="content">
82 81
 			<div class="line header">
83
-			  <div class="itp_search_header">구매발주현황</div>
84
-			  </div>
82
+			  <div class="itp_search_header"><img src="../img/right_arrow_pink.png" alt="">구매발주현황</div>
83
+		    </div>
85 84
 			<div class="line">
86 85
 			  <label>발주일자</label>
87 86
 			  <div class="date_to date">
@@ -136,7 +135,7 @@
136 135
 			</div>
137 136
 		  </div>
138 137
 		<div id="ITP_LIST_MPOMNG04010_LIST_ITEM_AREA" class="scroll_area row-3">
139
-		  <ul id="ITP_LIST_MPOMNG04010_LIST_ITEM_ROWS" class="mb_0"></ul>
138
+		  <ul id="ITP_LIST_MPOMNG04010_LIST_ITEM_ROWS" class="mb_0 panel-group"></ul>
140 139
 			  <div id="ITP_LIST_MPOMNG04010_LIST_ITEM_ROWCOPY" style="display: block;">
141 140
 				<li class="list-row2">
142 141
 				  <div class="left">
@@ -216,38 +215,44 @@
216 215
 			</div>
217 216
 		  </div>
218 217
 		<div id="ITP_LIST_MPOMNG04010_VIEW_ITEM_AREA" class="scroll_area row-2">
219
-		  <ul id="ITP_LIST_MPOMNG04010_VIEW_ITEM_ROWS" class="mb_0"></ul>
218
+		  <ul id="ITP_LIST_MPOMNG04010_VIEW_ITEM_ROWS" class="mb_0 panel-group"></ul>
220 219
 			  <div id="ITP_LIST_MPOMNG04010_VIEW_ITEM_ROWCOPY" style="display:block;">
221
-				<li>
222
-				  <div>
223
-					<div class="left_info col-4">
224
-					  <div class="thick">
225
-						 <label>품목명</label>
226
-						 <span>:</span>
227
-						<div class="fnItemNm">품목명</div>
228
-					  </div>
220
+				<li class="list-row2">
221
+				  <div class="left">
222
+					<div class="nomal">
223
+					  <label>품목명</label>
224
+					  <span>:</span>
225
+					  <div class="fnItemNm">품목명</div>
229 226
 					</div>
230
-					<div class="left_info col-6">
231
-					  <div class="thick">
232
-						<label>수량/금액</label> 
233
-						<span>:</span>
234
-						<div class="fnQty">200</div>
235
-						<span>/</span>
236
-						<div class="fnAmt">1,224,000</div>
227
+				  </div>
228
+				  <div class="left">
229
+					<div class="nomal">
230
+					  <label>수량</label>
231
+					  <span>:</span>
232
+					  <div class="history">
233
+						<div class="fnQty">대기</div>
234
+					  </div>
235
+					  <label class="sub_info">금액&nbsp;:</label>
236
+					  <div class="history">
237
+						<div class="fnAmt">A매장내</div>
237 238
 					  </div>
238 239
 					</div>
239
-					<div class="left_info col-4">
240
-					  <div class="thick">
241
-						<label>구매가 </label>
242
-						<span>:</span>
243
-						<div class="fnPchActAmt">12,000</div>
240
+				  </div>
241
+				  <div class="left">
242
+					<div class="nomal">
243
+					  <label>구매가 </label>
244
+					  <div class="history">
245
+					  <span>:</span>
246
+					  <div class="fnPchActAmt">품목수(3)</div> 
244 247
 					  </div>
245 248
 					</div>
246
-					<div class="left_info col-6">
247
-					  <div class="thick">
248
-						<label>납기요청일</label>
249
-						<span>:</span>
250
-						<div class="fnDlvReqDt">2022.10.01</div>
249
+				  </div>
250
+				  <div class="left">
251
+					<div class="nomal">
252
+					  <label>납기요청일가 </label>
253
+					  <div class="history">
254
+					  	<span>:</span>
255
+						<div class="fnDlvReqDt">A공급업체</div> 
251 256
 					  </div>
252 257
 					</div>
253 258
 				  </div>

+ 8 - 5
src/main/webapp/mobile/app/mpomng/MPOMNG05010.html

@@ -5,6 +5,9 @@
5 5
 			<input type="hidden" id="ITP_FORM_MPOMNG05010_LIST_SEARCH_STORE_ID" name="sstoreId" value="">
6 6
 			<input type="hidden" id="ITP_FORM_MPOMNG05010_LIST_SEARCH_IDX" name="sidx" value="0">
7 7
 			<div class="content">
8
+				<div class="line header">
9
+				  <div class="itp_search_header"><img src="../img/right_arrow_pink.png" alt="">납품서현황</div>
10
+			    </div>
8 11
 				<div class="line">
9 12
 					<select class="itp_label_select" name="dtlGubun" id="ITP_FORM_MPOMNG05010_LIST_DTL_GUBUN">
10 13
 						<option value="1">발주생성일</option>
@@ -69,9 +72,9 @@
69 72
 				</div>
70 73
 			</div>
71 74
 			<div id="ITP_LIST_MPOMNG05010_LIST_ITEM_AREA" class="scroll_area row-4">
72
-				<ul id="ITP_LIST_MPOMNG05010_LIST_ITEM_ROWS" class="mb_0"></ul>
75
+				<ul id="ITP_LIST_MPOMNG05010_LIST_ITEM_ROWS" class="mb_0 panel-group"></ul>
73 76
 				<div id="ITP_LIST_MPOMNG05010_LIST_ITEM_ROWCOPY" style="display: block;">
74
-					<li class="history_list2 list-row">
77
+					<li class="history_list2">
75 78
 						<div class="left">
76 79
 							<div class="nomal">
77 80
 								<label class="">납품번호 </label>
@@ -144,7 +147,7 @@
144 147
 				<button id="ITP_BTN_MPOMNG05010_POP_SPPLY_NM" class="btn_blue">공급업체▼</button>
145 148
 			</div>
146 149
 			<div id="ITP_POP_MPOMNG05010_LIST_SPPLY_AREA" class="popup_scroll">
147
-				<ul id="ITP_POP_MPOMNG05010_LIST_SPPLY_ROWS" class="mb_0 itp_nav"></ul>
150
+				<ul id="ITP_POP_MPOMNG05010_LIST_SPPLY_ROWS" class="mb_0 panel-group itp_nav"></ul>
148 151
 				<div id="ITP_POP_MPOMNG05010_LIST_SPPLY_ROWCOPY" style="display: block;">
149 152
 					<li class="row_2">
150 153
 						<div class="scroll_left">
@@ -159,7 +162,7 @@
159 162
 			</div>
160 163
 		</div>
161 164
 	</div>
162
-	<div id="ITP_POP_MPOMNG05010_WHS_AREA" class="popup2 mobile-pop-close" style="display: block;">
165
+	<div id="ITP_POP_MPOMNG05010_WHS_AREA" class="popup2 mobile-pop-close" style="display: none;">
163 166
 		<div class="pop">
164 167
 			<div class="header">
165 168
 				<div class="header_left">
@@ -181,7 +184,7 @@
181 184
 				<button id="ITP_BTN_MPOMNG05010_POP_WHS_NM" class="btn_blue">납품장소▼</button>
182 185
 			</div>
183 186
 			<div id="ITP_LIST_MPOMNG05010_POP_WHS_AREA" class="popup_scroll">
184
-				<ul id="ITP_LIST_MPOMNG05010_POP_WHS_ROWS" class="mb_0 itp_nav"></ul>
187
+				<ul id="ITP_LIST_MPOMNG05010_POP_WHS_ROWS" class="mb_0 panel-group itp_nav"></ul>
185 188
 				<div id="ITP_LIST_MPOMNG05010_POP_WHS_ROWCOPY" style="display: block;">
186 189
 					<li class="row_2">
187 190
 						<div class="scroll_left">

+ 25 - 18
src/main/webapp/mobile/app/mpomng/MPOMNG06010.html

@@ -5,13 +5,12 @@
5 5
 			<input type="hidden" id="ITP_FORM_MPOMNG02010_LIST_SEARCH_STORE_ID" name="sstoreId" value="">
6 6
 			<input type="hidden" id="ITP_FORM_MPOMNG02010_LIST_SEARCH_IDX" name="sidx" value="0">
7 7
 			<div class="content">
8
+				<div class="line header">
9
+				  <div class="itp_search_header"><img src="../img/right_arrow_pink.png" alt="">입고처리</div>
10
+			    </div>
8 11
 				<div class="line">
9 12
 					<label>납품예정일</label>
10 13
 					<div class="date_to">
11
-						<!--<input type="text" id="ITP_FORM_MPOMNG06010_LIST_SEARCH_FROM_DT" class="form-control itp_input" name="fromDt" readonly>
12
-						<span class="input-group-addon itp_date_to">~</span>
13
-						<input type="text" id="ITP_FORM_STINFO02010_SEARCH_TO_DT" class="form-control itp_input" name="toDt" readonly>-->
14
-
15 14
 						<input id="ITP_FORM_MPOMNG06010_LIST_SEARCH_FROM_DT" name="fromDt" class="year" type="date">
16 15
 						<div class="at">~</div>
17 16
 						<input id="ITP_FORM_MPOMNG06010_LIST_SEARCH_TO_DT" name="toDt" class="year" type="date">
@@ -67,13 +66,14 @@
67 66
 		</form>
68 67
 		<form id="ITP_FORM_MPOMNG06010_LIST_MODIFY" class="form-horizontal" onsubmit="return false;">
69 68
 			<div id="ITP_LIST_MPOMNG06010_LIST_ITEM_AREA" class="scroll_area row-4">
70
-				<ul id="ITP_LIST_MPOMNG06010_LIST_ITEM_ROWS" class="mb_0"></ul>
69
+				<ul id="ITP_LIST_MPOMNG06010_LIST_ITEM_ROWS" class="mb_0 panel-group"></ul>
71 70
 				<div id="ITP_LIST_MPOMNG06010_LIST_ITEM_ROWCOPY" style="display: block;">
72 71
 					<li class="history_list2">
73 72
 						<div class="left">
74 73
 							<div class="nomal">
75 74
 								<label>납품번호 </label>
76 75
 								<div class="history">
76
+									<span>:</span>
77 77
 									<div class="fnDlvSttmtUnqNo"></div>
78 78
 								</div>
79 79
 							</div>
@@ -82,6 +82,7 @@
82 82
 							<div class="nomal">
83 83
 								<label class="history_label">납품예정일</label>
84 84
 								<div class="history">
85
+									<span>:</span>
85 86
 									<div class="fnDlvSchDt history_info"></div>
86 87
 								</div>
87 88
 							</div>
@@ -90,10 +91,12 @@
90 91
 							<div class="nomal">
91 92
 								<label>공급업체</label>
92 93
 								<div class="history">
94
+									<span>:</span>
93 95
 									<div class="fnSpplyNm history_info"></div>
94 96
 								</div>
95 97
 								<label class="sub_info">납품장소</label>
96 98
 								<div class="history">
99
+									<span>:</span>
97 100
 									<div class="fnWhsNm"></div>
98 101
 								</div>
99 102
 							</div>
@@ -102,6 +105,7 @@
102 105
 							<div class="nomal">
103 106
 								<label>품목 </label>
104 107
 								<div class="history">
108
+									<span>:</span>
105 109
 									<div class="fnItemNm">(EA)</div>
106 110
 								</div>
107 111
 							</div>
@@ -110,10 +114,12 @@
110 114
 							<div class="nomal">
111 115
 								<label>납품수량</label>
112 116
 								<div class="history">
117
+									<span>:</span>
113 118
 									<div class="fnDlvQty history_info">10</div>
114 119
 								</div>
115 120
 								<label class="sub_info">입고수량</label>
116 121
 								<div class="history">
122
+									<span>:</span>
117 123
 									<input id="ITP_FORM_MPOMNG06010_LIST_WHS_QTY" class="fnWhsQty" name="whsQty" type="text" placeholder="10">
118 124
 								</div>
119 125
 							</div>
@@ -132,7 +138,7 @@
132 138
 		<div class="pop">
133 139
 			<div class="header">
134 140
 				<div class="header_left">
135
-					<label>> 공급업체</label>
141
+					<label>공급업체</label>
136 142
 				</div>
137 143
 				<div class="header_right">
138 144
 					<button type="button" id="ITP_BTN_MPOMNG06010_POP_SPPLY_CLOSE"><img src="../img/close.png"></button>
@@ -146,16 +152,16 @@
146 152
 					<button id="ITP_BTN_MPOMNG06010_POP_SPPLY_SEARCH"><img src="../img/search.png"></button>
147 153
 				</form>
148 154
 			</div>
149
-			<div class="search_bar">
155
+			<div class="select_btn">
150 156
 				<button id="ITP_BTN_MPOMNG06010_POP_SPPLY_NM" class="btn_blue">공급업체▼</button>
151 157
 			</div>
152 158
 			<div id="ITP_POP_MPOMNG06010_LIST_SPPLY_AREA" class="popup_scroll">
153
-				<ul id="ITP_POP_MPOMNG06010_LIST_SPPLY_ROWS" class="panel-group itp_nav"></ul>
154
-				<div id="ITP_POP_MPOMNG06010_LIST_SPPLY_ROWCOPY" style="display: none;">
155
-					<li class="list-row">
159
+				<ul id="ITP_POP_MPOMNG06010_LIST_SPPLY_ROWS" class="mb_0 panel-group itp_nav"></ul>
160
+				<div id="ITP_POP_MPOMNG06010_LIST_SPPLY_ROWCOPY" style="display: block;">
161
+					<li class="row_2">
156 162
 						<div class="scroll_left">
157
-							<div class="fnSpplyNm">공급업체 명A</div>
158
-							<div class="fnStNm">($)</div>
163
+							<div class="con_2 fnSpplyNm">공급업체 명A</div>
164
+							<div class="con_2 fnStNm">($)</div>
159 165
 						</div>
160 166
 						<div class="scroll_right">
161 167
 							<button id="ITP_BTN_MPOMNG06010_POP_SPPLY_CHOICE" class="fnSpplyId" data-item-key="">선택</button>
@@ -183,16 +189,17 @@
183 189
 					<button id="ITP_BTN_MPOMNG06010_POP_WHS_SEARCH"><img src="../img/search.png"></button>
184 190
 				</form>
185 191
 			</div>
186
-			<div class="search_bar">
192
+			<div class="select_btn">
187 193
 				<button id="ITP_BTN_MPOMNG06010_POP_WHS_NM" class="btn_blue">납품장소▼</button>
188 194
 			</div>
189 195
 			<div id="ITP_LIST_MPOMNG06010_POP_WHS_AREA" class="popup_scroll">
190
-				<ul id="ITP_LIST_MPOMNG06010_POP_WHS_ROWS" class="panel-group itp_nav"></ul>
191
-				<div id="ITP_LIST_MPOMNG06010_POP_WHS_ROWCOPY" style="display:none;">
192
-					<li class="list-row">
196
+				<ul id="ITP_LIST_MPOMNG06010_POP_WHS_ROWS" class="mb_0 panel-group itp_nav"></ul>
197
+				<div id="ITP_LIST_MPOMNG06010_POP_WHS_ROWCOPY" style="display: block;">
198
+					<li class="row_2">
193 199
 						<div class="scroll_left">
194
-							<div class="fnWhsNm">브랜드 창고 명A</div>
195
-							<div class="fnLocationNm">(상세위치내용)</div>
200
+						  <div class="fnWhsNm">브랜드 창고 명A</div>
201
+						  <div class="sub fnLocationNm">서울특별시 동대문구 서울 시립대로 12길</div>
202
+						  <div class="sub fnLocationNm">누리자 B/D</div>
196 203
 						</div>
197 204
 						<div class="scroll_right">
198 205
 							<button id="ITP_BTN_MPOMNG06010_POP_WHS_CHOICE" class="fnWhsId" data-whs-id="">선택</button>

+ 46 - 39
src/main/webapp/mobile/app/mpomng/MPOMNG07010.html

@@ -5,6 +5,9 @@
5 5
 			<input type="hidden" id="ITP_FORM_MPOMNG07010_LIST_SEARCH_STORE_ID" name="sstoreId" value="">
6 6
 			<input type="hidden" id="ITP_FORM_MPOMNG07010_LIST_SEARCH_IDX" name="sidx" value="0">
7 7
 	    <div class="content">
8
+    	  <div class="line header">
9
+    	  	<div class="itp_search_header"><img src="../img/right_arrow_pink.png" alt="">입고현황</div>
10
+	      </div>
8 11
 	      <div class="line">
9 12
 			  <label>입고일자</label>
10 13
 	        <div class="date_to">
@@ -15,44 +18,40 @@
15 18
 	      </div>
16 19
 	      <div class="line">
17 20
 	        <label>발주번호</label>
18
-	        <div class="search_wrap">
19
-		        <div class="line_right">
20
-		          <input id="ITP_FORM_MPOMNG07010_LIST_PCH_PODR_UNQ_NO" name="spchPodrUnqNo" type="text">
21
-		        </div>
22
-		    </div>    
21
+	        <div class="float_left">
22
+	          <input id="ITP_FORM_MPOMNG07010_LIST_PCH_PODR_UNQ_NO" name="spchPodrUnqNo" type="text">
23
+	        </div>
23 24
 	      </div>
24 25
 			<div class="line">
25 26
 				<label>공급업체</label>
26
-				<div class="search_nm">
27
-					<div class="float_left">
28
-						<input type="text" id="ITP_FORM_MPOMNG07010_LIST_SEARCH_SPPLY_NM" name="sspplyNm" placeholder="A공급업체명" readonly>
29
-						<input type="hidden" id="ITP_FORM_MPOMNG07010_LIST_SEARCH_SPPLY_ID" class="" name="sspplyId" />
30
-					</div>
31
-					<div class="float_left_btn">
27
+				<div class="float_left">
28
+					<input type="text" id="ITP_FORM_MPOMNG07010_LIST_SEARCH_SPPLY_NM" name="sspplyNm" placeholder="A공급업체명" readonly>
29
+					<input type="hidden" id="ITP_FORM_MPOMNG07010_LIST_SEARCH_SPPLY_ID" class="" name="sspplyId" />
30
+       				<div class="itp_input_btn">
32 31
 						<button id="ITP_BTN_MPOMNG07010_LIST_SEARCH_SPPLY_NM"><img src="../img/search.png" alt=""></button>
33
-						<button id="ITP_BTN_MPOMNG07010_LIST_DELETE_SPPLY_NM"><img src="../img/delete.png" alt=""></button>
34 32
 					</div>
35 33
 				</div>
34
+				<div class="float_right_btn">
35
+					<button id="ITP_BTN_MPOMNG07010_LIST_DELETE_SPPLY_NM"><img src="../img/delete.png" alt=""></button>
36
+				</div>
36 37
 			</div>
37 38
 			<div class="line">
38 39
 				<label>납품장소</label>
39
-				<div class="search_nm">
40
-					<div class="float_left">
41
-						<input type="text" id="ITP_FORM_MPOMNG07010_LIST_SEARCH_WHS_NM" class="" name="swhsNm" placeholder="매장명" readonly />
42
-						<input type="hidden" id="ITP_FORM_MPOMNG07010_LIST_SEARCH_WHS_ID" class="" name="swhsId" />
43
-					</div>
44
-					<div class="float_left_btn">
40
+				<div class="float_left">
41
+					<input type="text" id="ITP_FORM_MPOMNG07010_LIST_SEARCH_WHS_NM" class="" name="swhsNm" placeholder="매장명" readonly />
42
+					<input type="hidden" id="ITP_FORM_MPOMNG07010_LIST_SEARCH_WHS_ID" class="" name="swhsId" />
43
+       				<div class="itp_input_btn">
45 44
 						<button id="ITP_BTN_MPOMNG07010_LIST_SEARCH_WHS_NM"><img src="../img/search.png" alt=""></button>
46
-						<button id="ITP_BTN_MPOMNG07010_LIST_DELETE_WHS_NM"><img src="../img/delete.png" alt=""></button>
47 45
 					</div>
48 46
 				</div>
47
+				<div class="float_right_btn">
48
+					<button id="ITP_BTN_MPOMNG07010_LIST_DELETE_WHS_NM"><img src="../img/delete.png" alt=""></button>
49
+				</div>
49 50
 			</div>
50 51
 	      <div class="line">
51 52
 	        <label>품목명</label>
52
-	       	<div class="search_wrap">
53
-		        <div class="float_left">
54
-		          <input id="ITP_FORM_MPOMNG07010_LIST_ITEM_NM" name="sitemNm" style="width: 262px;" type="text" placeholder="품목명">
55
-		        </div>
53
+	        <div class="float_left">
54
+	          <input id="ITP_FORM_MPOMNG07010_LIST_ITEM_NM" name="sitemNm" type="text" placeholder="품목명">
56 55
 	        </div>
57 56
 	      </div>
58 57
 	      <div class="line" style="height:50px;">
@@ -65,14 +64,15 @@
65 64
 	      </div>
66 65
 	    </div>
67 66
       <div id="ITP_LIST_MPOMNG07010_LIST_ITEM_AREA" class="scroll_area row-4">
68
-        <ul id="ITP_LIST_MPOMNG07010_LIST_ITEM_ROWS" class="panel-group"></ul>
69
-        	<div id="ITP_LIST_MPOMNG07010_LIST_ITEM_ROWCOPY" style="display: none;">
70
-		      <li class="history_list2 list-row">
67
+        <ul id="ITP_LIST_MPOMNG07010_LIST_ITEM_ROWS" class="mb_0 panel-group"></ul>
68
+        	<div id="ITP_LIST_MPOMNG07010_LIST_ITEM_ROWCOPY" style="display: block;">
69
+		      <li class="history_list2">
71 70
 		        <div class="left">
72 71
 		          <div class="nomal">
73 72
 		            <label>발주번호 </label>
74 73
 		            <div class="history">
75
-		              <div class="fnPchPodrUnqNo"></div>
74
+		           		<span>:</span>
75
+		              	<div class="fnPchPodrUnqNo"></div>
76 76
 		            </div>
77 77
 		          </div>
78 78
 		        </div>
@@ -80,6 +80,7 @@
80 80
 		          <div class="nomal">
81 81
 		            <label class="history_label">입고일자</label>
82 82
 		            <div class="history">
83
+		              <span>:</span>
83 84
 		              <div class="fnDlvCmpltDt history_info"></div>
84 85
 		            </div>
85 86
 		          </div>
@@ -88,10 +89,12 @@
88 89
 		          <div class="nomal">
89 90
 		            <label>공급업체</label>
90 91
 		            <div class="history">
92
+		              <span>:</span>
91 93
 		              <div class="fnSpplyNm history_info"></div>
92 94
 		            </div>
93 95
 		            <label class="sub_info">납품장소</label>
94 96
 		            <div class="history">
97
+		           	  <span>:</span>
95 98
 		              <div class="fnDlvPlace"></div>
96 99
 		            </div>
97 100
 		          </div>
@@ -100,6 +103,7 @@
100 103
 		          <div class="nomal">
101 104
 		            <label>품목 </label>
102 105
 		            <div class="history">
106
+		              <span>:</span>
103 107
 		              <div class="fnItemNm">품목명(EA)</div> 
104 108
 		            </div>
105 109
 		          </div>
@@ -108,10 +112,12 @@
108 112
 		          <div class="nomal">
109 113
 		            <label>발주수량</label>
110 114
 		            <div class="history">
115
+		              <span>:</span>
111 116
 		              <div class="fnPodrQty history_info"></div>
112 117
 		            </div>
113 118
 		            <label class="sub_info">입고수량</label>
114 119
 		            <div class="history">
120
+		              <span>:</span>
115 121
 		              <div class="fnWhsQty"></div>
116 122
 		            </div>
117 123
 		          </div>
@@ -126,7 +132,7 @@
126 132
 		<div class="pop">
127 133
 			<div class="header">
128 134
 				<div class="header_left">
129
-					<label>> 공급업체</label>
135
+					<label>공급업체</label>
130 136
 				</div>
131 137
 				<div class="header_right">
132 138
 					<button type="button" id="ITP_BTN_MPOMNG07010_POP_SPPLY_CLOSE"><img src="../img/close.png"></button>
@@ -140,16 +146,16 @@
140 146
 					<button id="ITP_BTN_MPOMNG07010_POP_SPPLY_SEARCH"><img src="../img/search.png"></button>
141 147
 				</form>
142 148
 			</div>
143
-			<div class="search_bar">
149
+			<div class="select_btn">
144 150
 				<button id="ITP_BTN_MPOMNG07010_POP_SPPLY_NM" class="btn_blue">공급업체▼</button>
145 151
 			</div>
146 152
 			<div id="ITP_POP_MPOMNG07010_LIST_SPPLY_AREA" class="popup_scroll">
147
-				<ul id="ITP_POP_MPOMNG07010_LIST_SPPLY_ROWS" class="panel-group itp_nav"></ul>
148
-				<div id="ITP_POP_MPOMNG07010_LIST_SPPLY_ROWCOPY" style="display: none;">
149
-					<li class="list-row">
153
+				<ul id="ITP_POP_MPOMNG07010_LIST_SPPLY_ROWS" class="mb_0 panel-group itp_nav"></ul>
154
+				<div id="ITP_POP_MPOMNG07010_LIST_SPPLY_ROWCOPY" style="display: block;">
155
+					<li class="row_2">
150 156
 						<div class="scroll_left">
151
-							<div class="fnSpplyNm">공급업체 명A</div>
152
-							<div class="fnStNm">($)</div>
157
+							<div class="con_2 fnSpplyNm">공급업체 명A</div>
158
+							<div class="con_2 fnStNm">($)</div>
153 159
 						</div>
154 160
 						<div class="scroll_right">
155 161
 							<button id="ITP_BTN_MPOMNG07010_POP_SPPLY_CHOICE" class="fnSpplyId" data-item-key="">선택</button>
@@ -163,7 +169,7 @@
163 169
 		<div class="pop">
164 170
 			<div class="header">
165 171
 				<div class="header_left">
166
-					<label>> 납품장소</label>
172
+					<label>납품장소</label>
167 173
 				</div>
168 174
 				<div class="header_right">
169 175
 					<button type="button" id="ITP_BTN_MPOMNG07010_POP_WHS_CLOSE"><img src="../img/close.png"></button>
@@ -177,16 +183,17 @@
177 183
 					<button id="ITP_BTN_MPOMNG07010_POP_WHS_SEARCH"><img src="../img/search.png"></button>
178 184
 				</form>
179 185
 			</div>
180
-			<div class="search_bar">
186
+			<div class="select_btn">
181 187
 				<button id="ITP_BTN_MPOMNG07010_POP_WHS_NM" class="btn_blue">납품장소▼</button>
182 188
 			</div>
183 189
 			<div id="ITP_LIST_MPOMNG07010_POP_WHS_AREA" class="popup_scroll">
184
-				<ul id="ITP_LIST_MPOMNG07010_POP_WHS_ROWS" class="panel-group itp_nav"></ul>
185
-				<div id="ITP_LIST_MPOMNG07010_POP_WHS_ROWCOPY" style="display:none;">
186
-					<li class="list-row">
190
+				<ul id="ITP_LIST_MPOMNG07010_POP_WHS_ROWS" class="mb_0 panel-group itp_nav"></ul>
191
+				<div id="ITP_LIST_MPOMNG07010_POP_WHS_ROWCOPY" style="display: block;">
192
+					<li class="row_2">
187 193
 						<div class="scroll_left">
188 194
 							<div class="fnWhsNm">브랜드 창고 명A</div>
189 195
 							<div class="fnLocationNm">(상세위치내용)</div>
196
+							<div class="sub fnLocationNm">누리자 B/D</div>
190 197
 						</div>
191 198
 						<div class="scroll_right">
192 199
 							<button id="ITP_BTN_MPOMNG07010_POP_WHS_CHOICE" class="fnWhsId" data-whs-id="">선택</button>

+ 23 - 22
src/main/webapp/mobile/css/style.css

@@ -192,7 +192,7 @@ body.eee {height: 700px; background: #eee;}
192 192
 .main .wicon .icon_left {float: left;}
193 193
 
194 194
 
195
-input {margin-top: 3px; border: 1px solid #aaa; border-radius:5px; height: 36px; font-size: 0.8rem; text-align: left; padding:0 15px;}
195
+input {margin-top: 3px; border: 1px solid #aaa; border-radius:5px; height: 36px; font-size: 0.8rem; text-align: left; padding:0 10px;}
196 196
 input[type="date"]::-webkit-calendar-picker-indicator {display:none;}
197 197
 
198 198
 select {border: 1px solid #000; height: 35px; font-size: 1rem; text-align: left; padding:0 15px;}
@@ -274,7 +274,8 @@ input .day {margin: 18%; width: 45%; height: 80px; float: right;}
274 274
 .content .header {width:100% !important; height:55px !important; margin:0 !important;}
275 275
 .content .line {position: relative; display: inline-block; width: 99%; height: 45px; margin:auto 1%; margin-bottom: -10px;}
276 276
 .content .line div {font-weight: 700;}
277
-.content .line div.itp_search_header {font-weight:100; background:#fff; margin:5px 10px; padding:9px 10px 4px 9px; text-align: left; color:#b88278;border: 1px solid #aaa; border-radius: 5px;}
277
+.content .line div.itp_search_header {font-weight:100;padding:9px 10px 4px 9px; text-align: left; color:#b88278;border-bottom: 1px solid #aaa;}
278
+.content .line div.itp_search_header img{width:22px; top:-2px; position:relative;}
278 279
 .content .line label {min-width:110px; color:#666; font-size: 18px; margin-left: 10px; float: left; text-align: left; margin-top: 10px; font-weight:100;}
279 280
 .content .line label.pay_label {margin:38px 1%; width:98%;}
280 281
 .content .line select.label {border: 1px solid #000; font-size: 0.9rem;margin:9px 0 0 5px; float: left; width: 120px; height: 30px; text-align: left;}
@@ -291,7 +292,7 @@ input .day {margin: 18%; width: 45%; height: 80px; float: right;}
291 292
 .content .line .float_right_btn {float: left; margin-top: 5px; margin-left: 5px;}
292 293
 .content .line .float_right_btn button {padding:0; width:36px; height:36px; border-radius:5px; border:1px solid #aaa;}
293 294
 .content .line .float_right_btn button img {width:20px; height:20px;}
294
-.content .line .float_left select {float: left; width: 100%; height: 36px; border: 1px solid #aaa; border-radius:5px; font-size: 1rem;}
295
+.content .line .float_left select {float: left; width: 100%; height: 36px; border: 1px solid #aaa; border-radius:5px; font-size: 14px;;}
295 296
 .content .line .line_right {font-size: 2rem; float: left; margin-right: 0%; width:50%}
296 297
 .content .line .line_right div {float: right; font-size: 18px;; margin-top: 12px; color:#555;}
297 298
 .content .line .line_right input {position: relative; text-align: right; margin-right: 84px;}
@@ -302,11 +303,12 @@ input .day {margin: 18%; width: 45%; height: 80px; float: right;}
302 303
 .content .line .line_right select {float: right; width: 180px; height: 30px; margin-top: 7px; border: 1px solid #000; font-size: 1rem; margin-right:93px;}
303 304
 .content .line input.date {width: 50%; margin: 5px 0; height: 35px; float: left; text-align:center; font-size:14px;background: url(../img/calender.png)no-repeat 95% 50%/20px auto #fff;}
304 305
 .content .line input.date2 {width: 140px; height: 30px; margin-right:133px;}
305
-.content .line div.date_to {width:60%; float: left; margin-right:10px;}
306
-.content .line div.date_to input {width:45%}
306
+.content .line div.date_to {width:60%; float: left; margin-right:0px;}
307
+.content .line div.date_to input {width:45%; font-size:14px;}
308
+
307 309
 .content .line div.date_to div.at {width: 3%;  font-size: 1rem; float: right; display: contents;}
308 310
 .content .line .search {width: 100%; height: 50px; padding-top:8px;}
309
-.content .line .search button {width: 50%; height: 35px; font-size: 1rem; padding: 0;}
311
+.content .line .search button {width: 50%; height: 35px; font-size: 14px; font-weight:100; padding: 0;}
310 312
 .content .line .search button.col_3 {width: 25%; margin:0 12px;}
311 313
 .content .list_line {width:98%; float:left; height:50px;display: inline-flex; margin:0 1%; font-size:12px;}
312 314
 .content .border {border-bottom: 1px solid #000 !important;}
@@ -362,41 +364,40 @@ input .day {margin: 18%; width: 45%; height: 80px; float: right;}
362 364
 
363 365
 /* scroll_area 조정 */
364 366
 .scroll_area {position: absolute; width: 100%; height: 1090px; bottom: 30px; overflow: auto; background: #fff;}
365
-.row-1{top: 350px;}
366
-.row-1-1{top:364px;}
367
+.row-1{top: 347px;}
368
+.row-1-1{top:363px;}
367 369
 .row-2{top: 300px;}
368 370
 
369 371
 .row-3{top: 395px;}
370
-.row-4{top: 385px;}
372
+.row-4{top: 440px;}
371 373
 .row-5{top: 418px;}
372 374
 .row-6{top: 468px;}
373 375
 .row-7{top: 533px;}
374 376
 .row-9{top: 383px;}
375 377
 
376
-.col-4{width:40% !important;}
378
+.col-4{width:35% !important;}
377 379
 .col-6{width:60% !important;}
380
+.col-4 .thick{width:100% !important;}
381
+.col-6 .thick{width:100% !important;}
378 382
 
379 383
 .scroll_area ul.mb_0 {margin-bottom:0 !important;}
380 384
 .scroll_area .itp_non_data {margin:35% auto;}
381 385
 .scroll_area li {margin:0; list-style: none; width: 100%; height: 85px; border: 1px solid #ccc; background-color: #fff;}
382 386
 
383
-.scroll_area li.list-row {height:100px;}
387
+.scroll_area li.list-row {display: inline-flex; height:80px;}
384 388
 .scroll_area li.list-row2 {height:130px; padding-top:8px;}
385 389
 
386
-.scroll_area li .left_info {float:left; margin-top:6px;}
390
+.scroll_area li .left_info {width: calc(100% - 100px); float:left; margin-top:6px;}
387 391
 .scroll_area li .left_info div {display: inline-block; font-size:14px;}
388 392
 .scroll_area li .left_info span {font-size: 14px;}
389 393
 .scroll_area li .left_info label{font-size: 16px; font-weight:100; margin-left:10px;}
390
-.scroll_area li .left_info .check_box {padding:20px 3px; height:88px; float:left; width:13px;}
391
-.scroll_area li .left_info .thick {float:left;  margin: 2px 0 0 8px; font-size: 18px; text-align: left; width: 110%; font-weight: 100;}
394
+.scroll_area li .left_info .check_box {padding:10px; height:72px; float:left; width:30px;}
395
+.scroll_area li .left_info .thick {float:left;  margin-top: 2px; font-size: 18px; text-align: left; width: 200px;; font-weight: 100;}
392 396
 .scroll_area li .left_info .thick .itp_item {color:gray;}
393 397
 .scroll_area li .left_info .thick .itp_gram {color:#aaa; font-size:16px;}
394 398
 .scroll_area li .left_info .thick .itp_amt {color:#b88278; margin-top: 4px;}
395 399
 .scroll_area li .left_info .history {font-weight: 700; font-size: 1.1rem; margin-top:-2px;}
396 400
 .scroll_area li .left_info .history input{width: 150px;}
397
-.scroll_area li .md_info{width:140px; float:right; font-size:1rem; margin-top:17px;}
398
-.scroll_area li .md_info .thick {float:left;  margin: 2px; font-size: 18px; text-align: left; width: 90%; font-weight: 100;}
399
-.scroll_area li .md_info .thick div{color:gray;}
400 401
 .scroll_area li.history_list {height: 140px; padding-top:8px;}
401 402
 .scroll_area li.history_list .btn_check {height:158px; margin-top:-5px; width:90%; float:right; padding-top:7px; }
402 403
 .scroll_area li.history_list .scroll_btn {width:10%; height:130px; margin-top:-5px; display:inline-flex;}
@@ -435,7 +436,7 @@ input .day {margin: 18%; width: 45%; height: 80px; float: right;}
435 436
 .scroll_area li .left .nomal  {width: 100%; float:left; text-align: left; font-size: 1.2rem;}
436 437
 .scroll_area li .left .nomal .half {float:left;}
437 438
 .scroll_area li .left .nomal .half label {min-width:auto;}
438
-.scroll_area li .left .nomal .half div {min-width:auto; margin-right:5px;}
439
+.scroll_area li .left .nomal .half div {min-width:auto; margin-right:5px; margin-top:0;}
439 440
 .scroll_area li .left .nomal  input{width: 85px; height:30px;}
440 441
 
441 442
 .scroll_area li .scroll_btn {width:10%; height:158px; margin-top:-5px; display:inline-flex;}
@@ -448,7 +449,7 @@ input .day {margin: 18%; width: 45%; height: 80px; float: right;}
448 449
 .scroll_area li .left .nomal .btn_bar button{width: 25px; height: 30px; font-size: 1rem; padding: 0;}
449 450
 .scroll_area li .left .nomal .btn_bar .col_0{min-width: auto; margin: 5px 20px;}
450 451
 
451
-.scroll_area li .left .nomal label{position:relative; margin-left: 10px; font-size:15px; font-weight:700; min-width:100px; text-align:left;}
452
+.scroll_area li .left .nomal label{position:relative; margin-left: 10px; font-size:15px; font-weight:700; min-width:90px; text-align:left;}
452 453
 .scroll_area li .left .nomal label.sub_info{min-width: 70px; display: inline-flex;}
453 454
 .scroll_area li .left .nomal label.col_0{width: auto;}
454 455
 .scroll_area li .left .nomal label.col_2{width: 95px;}
@@ -456,9 +457,9 @@ input .day {margin: 18%; width: 45%; height: 80px; float: right;}
456 457
 .scroll_area li .left .nomal div{ display: inline-flex; font-weight: 100; font-size: 15px;}
457 458
 .scroll_area li .left .nomal .col_5{min-width:50px;}
458 459
 
459
-.scroll_area li .right {margin: 28px 10px 0 0; position: relative; display: flex; height:35px; font-size: 1.4rem; font-weight: 700; float: right;}
460
+.scroll_area li .right {margin: 20px 10px 0 0; position: relative; display: flex; height:35px; font-size: 1.4rem; font-weight: 700; float: right;}
460 461
 .scroll_area li .right .num {padding:8px 22px; width: auto; border-top:1px solid #E0B8AB; border-bottom:1px solid #E0B8AB;}
461
-.scroll_area li .right .fnnum {margin:13px 30px;}
462
+.scroll_area li .right .fnnum {margin:10px 30px;}
462 463
 .scroll_area li .right button {background:#e1cac1; color:#fff; border:1px solid #E0B8AB; padding:0px 7px; font-size: 1.5rem; border-radius: 0px;}
463 464
 
464 465
 /* ITP_FOOTER */
@@ -499,9 +500,9 @@ input .day {margin: 18%; width: 45%; height: 80px; float: right;}
499 500
 	.content .line .float_left {width:70%;}
500 501
 	.content .line div.date_to {width:70%;}
501 502
 	.content .line div.date_to input {width:45%}
502
-	.content .line {margin:-5px 3%;}
503 503
 	.content .line .float_left.name {width:76%;}
504 504
 	.modal-dialog {margin:auto 20% !important;}
505
+	.scroll_area li .left_info .thick {width: 90%;}
505 506
 }
506 507
 @media screen and (max-height: 720px) {
507 508
 	#ITP_LOGIN {position:fixed; top:80px; max-width: 500px; margin: 0 auto;}

BIN
src/main/webapp/mobile/img/right_arrow_pink.png