Procházet zdrojové kódy

Merge branch 'master' of http://106.246.249.162:13000/orderqueen/oqpo-view

yhl88 před 2 roky
rodič
revize
f9e2e186e4
23 změnil soubory, kde provedl 409 přidání a 246 odebrání
  1. 47 0
      src/main/webapp/js/app/config.js
  2. 21 17
      src/main/webapp/js/app/main.js
  3. 138 14
      src/main/webapp/main.html
  4. 6 6
      src/main/webapp/mobile/app/mloanmng/MLOANMNG01010.html
  5. 1 2
      src/main/webapp/mobile/app/mloanmng/MLOANMNG01011.html
  6. 16 16
      src/main/webapp/mobile/app/mloanmng/MLOANMNG02010.html
  7. 94 101
      src/main/webapp/mobile/app/mloanmng/MLOANMNG03010.html
  8. 30 31
      src/main/webapp/mobile/app/mrtnmng/MRTNMNG04010.html
  9. 8 10
      src/main/webapp/mobile/app/mrtnmng/MRTNMNG05010.html
  10. 8 8
      src/main/webapp/mobile/app/mrtnmng/MRTNMNG06010.html
  11. 12 12
      src/main/webapp/mobile/app/mstockmng/MSTOCKMNG01010.html
  12. 4 4
      src/main/webapp/mobile/app/mstockmng/MSTOCKMNG02010.html
  13. 8 3
      src/main/webapp/mobile/css/style.css
  14. 1 1
      src/main/webapp/mobile/js/app/mcollmng/ITP_MCOLLMNG01010.js
  15. 3 3
      src/main/webapp/mobile/js/app/mcollmng/ITP_MCOLLMNG02010.js
  16. 3 3
      src/main/webapp/mobile/js/app/mcollmng/ITP_MCOLLMNG03010.js
  17. 3 5
      src/main/webapp/mobile/js/app/mordmng/ITP_MORDMNG01010.js
  18. 2 3
      src/main/webapp/mobile/js/app/mordmng/ITP_MORDMNG02010.js
  19. 1 2
      src/main/webapp/mobile/js/app/mordmng/ITP_MORDMNG03010.js
  20. 1 1
      src/main/webapp/mobile/js/app/mpomng/ITP_MPOMNG04010.js
  21. 1 1
      src/main/webapp/mobile/js/app/mpomng/ITP_MPOMNG05010.js
  22. 1 2
      src/main/webapp/mobile/js/app/mrtnmng/ITP_MRTNMNG05010.js
  23. 0 1
      src/main/webapp/mobile/js/app/mstockmng/ITP_MSTOCKMNG02010.js

+ 47 - 0
src/main/webapp/js/app/config.js

@@ -3105,6 +3105,7 @@ var itp_fn_s2ab = function(s) {
3105 3105
     return buf;    
3106 3106
 };
3107 3107
 
3108
+/*
3108 3109
 let itp_fn_excel_data = function(gridColumns, excelData) {
3109 3110
 	var rtnData = [];
3110 3111
 	var cols = [];
@@ -3161,6 +3162,52 @@ var itp_fn_remote_to_excel = function(param) {
3161 3162
 	};
3162 3163
 	fn_ajax_call(options.url, JSON.stringify(options.param), callbackFn, 'POST');
3163 3164
 };
3165
+*/
3166
+
3167
+var itp_fn_remote_to_excel = function(options) { 
3168
+	options.param['pagingYn'] = false; 
3169
+	var callbackFn = function(result) { 
3170
+		const fileName=options.fileName;
3171
+		const data = [], header=[], headerWidths=[], cols=[], mapAlign={};
3172
+		// alignment: { vertical: 'center', horizontal: 'center', wrapText: true }
3173
+		const BORDER_ALL = { border: { top: { style: 'thick' }, right: { style: 'thick' }, bottom: { style: 'thick' }, left: { style: 'thick' } } };
3174
+		for(var c of options.gridColumns) {
3175
+			if(c.hidden || !c.label ) continue;
3176
+			const fill = { fgColor: { rgb: '5ebd3e' } };
3177
+			const font = { bold: true, color: { rgb: 'FFFFFF' } };
3178
+			const alignment = { vertical: 'center', horizontal: 'center', wrapText: true }
3179
+			var width=parseInt(Number(c.width)/7);
3180
+			if(!width ) width=10;
3181
+			header.push({v:c.label,t:'s',s:{...BORDER_ALL,fill,font,alignment}});
3182
+			headerWidths.push({width});
3183
+			cols.push(c.name);
3184
+			if(c.align ) {
3185
+				mapAlign[c.name]=c.align;
3186
+			}
3187
+		}
3188
+		data.push(header);
3189
+		for(var c of result.gridRows) {
3190
+			const row=[];
3191
+			for(var name of cols ) {
3192
+				const sty={...BORDER_ALL}; 
3193
+				const align=mapAlign[name];
3194
+				if(align ) sty.alignment = { vertical: 'center', horizontal:align, wrapText: true };
3195
+				row.push({v:c[name], t:'s',s:sty});
3196
+			}
3197
+			data.push(row);
3198
+		}
3199
+		var wb = XLSX.utils.book_new();
3200
+		const ws = XLSX.utils.aoa_to_sheet(data);
3201
+		ws['!cols'] = headerWidths;
3202
+
3203
+		XLSX.utils.book_append_sheet(wb, ws, options.sheetName); 
3204
+		var wbout = XLSX.write(wb, {bookType:'xlsx', bookSST:false, type: 'binary', showGridLines:true, cellStyles:true });
3205
+		// 엑셀 파일 내보내기 
3206
+		console.log("itp_fn_remote_to_excel callback => ",ws );
3207
+		saveAs(new Blob([itp_fn_s2ab(wbout)],{type:"application/octet-stream"}), fileName); 
3208
+	};
3209
+	fn_ajax_call(options.url, JSON.stringify(options.param), callbackFn, 'POST');
3210
+};
3164 3211
 
3165 3212
 var itp_fn_jqgrid_to_excel = function(gridId, fileName, sheetName){
3166 3213
 	

+ 21 - 17
src/main/webapp/js/app/main.js

@@ -13,6 +13,8 @@ let MAIN_CHART_STL_CHART = '/api/main/chart/stl-chart';
13 13
 let MAIN_CHART_SFT_STCK_CHART = '/api/main/chart/sft-stck-chart';
14 14
 let MAIN_CHART_DELI_CHART = '/api/main/chart/deli-chart';
15 15
 
16
+var chartCnt=0;
17
+
16 18
 require(['config'], function() {
17 19
 	require([
18 20
 		'jquery', 
@@ -56,7 +58,6 @@ require(['config'], function() {
56 58
 			google.charts.load('current', {'packages':['corechart']});
57 59
 			google.charts.load('current', {'packages':['bar']});
58 60
 			
59
-			/*
60 61
 			$('#ITP_MAIN_HEADER_BRAND').hide();
61 62
 			$('#ITP_MAIN_HEADER_STORE').hide();
62 63
 			$('#ITP_MAIN_HEADER_SPPLY').hide();
@@ -69,12 +70,11 @@ require(['config'], function() {
69 70
 			$('#ITP_MAIN_DRAW_DELI_CHART').hide(); 		// 입고
70 71
 			$('#ITP_MAIN_DRAW_RELEASE_CHART').hide();	// 출고
71 72
 			$('#ITP_MAIN_DRAW_ORDERS_CHART').hide();	// 수주내역
72
-			*/
73
-
73
+			
74 74
 			var authTpCd = fn_make_user_info.get('authTpCd'); 
75 75
 			// 10:관리자, 20:영업담당자, 30:가맹점, 40:브랜드, 50:매장, 60:공급사
76 76
 			// console.log('>>>> authTpCd = ' + authTpCd);
77
-			var chartCnt=0;
77
+			
78 78
 			if( authTpCd == '40' || authTpCd == '10' ) { // 브랜드
79 79
 				$('#ITP_MAIN_HEADER_BRAND').show();
80 80
 			
@@ -149,7 +149,7 @@ function drawChartReq() {
149 149
 	  	var options = {
150 150
 			legend: { position: 'left' }, 
151 151
 			bar: { groupWidth: "50%" },
152
-			width: 300,
152
+			width: chartCnt==4? 245: 300,
153 153
 	  	};	
154 154
 	  	var chart = new google.charts.Bar(document.getElementById('ITP_PCH_REQ_GRAPH'));
155 155
 	  	// chart.draw(data, options);
@@ -171,7 +171,7 @@ function drawChartOrders() {
171 171
 		var data = google.visualization.arrayToDataTable( eval(result.chartData) );
172 172
 	  	var options = {
173 173
 			legend: { position: 'left' },
174
-			width: 300,
174
+			width: chartCnt==4? 245: 300,
175 175
 		};	
176 176
 	  	var chart = new google.charts.Bar(document.getElementById('ITP_ORDERS_GRAPH'));
177 177
 	  	chart.draw(data, options);
@@ -192,7 +192,7 @@ function drawChartDeli() {
192 192
 		var data = google.visualization.arrayToDataTable( eval(result.chartData) );
193 193
 	  	var options = {
194 194
 			legend: { position: 'left' },
195
-			width: 300,
195
+			width: chartCnt==4? 245: 300,
196 196
 		};	
197 197
 	  	var chart = new google.charts.Bar(document.getElementById('ITP_DELI_GRAPH'));
198 198
 	  	chart.draw(data, options);
@@ -213,7 +213,7 @@ function drawChartRelease() {
213 213
 		var data = google.visualization.arrayToDataTable( eval(result.chartData) );
214 214
 	  	var options = {
215 215
 			legend: { position: 'left' },
216
-			width: 300,
216
+			width: chartCnt==4? 245: 300,
217 217
 	  	};	
218 218
 	  	var chart = new google.charts.Bar(document.getElementById('ITP_RELEASE_GRAPH'));
219 219
 	  	chart.draw(data, options);
@@ -234,7 +234,7 @@ function drawChartPodr() {
234 234
 		var options = {
235 235
 			legend: { position: 'left' }, 
236 236
 			bar: { groupWidth: "50%" },
237
-			width: 300,
237
+			width: chartCnt==4? 245: 300,
238 238
 		};	
239 239
 		var chart = new google.charts.Bar(document.getElementById('ITP_PCH_PODR_GRAPH'));	
240 240
 		// chart.draw(data, options);
@@ -350,14 +350,18 @@ var itp_fn_MAIN_NOTICE_search = function() {
350 350
 	const formId = '#ITP_FORM_MAIN_SEARCH';
351 351
 	let param = $(formId).serializeObject();
352 352
 	var searhFn = function(result) {
353
-		$.each(result.gridRows, function(idx, value) {
354
-		
355
-			$('#ITP_NOTE_BAR').append($('#ITP_NOTE_ROWCOPY').val());			
356
-			$('#ITP_NOTE_BAR .itp_side_bar_note:last').find('.fnTitle').html(value.nticeTitl);
357
-			$('#ITP_NOTE_BAR .itp_side_bar_note:last').find('.fnDate').html(value.addDt);
358
-			$('#ITP_NOTE_BAR .itp_side_bar_note:last').find('.fnContents').html(value.nticeDesc);
359
-			
360
-		});
353
+		const tb=$('#ITP_NOTE_PANEL .rtable').find('tbody');
354
+		console.log("xxxxxxxxx", result, tb)
355
+		if(Array.isArray(result.gridRows) && result.gridRows.length ) {
356
+			var s='', idx=1;
357
+			for(var c of result.gridRows ) {
358
+				s+=`<tr><td>${idx}</td><td>${c.brandNm}</td><td>${c.nticeTitl}</td><td>${c.nticeStatNm}</td><td>${c.addDt}</td></tr>`;
359
+				idx++;
360
+			}
361
+			tb.html(s);
362
+		} else {
363
+			tb.html('<tr><td colspan="5" style="text-align:center;">등록된 공지사항이 없습니다</td></tr>')
364
+		} 
361 365
 	};
362 366
 	fn_ajax_call(NTICE_DETAIL_GRID_LIST, JSON.stringify(param), searhFn, 'POST');
363 367
 };

+ 138 - 14
src/main/webapp/main.html

@@ -40,7 +40,117 @@
40 40
 
41 41
 	<script src="./js/app/properties.js"></script>
42 42
 	<script src="./js/require.min.js" data-main="./js/app/config.js"></script>
43
- 
43
+	<style>
44
+		#ITP_NOTE_PANEL {
45
+			margin-top: 16px;
46
+			margin-bottom: 20px;
47
+		}
48
+		#ITP_NOTE_PANEL h3 {
49
+			font-size: 20px;
50
+			color: #776;
51
+    		text-shadow: 2px 2px 3px rgb(255 255 255 / 20%);
52
+  			line-height: 20px;
53
+			margin: 0 0 10px 0;
54
+			color: #233c44;
55
+		}
56
+		.itp_graph_panel {
57
+			border: 1px solid #ccc;
58
+			padding: 12px;
59
+		}
60
+		.rtable { 
61
+			display: inline-block;
62
+			vertical-align: top;
63
+			max-width: 100%;
64
+			overflow-x: auto;
65
+			white-space: nowrap;
66
+			border-collapse: collapse;
67
+			border-spacing: 0;
68
+		  }
69
+		  
70
+		  .rtable,
71
+		  .rtable--flip tbody {
72
+			-webkit-overflow-scrolling: touch;
73
+			background: radial-gradient(left, ellipse, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 75%) 0 center, radial-gradient(right, ellipse, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 75%) 100% center;
74
+			background-size: 10px 100%, 10px 100%;
75
+			background-attachment: scroll, scroll;
76
+			background-repeat: no-repeat;
77
+		  }
78
+		  
79
+		  .rtable td:first-child,
80
+		  .rtable--flip tbody tr:first-child {
81
+			background-image: linear-gradient(to right, white 50%, rgba(255, 255, 255, 0) 100%);
82
+			background-repeat: no-repeat;
83
+			background-size: 20px 100%;
84
+		  }
85
+		  
86
+		  .rtable td:last-child,
87
+		  .rtable--flip tbody tr:last-child {
88
+			background-image: linear-gradient(to left, white 50%, rgba(255, 255, 255, 0) 100%);
89
+			background-repeat: no-repeat;
90
+			background-position: 100% 0;
91
+			background-size: 20px 100%;
92
+		  }
93
+		  
94
+		  .rtable th {
95
+			font-size: 13px;
96
+			text-align: left;
97
+			text-transform: uppercase;
98
+			background: #f2f0e6;
99
+			height: 40px;
100
+		  }
101
+		  
102
+		  .rtable th,
103
+		  .rtable td {
104
+			padding: 6px 12px;
105
+			border: 1px solid #d9d7ce;
106
+		  }
107
+		  
108
+		  .rtable--flip {
109
+			display: flex;
110
+			overflow: hidden;
111
+			background: none;
112
+		  }
113
+		  
114
+		  .rtable--flip thead {
115
+			display: flex;
116
+			flex-shrink: 0;
117
+			min-width: -webkit-min-content;
118
+			min-width: -moz-min-content;
119
+			min-width: min-content;
120
+		  }
121
+		  
122
+		  .rtable--flip tbody {
123
+			display: flex;
124
+			position: relative;
125
+			overflow-x: auto;
126
+			overflow-y: hidden;
127
+		  }
128
+		  
129
+		  .rtable--flip tr {
130
+			display: flex;
131
+			flex-direction: column;
132
+			min-width: -webkit-min-content;
133
+			min-width: -moz-min-content;
134
+			min-width: min-content;
135
+			flex-shrink: 0;
136
+		  }
137
+		  
138
+		  .rtable--flip td,
139
+		  .rtable--flip th {
140
+			display: block;
141
+		  }
142
+		  
143
+		  .rtable--flip td {
144
+			background-image: none !important;
145
+			border-left: 0;
146
+		  }
147
+		  
148
+		  .rtable--flip th:not(:last-child),
149
+		  .rtable--flip td:not(:last-child) {
150
+			border-bottom: 0;
151
+		  }
152
+		  
153
+	</style>
44 154
 </head>
45 155
 <body>
46 156
 	<div id="ITP_WRAPPER">
@@ -148,6 +258,24 @@
148 258
 							<div id="ITP_AJAX_SUMMARY_DETAIL_CONTAINER" class="itp_det_in">
149 259
 								<form id="ITP_FORM_MAIN_SEARCH" class="form-horizontal">
150 260
 								</form>
261
+
262
+								<div id="ITP_NOTE_PANEL">
263
+									<h3>공지사항</h3>
264
+									<table class="rtable" style="width:100%;">
265
+										<thead>
266
+										  <tr>
267
+											<th style="width:80px;">번호</th>
268
+											<th style="width:150px;">브랜드</th>
269
+											<th style="width:65%;">제목</td>
270
+											<th style="width:80px;">상태</th>
271
+											<th style="width:150px;">등록일</th>
272
+										  </tr>
273
+										</thead>
274
+										<tbody>
275
+										   
276
+										</tbody>
277
+									  </table>
278
+								</div>
151 279
 								
152 280
 								<textarea id="ITP_NOTE_ROWCOPY" rows="0" cols="0" style="display:none;">
153 281
 								<div class="itp_side_bar_note">
@@ -158,11 +286,7 @@
158 286
 								</textarea>
159 287
 								
160 288
 								<!-- 여기는 공급사 매장 로그인 시 나오는 구간 -->
161
-								<div id="ITP_NOTE_BAR">
162
-									<div class="itp_side_bar_header">
163
-										<label>공지사항</label>
164
-									</div>
165
-								</div>
289
+								
166 290
 								
167 291
 								<div id="ITP_MAIN_HEADER_BRAND" class="itp_main_header" style="display: none;">
168 292
 									<div class="col_3" style="margin-left:0">
@@ -254,7 +378,7 @@
254 378
 								</div>
255 379
 								
256 380
 								<div id="ITP_MAIN_GRAPH_AREA">
257
-									<div class="itp_graph_panel" id="ITP_MAIN_DRAW_CHART_REQ" style="display: none;">
381
+									<div class="itp_graph_panel" id="ITP_MAIN_DRAW_CHART_REQ">
258 382
 										 
259 383
 										<div class="itp_graph_title">
260 384
 											<div class="itp_graph_info">구매요청</div>
@@ -268,7 +392,7 @@
268 392
 										<div id="ITP_PCH_REQ_GRAPH" class="itp_graph_area"></div>
269 393
 									</div>
270 394
 									
271
-									<div class="itp_graph_panel" id="ITP_MAIN_DRAW_DELI_CHART" style="display: none;">
395
+									<div class="itp_graph_panel" id="ITP_MAIN_DRAW_DELI_CHART">
272 396
 										<div class="itp_graph_title">
273 397
 											<div class="itp_graph_info">입고</div>
274 398
 											<select id="ITP_FORM_MAIN_SEARCH_PR_TYPE" name="prType">
@@ -281,7 +405,7 @@
281 405
 										<div id="ITP_DELI_GRAPH" class="itp_graph_area"></div>
282 406
 									</div>
283 407
 									
284
-									<div class="itp_graph_panel" id="ITP_MAIN_DRAW_ORDERS_CHART" style="display: none;">
408
+									<div class="itp_graph_panel" id="ITP_MAIN_DRAW_ORDERS_CHART">
285 409
 										<div class="itp_graph_title">
286 410
 											<div class="itp_graph_info">수주내역</div>
287 411
 											<select id="ITP_FORM_MAIN_SEARCH_PR_TYPE" name="prType">
@@ -294,7 +418,7 @@
294 418
 										<div id="ITP_ORDERS_GRAPH" class="itp_graph_area"></div>
295 419
 									</div>
296 420
 									
297
-									<div class="itp_graph_panel" id="ITP_MAIN_DRAW_RELEASE_CHART" style="display: none;">
421
+									<div class="itp_graph_panel" id="ITP_MAIN_DRAW_RELEASE_CHART">
298 422
 										<div class="itp_graph_title">
299 423
 											<div class="itp_graph_info">출고</div>
300 424
 											<select id="ITP_FORM_MAIN_SEARCH_PR_TYPE" name="prType">
@@ -307,7 +431,7 @@
307 431
 										<div id="ITP_RELEASE_GRAPH" class="itp_graph_area"></div>
308 432
 									</div>
309 433
 									
310
-									<div class="itp_graph_panel" id="ITP_MAIN_DRAW_CHART_PODR" style="display: none;">
434
+									<div class="itp_graph_panel" id="ITP_MAIN_DRAW_CHART_PODR">
311 435
 										<div class="itp_graph_title">
312 436
 											<div class="itp_graph_info">구매발주</div>
313 437
 											<select id="ITP_FORM_MAIN_SEARCH_PR_TYPE" name="prType">
@@ -320,7 +444,7 @@
320 444
 										<div id="ITP_PCH_PODR_GRAPH" class="itp_graph_area"></div>
321 445
 									</div>
322 446
 									
323
-									<div class="itp_graph_panel" id="ITP_MAIN_DRAW_CHART_REQ_UP" style="display: none;">
447
+									<div class="itp_graph_panel" id="ITP_MAIN_DRAW_CHART_REQ_UP">
324 448
 										<div class="itp_graph_title">
325 449
 											<div class="itp_graph_info">매출순위</div>
326 450
 											<select id="ITP_FORM_MAIN_SEARCH_PR_TYPE" name="prType">
@@ -333,7 +457,7 @@
333 457
 										<div id="ITP_PCH_REQ_UP_ITEM_GRAPH" class="itp_graph_area"></div>
334 458
 									</div>
335 459
 									
336
-									<div class="itp_graph_panel" id="ITP_MAIN_DRAW_CHART_CORE" style="display: none;">
460
+									<div class="itp_graph_panel" id="ITP_MAIN_DRAW_CHART_CORE">
337 461
 										<div class="itp_graph_title">
338 462
 											<div class="itp_graph_info">정&nbsp;&nbsp;산</div>
339 463
 										</div> 
@@ -341,7 +465,7 @@
341 465
 									</div>
342 466
 									
343 467
 								</div>
344
-								<div class="itp_graph_box" style="width:100%" id="ITP_MAIN_DRAW_LINE" style="display: none;">
468
+								<div class="itp_graph_box" style="width:100%; margin-top:16px;" id="ITP_MAIN_DRAW_LINE">
345 469
 									<div class="itp_graph_title">
346 470
 										<div class="itp_graph_info">안전재고</div>
347 471
 									</div>

+ 6 - 6
src/main/webapp/mobile/app/mloanmng/MLOANMNG01010.html

@@ -1,6 +1,6 @@
1 1
 <section id="ITP_MOBILE_MLOANMNG01010">
2 2
 	<div id="ITP_AJAX_MLOANMNG01010_LIST_CONTAINER" style="display: none;" >
3
-		<form id="ITP_FORM_MLOANMNG01010_LIST_SEARCH" class="form-horizontal" onsubmit="return false;">
3
+		<form id="ITP_FORM_MLOANMNG01010_LIST_SEARCH" class="area_full form-horizontal" onsubmit="return false;">
4 4
 		  <input type="hidden" id="ITP_FORM_MLOANMNG01010_LIST_SEARCH_BRAND_ID" name="sbrandId" value="">
5 5
 		  <input type="hidden" id="ITP_FORM_MLOANMNG01010_LIST_SEARCH_STORE_ID" name="sstoreId" value="">
6 6
 		  <div class="content">
@@ -64,10 +64,10 @@
64 64
 					<div class="nomal">
65 65
 					  <label>한도금액</label>
66 66
 					  <span>:</span>
67
-					  <div class="fnLimitAmt"></div>
68
-					  <label>가용한도금액</label>
67
+					  <div class="text_4 fnLimitAmt"></div>
68
+					  <label class="col_6">가용한도금액</label>
69 69
 					  <span>:</span>
70
-					  <div class="col_6 fnPosbLimitAmt"></div>
70
+					  <div class="fnPosbLimitAmt">12,000,000000</div>
71 71
 					</div>
72 72
 				  </div>
73 73
 				  <div class="left">
@@ -93,7 +93,7 @@
93 93
 	  </form>
94 94
 	</div>
95 95
 	<div id="ITP_AJAX_MLOANMNG01010_VIEW_CONTAINER" style="display: none;">
96
-		<form id="ITP_FORM_MLOANMNG01010_VIEW_SEARCH" class="form-horizontal" onsubmit="return false;">
96
+		<form id="ITP_FORM_MLOANMNG01010_VIEW_SEARCH" class="put_btn form-horizontal" onsubmit="return false;">
97 97
 		  <input type="hidden" id="ITP_FORM_MLOANMNG01010_VIEW__SEARCH_BRAND_ID" name="sbrandId" value="">
98 98
 		  <input type="hidden" id="ITP_FORM_MLOANMNG01010_VIEW__SEARCH_STORE_ID" name="sstoreId" value="">
99 99
 		  <div class="content">
@@ -221,7 +221,7 @@
221 221
 			<div id="ITP_LIST_MLOANMNG01010_POP_STORE_AREA" class="popup_scroll">
222 222
 				<ul id="ITP_LIST_MLOANMNG01010_POP_STORE_ROWS" class="mb_0 panel-group itp_nav"></ul>
223 223
 				<div id="ITP_LIST_MLOANMNG01010_POP_STORE_ROWCOPY" style="display: none;">
224
-					<li class="row_2">
224
+					<li class="row_2 item-row">
225 225
 						<div class="scroll_left">
226 226
 							<div class="con_2 fnStoreNm"></div>
227 227
 							<div class="con_2 wichi fnStoreStNm"></div>

+ 1 - 2
src/main/webapp/mobile/app/mloanmng/MLOANMNG01011.html

@@ -1,11 +1,10 @@
1 1
 <section id="ITP_MOBILE_MLOANMNG01011">
2 2
 	<div id="ITP_AJAX_MLOANMNG01011_VIEW_CONTAINER">
3
-		<form id="ITP_FORM_MLOANMNG01011_VIEW_SEARCH" class="form-horizontal" onsubmit="return false;">
3
+		<form id="ITP_FORM_MLOANMNG01011_VIEW_SEARCH" class="put_btn form-horizontal" onsubmit="return false;">
4 4
 		  <input type="hidden" id="ITP_FORM_MLOANMNG01011_VIEW__SEARCH_BRAND_ID" name="sbrandId" value="">
5 5
 		  <input type="hidden" id="ITP_FORM_MLOANMNG01011_VIEW__SEARCH_STORE_ID" name="sstoreId" value="">
6 6
 			<input type="hidden" id="ITP_FORM_MLOANMNG01011_VIEW_SEARCH_LOAN_MGNT_UNQ_NO" name="sloanMgntUnqNo" value="">
7 7
 		  <div class="content">
8
-		  
9 8
 		  	  <div class="content_fix">
10 9
 				  <div class="line">
11 10
 					  <label>매장명</label>

+ 16 - 16
src/main/webapp/mobile/app/mloanmng/MLOANMNG02010.html

@@ -1,6 +1,6 @@
1 1
 <section id="ITP_MOBILE_MLOANMNG02010">
2 2
 	<div id="ITP_AJAX_MLOANMNG02010_LIST_CONTAINER" style="display: none;">
3
-		<form id="ITP_FORM_MLOANMNG02010_LIST_SEARCH" class="form-horizontal" onsubmit="return false;">
3
+		<form id="ITP_FORM_MLOANMNG02010_LIST_SEARCH" class="area_full form-horizontal" onsubmit="return false;">
4 4
 		  <input type="hidden" id="ITP_FORM_MLOANMNG02010_LIST_SEARCH_BRAND_ID" name="sbrandId" value="">
5 5
 		  <input type="hidden" id="ITP_FORM_MLOANMNG02010_LIST_SEARCH_STORE_ID" name="sstoreId" value="">
6 6
 		  <input type="hidden" id="ITP_FORM_LOANMNG02010_SEARCH_STORE_LOAN_DVSN" name="loanDvsn" value="">
@@ -58,60 +58,60 @@
58 58
 					<button id="ITP_BTN_MLOANMNG02010_LIST_REJECT" class="btn-danger RJT">반려</button>
59 59
 				  </div>
60 60
 				  <div class="left btn_list">
61
-					<div class="nomal btn">
62
-					  <label class="col_5">매장명</label>
61
+					<div class="nomal">
62
+					  <label class="col_4">매장명</label>
63 63
 					  <span>:</span>
64
-					  <div class="full_s fnStoreNm"></div>
64
+					  <div class="full_s fnStoreNm">fasdfsdfssfdsfadfsadfsadfasdsfdsfd</div>
65 65
 					</div>
66 66
 				  </div>
67 67
 				  <div class="left btn_list">
68
-					<div class="nomal btn">
68
+					<div class="nomal">
69 69
 					  <label class="sub_info">정산타입</label>
70 70
 					  <span>:</span>
71 71
 					  <div class="fnLoanDvsnNm"></div>
72 72
 				      <label class="sub_info">요청일자</label>
73 73
 					  <span>:</span>
74
-					  <div class="fnReqDt"></div>
74
+					  <div class="text_btn fnReqDt">2020.20.20</div>
75 75
 					</div>
76 76
 				  </div>
77 77
 				  <div class="left btn_list">
78
-					<div class="nomal btn">
78
+					<div class="nomal">
79 79
 					  <label class="sub_info">입금일자</label>
80 80
 					  <span>:</span>
81 81
 					  <div class="fnDpstDt"></div>
82 82
 					  <label class="sub_info">입금금액</label>
83 83
 					  <span>:</span>
84
-					  <div class="fnDpstAmt"></div>
84
+					  <div class="text_btn fnDpstAmt">12,000,00000</div>
85 85
 					</div>
86 86
 				  </div>
87 87
 				  <div class="left btn_list">
88
-					<div class="nomal btn">
88
+					<div class="nomal">
89 89
 					  <label class="sub_info">입금상태</label>
90 90
 					  <span>:</span>
91 91
 					  <div class="fnDpstStNm"></div>
92
-					  <label class="col_5">입금자</label>
92
+					  <label class="col_4">입금자</label>
93 93
 					  <span>:</span>
94
-					  <div class="fnDpstNm"></div>
94
+					  <div class="text_btn fnDpstNm"></div>
95 95
 					</div>
96 96
 				  </div>
97 97
 				  <div class="left btn_list">
98
-					<div class="nomal btn">
98
+					<div class="nomal">
99 99
 					  <label class="sub_info">승인일자</label>
100 100
 					  <span>:</span>
101 101
 					  <div class="fnDpstAuthDt"></div>
102 102
 					  <label class="sub_info">반려일자</label>
103 103
 					  <span>:</span>
104
-					  <div class="fnDpstRjctDt"></div>
104
+					  <div class="text_btn fnDpstRjctDt"></div>
105 105
 					</div>
106 106
 				  </div>
107 107
 				  <div class="left btn_list">
108
-					<div class="nomal btn">
108
+					<div class="nomal">
109 109
 					  <label class="sub_info">입금은행</label>
110 110
 					  <span>:</span>
111 111
 					  <div class="fnDpstBnkNm"></div>
112 112
 					  <label class="sub_info">계좌번호</label>
113 113
 					  <span>:</span>
114
-					  <div class="fnRcvAcctNo"></div>
114
+					  <div class="text_btn fnRcvAcctNo"></div>
115 115
 					</div>
116 116
 				  </div>
117 117
 				</li>
@@ -240,7 +240,7 @@
240 240
 			<div id="ITP_LIST_MLOANMNG02010_POP_STORE_AREA" class="popup_scroll">
241 241
 				<ul id="ITP_LIST_MLOANMNG02010_POP_STORE_ROWS" class="mb_0 panel-group itp_nav"></ul>
242 242
 				<div id="ITP_LIST_MLOANMNG02010_POP_STORE_ROWCOPY" style="display: none;">
243
-					<li class="row_2">
243
+					<li class="row_2 item-row">
244 244
 						<div class="scroll_left">
245 245
 							<div class="con_2 fnStoreNm"></div>
246 246
 							<div class="con_2 wichi fnStoreStNm"></div>

+ 94 - 101
src/main/webapp/mobile/app/mloanmng/MLOANMNG03010.html

@@ -1,6 +1,6 @@
1 1
 <section id="ITP_MOBILE_MLOANMNG03010">
2 2
 	<div id="ITP_AJAX_MLOANMNG03010_LIST_CONTAINER" style="display: none;">
3
-		 <form id="ITP_FORM_MLOANMNG03010_LIST_SEARCH" class="form-horizontal" onsubmit="return false;">
3
+		 <form id="ITP_FORM_MLOANMNG03010_LIST_SEARCH" class="area_full form-horizontal" onsubmit="return false;">
4 4
 			 <input type="hidden" id="ITP_FORM_MLOANMNG03010_LIST_SEARCH_BRAND_ID" name="sbrandId" value="">
5 5
 			 <input type="hidden" id="ITP_FORM_MLOANMNG03010_LIST_SEARCH_STORE_ID" name="sstoreId" value="">
6 6
 		  <div class="content">
@@ -42,13 +42,6 @@
42 42
 			  <ul id="ITP_LIST_MLOANMNG03010_LIST_ITEM_ROWS" class="mb_0 panel-group"></ul>
43 43
 			  <div id="ITP_LIST_MLOANMNG03010_LIST_ITEM_ROWCOPY" style="display: none;">
44 44
 				<li class="history_list7 item-row">
45
-				  <!-- <div class="left">hidden 처리
46
-					<div class="nomal">
47
-				      <label class="history_label">정산번호 </label>
48
-					  <span>:</span>
49
-					  <div class="full fnSttlMgntUnqNo">12121212121212121</div>
50
-					</div>
51
-				  </div> -->
52 45
 				  <div class="left">
53 46
 					<div class="nomal">
54 47
 					  <label>매장명</label>
@@ -92,112 +85,112 @@
92 85
 	  </form>
93 86
 	</div>
94 87
 	<div id="ITP_AJAX_MLOANMNG03010_VIEW_CONTAINER" style="display: none;">
95
-		<form id="ITP_FORM_MLOANMNG03010_VIEW" class="form-horizontal" onsubmit="return false;">
88
+		<form id="ITP_FORM_MLOANMNG03010_VIEW" class="put_btn form-horizontal" onsubmit="return false;">
96 89
 			<input type="hidden" id="ITP_FORM_MLOANMNG03010_VIEW_BRAND_ID" name="brandId" value="">
97 90
 			<input type="hidden" id="ITP_FORM_MLOANMNG03010_VIEW_STORE_ID" name="storeId" value="">
98 91
 			<input type="hidden" id="ITP_FORM_MLOANMNG03010_VIEW_STTL_MGNT_UNQ_NO" name="sttlMgntUnqNo" value="">
99 92
 			<input type="hidden" id="ITP_FORM_MLOANMNG03010_VIEW_UNPAID_AMT" name="goodsAmt" value="">
100 93
 			<input type="hidden" id="ITP_FORM_MLOANMNG03010_VIEW_RCPT_YN" value="">
101
-		</form>
102
-		  <div class="content">
103
-			  <div class="content_fix">
104
-				<div class="line">
105
-				  <label>매장명</label>
106
-				  <div class="line_right">
107
-				  	<div class="fnStoreNm"></div>
108
-				  </div>      
109
-				</div>
110
-				<div class="line">
111
-				  <label>정산상태</label>
112
-				  <div class="line_right">
113
-	  			  	<div class="fnSttlStNm"></div>
114
-				  </div>
115
-				</div>
116
-				<div class="line">
117
-				  <label>정산요청일자</label>
118
-				  <div class="line_right">
119
-				  	<div class="fnSttlReqDt"></div>
120
-				  </div>
121
-				</div>
122
-				<div class="line">
123
-				  <label>정산확정일자</label>
124
-				  <div class="line_right">
125
-				  	<div class="fnSttlDt"></div>
126
-				  </div>
127
-				</div>
128
-				<div class="line">
129
-				  <label>정산요청금액</label>
130
-				  <div class="line_right">
131
-				  	<div class="fnSttlReqAmt"></div>
132
-				  </div>
133
-				</div>
134
-				<div class="line">
135
-				  <label>미납금액</label>
136
-				  <div class="line_right">
137
-				  	<div class="fnUnpaidAmt"></div>
138
-				  </div>
139
-				</div>
140
-				<div class="line">
141
-				  <label>사용가능금액</label>
142
-				  <div class="line_right">
143
-				  	<div class="fnUseAmtTotal"></div>
144
-				  </div>
145
-				</div>
146
-				<div class="table_header">
147
-				  <h1><정산 상세 내역></h1>
148
-				</div>
149
-			</div>
150
-		  </div>
151
-		  <div id="ITP_LIST_MLOANMNG03010_VIEW_ITEM_AREA" class="scroll_area row-4-1">
152
-			  <ul id="ITP_LIST_MLOANMNG03010_VIEW_ITEM_ROWS" class="mb_0 panel-group"></ul>
153
-			  <div id="ITP_LIST_MLOANMNG03010_VIEW_ITEM_ROWCOPY" style="display: none;"><!-- style="display: grid;" -->
154
-				<li class="history_list7 item-row">
155
-				  <div>
156
-					<div class="left">
157
-					  <div class="nomal">
158
-						<label class="col_5">품목명</label>
159
-						<span>:</span>
160
-					    <div class="full fnItemNm"></div>
94
+			  <div class="content">
95
+				  <div class="content_fix">
96
+					<div class="line">
97
+					  <label>매장명</label>
98
+					  <div class="line_right">
99
+					  	<div class="fnStoreNm"></div>
100
+					  </div>      
101
+					</div>
102
+					<div class="line">
103
+					  <label>정산상태</label>
104
+					  <div class="line_right">
105
+		  			  	<div class="fnSttlStNm"></div>
161 106
 					  </div>
162 107
 					</div>
163
-					<div class="left">
164
-					  <div class="nomal">
165
-						<label class="col_5">단가금액</label>
166
-						<span>:</span>
167
-					    <div class="col_82 lit fnUnitAmt"></div>
168
-						<label class="col_0">정산구분</label>
169
-						<span>:</span>
170
-					    <div class="fnSttlDvsnNm"></div>
108
+					<div class="line">
109
+					  <label>정산요청일자</label>
110
+					  <div class="line_right">
111
+					  	<div class="fnSttlReqDt"></div>
171 112
 					  </div>
172 113
 					</div>
173
-					<div class="left">
174
-					  <div class="nomal">
175
-						<label class="col_5">발주수량</label>
176
-						<span>:</span>
177
-					    <div class="col_82 lit fnPodrQyt"></div>
178
-						<label class="lit">입고(수거)일자</label>
179
-						<span>:</span>
180
-					    <div class="lit col_64 fnWhsColDt"></div>
114
+					<div class="line">
115
+					  <label>정산확정일자</label>
116
+					  <div class="line_right">
117
+					  	<div class="fnSttlDt"></div>
181 118
 					  </div>
182 119
 					</div>
183
-					<div class="left">
184
-					  <div class="nomal">
185
-						<label class="lit">입고(수거)수량</label>
186
-						<span>:</span>
187
-					    <div class="col_5 lit fnWhsColQty"></div>
188
-						<label class="lit">입고(수거)금액</label>
189
-						<span>:</span>
190
-					    <div class="col_8 lit fnWhsColAmt"></div>
120
+					<div class="line">
121
+					  <label>정산요청금액</label>
122
+					  <div class="line_right">
123
+					  	<div class="fnSttlReqAmt"></div>
191 124
 					  </div>
192 125
 					</div>
193
-				  </div>
194
-				</li>
126
+					<div class="line">
127
+					  <label>미납금액</label>
128
+					  <div class="line_right">
129
+					  	<div class="fnUnpaidAmt"></div>
130
+					  </div>
131
+					</div>
132
+					<div class="line">
133
+					  <label>사용가능금액</label>
134
+					  <div class="line_right">
135
+					  	<div class="fnUseAmtTotal"></div>
136
+					  </div>
137
+					</div>
138
+					<div class="table_header">
139
+					  <h1><정산 상세 내역></h1>
140
+					</div>
141
+				</div>
142
+			  </div>
143
+			  <div id="ITP_LIST_MLOANMNG03010_VIEW_ITEM_AREA" class="scroll_area row-4-1">
144
+				  <ul id="ITP_LIST_MLOANMNG03010_VIEW_ITEM_ROWS" class="mb_0 panel-group"></ul>
145
+				  <div id="ITP_LIST_MLOANMNG03010_VIEW_ITEM_ROWCOPY" style="display: none;"><!-- style="display: grid;" -->
146
+					<li class="history_list7 item-row">
147
+					  <div>
148
+						<div class="left">
149
+						  <div class="nomal">
150
+							<label class="col_4">품목명</label>
151
+							<span>:</span>
152
+						    <div class="full fnItemNm"></div>
153
+						  </div>
154
+						</div>
155
+						<div class="left">
156
+						  <div class="nomal">
157
+							<label class="col_4">단가금액</label>
158
+							<span>:</span>
159
+						    <div class="col_82 lit fnUnitAmt"></div>
160
+							<label class="col_7">정산구분</label>
161
+							<span>:</span>
162
+						    <div class="fnSttlDvsnNm"></div>
163
+						  </div>
164
+						</div>
165
+						<div class="left">
166
+						  <div class="nomal">
167
+							<label class="col_4">발주수량</label>
168
+							<span>:</span>
169
+						    <div class="col_82 lit fnPodrQyt"></div>
170
+							<label class="col_7">입고(수거)일자</label>
171
+							<span>:</span>
172
+						    <div class="lit col_64 fnWhsColDt"></div>
173
+						  </div>
174
+						</div>
175
+						<div class="left">
176
+						  <div class="nomal">
177
+							<label class="col_7">입고(수거)수량</label>
178
+							<span>:</span>
179
+						    <div class="col_5 lit fnWhsColQty"></div>
180
+							<label class="col_7">입고(수거)금액</label>
181
+							<span>:</span>
182
+						    <div class="col_8 lit fnWhsColAmt"></div>
183
+						  </div>
184
+						</div>
185
+					  </div>
186
+					</li>
187
+				</div>
188
+			  </div>
189
+			<div class="button_bar">
190
+				<button id="ITP_BTN_MLOANMNG03010_VIEW_PAYMENT" class="btn_col_6 btn-m-orange PAY">결제</button>
191
+				<button id="ITP_BTN_MLOANMNG03010_VIEW_CANCEL_LIST" class="btn_col_3 btn-gray CLB">취소</button>
195 192
 			</div>
196
-		  </div>
197
-		<div class="button_bar">
198
-			<button id="ITP_BTN_MLOANMNG03010_VIEW_PAYMENT" class="btn_col_6 btn-m-orange PAY">결제</button>
199
-			<button id="ITP_BTN_MLOANMNG03010_VIEW_CANCEL_LIST" class="btn_col_3 btn-gray CLB">취소</button>
200
-		</div>
193
+		</form>
201 194
 	</div>
202 195
 	<div id="ITP_AJAX_MLOANMNG03010_PAY_CONTAINER" style="display: none;">
203 196
 		<form id="ITP_FORM_MLOANMNG03010_PAY" class="form-horizontal" onsubmit="return false;">
@@ -319,7 +312,7 @@
319 312
 			<div id="ITP_LIST_MLOANMNG03010_POP_STORE_AREA" class="popup_scroll">
320 313
 				<ul id="ITP_LIST_MLOANMNG03010_POP_STORE_ROWS" class="mb_0 panel-group itp_nav"></ul>
321 314
 				<div id="ITP_LIST_MLOANMNG03010_POP_STORE_ROWCOPY" style="display: none;">
322
-					<li class="row_2">
315
+					<li class="row_2 item-row">
323 316
 						<div class="scroll_left">
324 317
 							<div class="con_2 fnStoreNm"></div>
325 318
 							<div class="con_2 wichi fnStoreStNm"></div>

+ 30 - 31
src/main/webapp/mobile/app/mrtnmng/MRTNMNG04010.html

@@ -1,6 +1,6 @@
1 1
 <section id="ITP_MOBILE_MRTNMNG04010">
2 2
 	<div id="ITP_AJAX_MRTNMNG04010_LIST_CONTAINER" style="display: none;">
3
-		<form id="ITP_FORM_MRTNMNG04010_LIST_SEARCH" class="form-horizontal" onsubmit="return false;">
3
+		<form id="ITP_FORM_MRTNMNG04010_LIST_SEARCH" class="area_full form-horizontal" onsubmit="return false;">
4 4
 			<input type="hidden" id="ITP_FORM_MPOMNG02010_LIST_SEARCH_BRAND_ID" name="sbrandId" value="">
5 5
 			<input type="hidden" id="ITP_FORM_MPOMNG02010_LIST_SEARCH_STORE_ID" name="sstoreId" value="">
6 6
 			<div class="content">
@@ -63,37 +63,37 @@
63 63
 			<div id="ITP_LIST_MRTNMNG04010_LIST_ITEM_AREA" class="scroll_area row-9">
64 64
 				<ul id="ITP_LIST_MRTNMNG04010_LIST_ITEM_ROWS" class="mb_0 panel-group"></ul>
65 65
 				<div id="ITP_LIST_MRTNMNG04010_LIST_ITEM_ROWCOPY" style="display: none;">
66
-					<li class="history_list7">
66
+					<li class="history_list7 item-row">
67 67
 						<div class="left">
68 68
 							<div class="nomal">
69
-								<label class="col_1">반품발주일자</label>
69
+								<label class="col_6">반품발주일자</label>
70 70
 								<span>:</span>
71
-								<div class="fnRtnOdrRegDt">2022.10.10</div>
72
-								<div class="col_0 fnColDvsnNm">(홍길동)</div>
71
+								<div class="auto fnRtnOdrRegDt">2022.10.10</div>
72
+								<div class="fnColDvsnNm">(홍길동)</div>
73 73
 							</div>
74 74
 						</div>
75 75
 						<div class="left">
76 76
 							<div class="nomal">
77
-								<label>반품발주상태</label>
77
+								<label class="col_6">반품발주상태</label>
78 78
 								<span>:</span>
79 79
 								<div class="col_6 fnRtnOdrStNm">발주가능</div>
80 80
 								<label>납품장소명</label>
81
-								<span class="mg0">:</span>
81
+								<span>:</span>
82 82
 								<div class="fnWhsNm">테스트 브랜드 창고명 ㅁㅇㄴㄻㄴ</div>
83 83
 							</div>
84 84
 						</div>
85 85
 						<div class="left">
86 86
 							<div class="nomal">
87
-								<label>반품발주정보</label>
87
+								<label class="col_6">반품발주정보</label>
88 88
 								<span>:</span>
89
-								<div class="col_0 fnRtnDodrItemQty">품목수</div>
89
+								<div class="auto fnRtnDodrItemQty">품목수</div>
90 90
 								<span>-</span>
91 91
 								<div class="fnRtnDodrTotalAmt">ㅁㄴㅇㄻㄴㅇㄻㄴㅇㄹ</div>
92 92
 							</div>
93 93
 						</div>
94 94
 						<div class="left">
95 95
 							<div class="nomal">
96
-								<label>반품입고장소</label>
96
+								<label class="col_6">반품입고장소</label>
97 97
 								<span>:</span>
98 98
 								<div class="full fnRtnWhsNm">ㅌ테스트 브랜드 확인</div>
99 99
 							</div>
@@ -104,7 +104,7 @@
104 104
 		</form>
105 105
 	</div>
106 106
 	<div id="ITP_AJAX_MRTNMNG04010_VIEW_CONTAINER" style="display: none;">
107
-		<form id="ITP_FORM_MRTNMNG04010_VIEW" class="form-horizontal" onsubmit="return false;">
107
+		<form id="ITP_FORM_MRTNMNG04010_VIEW" class="put_btn form-horizontal" onsubmit="return false;">
108 108
 			<input type="hidden" id="ITP_FORM_MRTNMNG04010_VIEW_VIEW_CD" name="viewCd" value="C">
109 109
 			<div class="content">
110 110
 				<div class="content_fix">
@@ -114,25 +114,25 @@
114 114
 					<div class="line">
115 115
 						<label>반품발주일자</label>
116 116
 						<div class="line_right">
117
-							<div class="fnRtnOdrRegDt">2022.10.10</div>
117
+							<div class="fnRtnOdrRegDt"></div>
118 118
 						</div>
119 119
 					</div>
120 120
 					<div class="line">
121 121
 						<label>반품발주금액</label>
122 122
 						<div class="line_right">
123
-							<div class="fnRtnDodrTotalAmt">1,000,000</div>
123
+							<div class="fnRtnDodrTotalAmt"></div>
124 124
 						</div>
125 125
 					</div>
126 126
 					<div class="line">
127 127
 						<label>반품장소</label>
128 128
 						<div class="line_right">
129
-							<div class="fnRtnWhsNm">ㅁㄴㅇㄹㄴㄻㄴㄻㄹㅇㄴㄻㄴㅇㄻ</div>
129
+							<div class="fnRtnWhsNm"></div>
130 130
 						</div>
131 131
 					</div>
132 132
 					<div class="line">
133 133
 						<label>반품입고장소</label>
134 134
 						<div class="line_right">
135
-							<div class="fnWhsNm">ㄴㅇㄻㄴㅇㄻㄴㄹㄴㅇㄴㄻㄴㅁ</div>
135
+							<div class="fnWhsNm"></div>
136 136
 						</div>
137 137
 					</div>
138 138
 					<div class="table_header">
@@ -143,50 +143,49 @@
143 143
 			<div id="ITP_LIST_MRTNMNG04010_VIEW_ITEM_AREA" class="scroll_area row-3">
144 144
 				<ul id="ITP_LIST_MRTNMNG04010_VIEW_ITEM_ROWS" class="mb_0 panel-group"></ul>
145 145
 				<div id="ITP_LIST_MRTNMNG04010_VIEW_ITEM_ROWCOPY" style="display: none;">
146
-					<li class="history_list4">
146
+					<li class="history_list4 item-row">
147 147
 					  <div class="left">
148 148
 						<div class="nomal">
149
-						  <label class="col_3">품목명</label>
149
+						  <label class="col_4">품목명</label>
150 150
 						  <span>:</span>
151
-						  <div class="full fnItemNm">asdfasdfasffasf</div>
151
+						  <div class="full fnItemNm"></div>
152 152
 						</div>
153 153
 					  </div>
154 154
 					   <div class="left">
155 155
 						<div class="nomal">
156
-						  <label class="col_3">단가</label>
156
+						  <label class="col_4">단가</label>
157 157
 						  <span>:</span>
158
-						  <div class="fnRtnOdrQty">1,000,000</div>
158
+						  <div class="fnRtnOdrQty"></div>
159 159
 						  <label class="sub_info">반품구분</label>
160 160
 						  <span>:</span>
161
-						  <div class="fnRtnOdrAmt">사용가능</div>
161
+						  <div class="fnRtnOdrAmt"></div>
162 162
 						</div>
163 163
 					  </div>
164 164
 					  <div class="left">
165 165
 						<div class="nomal">
166
-						  <label class="col_1">반품수량</label>
166
+						  <label class="col_4">반품수량</label>
167 167
 						  <span>:</span>
168
-						  <div class="fnRtnOdrQty">10,000</div>
168
+						  <div class="fnRtnOdrQty"></div>
169 169
 						  <label class="sub_info">반품금액</label>
170 170
 						  <span>:</span>
171
-						  <div class="fnRtnOdrAmt">12,000,000원</div>
171
+						  <div class="fnRtnOdrAmt"></div>
172 172
 						</div>
173 173
 					  </div>
174 174
 					  <div class="left">
175 175
 						<div class="nomal">
176
-						  <label class="col_1">사유구분 </label>
176
+						  <label class="col_4">사유구분 </label>
177 177
 						  <span>:</span>
178
-						  <div class="full fnUnitAmt">어떤사유길다란거</div>
178
+						  <div class="full fnUnitAmt"></div>
179 179
 						</div>
180 180
 					  </div>
181 181
 					  <div class="left">
182 182
 						<div class="nomal">
183
-						  <label class="col_1">반품사유 </label>
183
+						  <label class="col_4">반품사유 </label>
184 184
 						  <span>:</span>
185
-						  <div class="full fnUnitAmt">어쩌고저쩌곰ㅇㄻㄴㄹㅇㅁㄹㅇㄴ</div>
185
+						  <div class="full fnUnitAmt"></div>
186 186
 						</div>
187 187
 					  </div>
188 188
 					</li>
189
-					
190 189
 				</div>
191 190
 			</div>
192 191
 			<div class="button_bar">
@@ -220,10 +219,10 @@
220 219
 			<div id="ITP_LIST_MRTNMNG04010_POP_WHS_AREA" class="popup_scroll">
221 220
 				<ul id="ITP_LIST_MRTNMNG04010_POP_WHS_ROWS" class="mb_0 panel-group itp_nav"></ul>
222 221
 				<div id="ITP_LIST_MRTNMNG04010_POP_WHS_ROWCOPY" style="display:none;">
223
-					<li class="list-row row_2">
222
+					<li class="list-row row_2 item-row">
224 223
 						<div class="scroll_left">
225 224
 							<div class="con_2 fnWhsNm"></div>
226
-							<div class="con_2 sub fnLocationNm"></div>
225
+							<div class="con_2 wichi fnLocationNm"></div>
227 226
 						</div>
228 227
 						<div class="scroll_right">
229 228
 							<button id="ITP_BTN_MRTNMNG04010_POP_WHS_CHOICE" class="fnWhsId" data-whs-id="">선택</button>

+ 8 - 10
src/main/webapp/mobile/app/mrtnmng/MRTNMNG05010.html

@@ -1,6 +1,6 @@
1 1
 <section id="ITP_MOBILE_MRTNMNG05010">
2 2
 	<div id="ITP_AJAX_MRTNMNG05010_LIST_CONTAINER" >
3
-		<form id="ITP_FORM_MRTNMNG05010_LIST_SEARCH" class="form-horizontal" onsubmit="return false;">
3
+		<form id="ITP_FORM_MRTNMNG05010_LIST_SEARCH" class="put_btn form-horizontal" onsubmit="return false;">
4 4
 			<input type="hidden" id="ITP_FORM_MRTNMNG05010_LIST_SEARCH_BRAND_ID" name="sbrandId" value="">
5 5
 			<input type="hidden" id="ITP_FORM_MRTNMNG05010_LIST_SEARCH_STORE_ID" name="sstoreId" value="">
6 6
 			<input type="hidden" id="ITP_FORM_MRTNMNG05010_LIST_SEARCH_IDX" name="sidx" value="0">
@@ -65,12 +65,10 @@
65 65
 					</div>
66 66
 				</div>
67 67
 			</div>
68
-		</form>
69
-		<form id="ITP_FORM_MRTNMNG05010_LIST_MODIFY" class="form-horizontal" onsubmit="return false;">
70 68
 			<div id="ITP_LIST_MRTNMNG05010_LIST_ITEM_AREA" class="scroll_area row-10">
71 69
 				<ul id="ITP_LIST_MRTNMNG05010_LIST_ITEM_ROWS" class="mb_0 panel-group"></ul>
72 70
 				<div id="ITP_LIST_MRTNMNG05010_LIST_ITEM_ROWCOPY" style="display: none;">
73
-					<li class="history_list2 item-row">
71
+					<li class="history_list4 item-row">
74 72
 						<div class="left">
75 73
 							<div class="nomal">
76 74
 								<label>반품번호 </label>
@@ -80,7 +78,7 @@
80 78
 						</div>
81 79
 						<div class="left">
82 80
 							<div class="nomal">
83
-								<label class="history_label">반품예정일</label>
81
+								<label class="">반품예정일</label>
84 82
 								<span>:</span>
85 83
 								<div class="fnColSchDt history_info"></div>
86 84
 							</div>
@@ -97,17 +95,17 @@
97 95
 						</div>
98 96
 						<div class="left">
99 97
 							<div class="nomal">
100
-								<label>품목 </label>
98
+								<label class="">품목 </label>
101 99
 								<span>:</span>
102 100
 								<div class="full fnItemNm"></div>
103 101
 							</div>
104 102
 						</div>
105 103
 						<div class="left">
106 104
 							<div class="nomal">
107
-								<label class="col_0">반품요청수량</label>
105
+								<label class="col_6">반품요청수량</label>
108 106
 								<span>:</span>
109 107
 								<div class=" fnColReqQty"></div>
110
-								<label class="col_0">반품발주수량</label>
108
+								<label class="col_6">반품발주수량</label>
111 109
 								<span>:</span>
112 110
 								<input class="" id="ITP_FORM_MRTNMNG05010_LIST_COL_QTY" type="text" name="colQty">
113 111
 							</div>
@@ -146,7 +144,7 @@
146 144
 			<div id="ITP_POP_MRTNMNG05010_LIST_SPPLY_AREA" class="popup_scroll">
147 145
 				<ul id="ITP_POP_MRTNMNG05010_LIST_SPPLY_ROWS" class="mb_0 panel-group itp_nav"></ul>
148 146
 				<div id="ITP_POP_MRTNMNG05010_LIST_SPPLY_ROWCOPY" style="display: none;">
149
-					<li class="row_2">
147
+					<li class="row_2 item-row">
150 148
 						<div class="scroll_left">
151 149
 							<div class="con_2 fnSpplyNm">공급업체 명A</div>
152 150
 							<div class="con_2 wichi fnStNm">($)</div>
@@ -183,7 +181,7 @@
183 181
 			<div id="ITP_LIST_MRTNMNG05010_POP_WHS_AREA" class="popup_scroll">
184 182
 				<ul id="ITP_LIST_MRTNMNG05010_POP_WHS_ROWS" class="mb_0 panel-group itp_nav"></ul>
185 183
 				<div id="ITP_LIST_MRTNMNG05010_POP_WHS_ROWCOPY" style="display: none;">
186
-					<li class="list-row row_2">
184
+					<li class="list-row row_2 item-row">
187 185
 						<div class="scroll_left">
188 186
 							<div class="con_2 fnWhsNm">브랜드 창고 명A</div>
189 187
 							<div class="con_2 wichi fnLocationNm">(상세위치내용)</div>

+ 8 - 8
src/main/webapp/mobile/app/mrtnmng/MRTNMNG06010.html

@@ -1,6 +1,6 @@
1 1
 <section id="ITP_MOBILE_MRTNMNG06010">
2 2
 	<div id="ITP_AJAX_MRTNMNG06010_LIST_CONTAINER" >
3
-		<form id="ITP_FORM_MRTNMNG06010_LIST_SEARCH" class="form-horizontal" onsubmit="return false;">
3
+		<form id="ITP_FORM_MRTNMNG06010_LIST_SEARCH" class="area_full form-horizontal" onsubmit="return false;">
4 4
 			<input type="hidden" id="ITP_FORM_MRTNMNG06010_LIST_SEARCH_BRAND_ID" name="sbrandId" value="">
5 5
 			<input type="hidden" id="ITP_FORM_MRTNMNG06010_LIST_SEARCH_STORE_ID" name="sstoreId" value="">
6 6
 			<div class="content">
@@ -77,9 +77,9 @@
77 77
 						</div>
78 78
 						<div class="left">
79 79
 							<div class="nomal">
80
-								<label class="history_label">반품예정일</label>
80
+								<label class="">반품예정일</label>
81 81
 								<span>:</span>
82
-								<div class="fn_info fnColSchDt"></div>
82
+								<div class="fnColSchDt"></div>
83 83
 							</div>
84 84
 						</div>
85 85
 						<div class="left">
@@ -87,7 +87,7 @@
87 87
 								<label>공급업체</label>
88 88
 								<span>:</span>
89 89
 								<div class="fnSpplyNm"></div>
90
-								<label class="sub_info">납품장소</label>
90
+								<label class="">납품장소</label>
91 91
 								<span>:</span>
92 92
 								<div class="fnRtnWhsNm"></div>
93 93
 							</div>
@@ -103,10 +103,10 @@
103 103
 							<div class="nomal">
104 104
 								<label>발주수량</label>
105 105
 								<span>:</span>
106
-								<div class="col_5 fnColReqQty"></div>
106
+								<div class="fnColReqQty"></div>
107 107
 								<label class="sub_info">입고수량</label>
108 108
 								<span>:</span>
109
-								<div class="fnRodrQty">10</div>
109
+								<div class="fnRodrQty"></div>
110 110
 							</div>
111 111
 						</div>
112 112
 					</li>
@@ -139,7 +139,7 @@
139 139
 			<div id="ITP_POP_MRTNMNG06010_LIST_SPPLY_AREA" class="popup_scroll">
140 140
 				<ul id="ITP_POP_MRTNMNG06010_LIST_SPPLY_ROWS" class="mb_0 panel-group itp_nav"></ul>
141 141
 				<div id="ITP_POP_MRTNMNG06010_LIST_SPPLY_ROWCOPY" style="display: none;">
142
-					<li class="row_2">
142
+					<li class="row_2 item-row">
143 143
 						<div class="scroll_left">
144 144
 							<div class="con_2 fnSpplyNm">공급업체 명A</div>
145 145
 							<div class="con_2 wichi fnStNm">($)</div>
@@ -176,7 +176,7 @@
176 176
 			<div id="ITP_LIST_MRTNMNG06010_POP_WHS_AREA" class="popup_scroll">
177 177
 				<ul id="ITP_LIST_MRTNMNG06010_POP_WHS_ROWS" class="mb_0 panel-group itp_nav"></ul>
178 178
 				<div id="ITP_LIST_MRTNMNG06010_POP_WHS_ROWCOPY" style="display: none;">
179
-					<li class="row_2">
179
+					<li class="row_2 item-row">
180 180
 						<div class="scroll_left">
181 181
 							<div class="con_2 fnWhsNm">브랜드 창고 명A</div>
182 182
 							<div class="con_2 wichi fnLocationNm">(상세위치내용)</div>

+ 12 - 12
src/main/webapp/mobile/app/mstockmng/MSTOCKMNG01010.html

@@ -1,6 +1,6 @@
1 1
 <section id="ITP_MOBILE_MSTOCKMNG01010">
2 2
 	<div id="ITP_AJAX_MSTOCKMNG01010_LIST_CONTAINER">
3
-	  <form id="ITP_FORM_MSTOCKMNG01010_LIST_SEARCH" class="form-horizontal" onsubmit="return false;">
3
+	  <form id="ITP_FORM_MSTOCKMNG01010_LIST_SEARCH" class="area_full form-horizontal" onsubmit="return false;">
4 4
 		  <input type="hidden" id="ITP_FORM_MSTOCKMNG01010_LIST_SEARCH_BRAND_ID" name="sbrandId" value="">
5 5
 		  <input type="hidden" id="ITP_FORM_MSTOCKMNG01010_LIST_SEARCH_STORE_ID" name="sstoreId" value="">
6 6
 		  <div class="content">
@@ -48,47 +48,47 @@
48 48
 			<div id="ITP_LIST_MSTOCKMNG01010_LIST_ITEM_AREA" class="scroll_area row-12">
49 49
 			  <ul id="ITP_LIST_MSTOCKMNG01010_LIST_ITEM_ROWS" class="mb_0 panel-group"></ul>
50 50
 			  <div id="ITP_LIST_MSTOCKMNG01010_LIST_ITEM_ROWCOPY" style="display: none;"><!-- style="display: grid;" -->
51
-				<li class="history_list2 item-row">
51
+				<li class="history_list4 item-row">
52 52
 					<div class="left">
53 53
 					  <div class="nomal over">
54
-						<label class="col_3">창고명</label>
54
+						<label class="col_4">창고명</label>
55 55
 						<span>:</span>
56
-					    <div class="col_0 fnWhsNm"></div>
57
-					    <div class="col_0 fnLocationNm"></div>
56
+					    <div class="auto fnWhsNm"></div>
57
+					    <div class="text_two fnLocationNm"></div>
58 58
 					  </div>
59 59
 					</div>
60 60
 				    <div class="left">
61 61
 					  <div class="nomal">
62
-						  <label class="col_3">품목번호</label>
62
+						  <label class="col_4">품목번호</label>
63 63
 						  <span>:</span>
64 64
 						  <div class="full fnItemId"></div>
65 65
 					  </div>
66 66
 				    </div>
67 67
 					<div class="left">
68 68
 					  <div class="nomal">
69
-				    	<label class="col_3">품목명</label>
69
+				    	<label class="col_4">품목명</label>
70 70
 				    	<span>:</span>
71 71
 		  		  		<div class="full fnItemNm"></div>
72 72
 					  </div>
73 73
 					</div>
74 74
 					<div class="left">
75 75
 					  <div class="nomal">
76
-						<label class="col_3">단위</label>
76
+						<label class="col_4">단위</label>
77 77
 						<span>:</span>
78 78
 					    <div class="fnUnit"></div>
79 79
 						<label>현재고수량</label>
80 80
 						<span>:</span>
81
-					    <div class="col_9 fnStckQty"></div>
81
+					    <div class="fnStckQty"></div>
82 82
 					  </div>
83 83
 					</div>
84 84
 					<div class="left">
85 85
 					  <div class="nomal">
86
-						<label>적정재고수량</label>
86
+						<label class="col_6">적정재고수량</label>
87 87
 						<span>:</span>
88 88
 					    <div class="fnPrpStckQty"></div>
89
-						<label>안전재고비율(%)</label>
89
+						<label class="col_8">안전재고비율(%)</label>
90 90
 						<span>:</span>
91
-					    <div class="col_2 fnSftStckRt"></div>
91
+					    <div class="fnSftStckRt"></div>
92 92
 					  </div>
93 93
 					</div>
94 94
 				</li>

+ 4 - 4
src/main/webapp/mobile/app/mstockmng/MSTOCKMNG02010.html

@@ -1,6 +1,6 @@
1 1
 <section id="ITP_MOBILE_MSTOCKMNG02010">
2 2
 	<div id="ITP_AJAX_MSTOCKMNG02010_LIST_CONTAINER">
3
-	 <form id="ITP_FORM_MSTOCKMNG02010_LIST_SEARCH" class="form-horizontal" onsubmit="return false;">
3
+	 <form id="ITP_FORM_MSTOCKMNG02010_LIST_SEARCH" class="put_btn form-horizontal" onsubmit="return false;">
4 4
 		 <input type="hidden" id="ITP_FORM_MSTOCKMNG02010_LIST_SEARCH_BRAND_ID" name="brandId" value="">
5 5
 		 <input type="hidden" id="ITP_FORM_MSTOCKMNG02010_LIST_SEARCH_STORE_ID" name="storeId" value="">
6 6
 		  <div class="content">
@@ -53,17 +53,17 @@
53 53
 			<div id="ITP_LIST_MSTOCKMNG02010_LIST_ITEM_AREA" class="scroll_area row-4">
54 54
 			  <ul id="ITP_LIST_MSTOCKMNG02010_LIST_ITEM_ROWS" class="mb_0 panel-group"></ul>
55 55
 			  <div id="ITP_LIST_MSTOCKMNG02010_LIST_ITEM_ROWCOPY" style="display: none;">
56
-				<li class="history_list8 item-row">
56
+				<li class="history_list10 item-row">
57 57
 					<div class="left">
58 58
 					  <div class="nomal">
59
-						<label class="col_3">품목번호</label>
59
+						<label class="">품목번호</label>
60 60
 						<span>:</span>
61 61
 					    <div class="full fnItemId" data-normal-yn="Y"></div>
62 62
 					  </div>
63 63
 					</div>
64 64
 					<div class="left">
65 65
 					  <div class="nomal">
66
-						<label class="col_3">품목명</label>
66
+						<label class="">품목명</label>
67 67
 						<span>:</span>
68 68
 					    <div class="full fnItemNm"></div>
69 69
 					  </div>

+ 8 - 3
src/main/webapp/mobile/css/style.css

@@ -488,7 +488,7 @@ input .day {margin: 18%; width: 45%; height: 80px; float: right;}
488 488
 
489 489
 .scroll_area li .history_info {width: auto;}
490 490
 .scroll_area li .left {width:100%; height:28px; margin-top:0px;}
491
-.scroll_area li .left.btn_list{position:relative; left:-7px;}
491
+.scroll_area li .left.btn_list{width:calc(100% - 45px);}
492 492
 .scroll_area li .left div {display: inline-block;}
493 493
 .scroll_area li .left label{font-size: 1.1rem;}
494 494
 .scroll_area li .left .thick {float:left;  margin: 8px 20px; font-size: 1rem; text-align: left; width: 50%; font-weight: 600;}
@@ -528,7 +528,7 @@ input .day {margin: 18%; width: 45%; height: 80px; float: right;}
528 528
 .scroll_area li .left .nomal .btn_bar button{width: 25px; height: 30px; font-size: 1rem; padding: 0;}
529 529
 .scroll_area li .left .nomal .btn_bar .col_0{min-width: auto; margin: 5px 20px;}
530 530
 
531
-.scroll_area li .left .nomal .m_btn_bar{position: relative; display:inline-flex; width: 100px; height:25px; font-size: 12pt;}
531
+.scroll_area li .left .nomal .m_btn_bar{position: relative; display:inline-flex; width: 80px; height:25px; font-size: 12pt; margin-left:10px;}
532 532
 .scroll_area li .left .nomal .m_btn_bar button{width: 20px; height: 25px; font-size: 12pt; padding: 0; border:1px solid #E0B8AB; background: #e1cac1; color:#fff;}
533 533
 .scroll_area li .left .nomal .m_btn_bar button div{position:relative; width:10px; top:-2px; left:2px;}
534 534
 .scroll_area li .left .nomal .m_btn_bar .col_0{width: 40px; text-align:center; border-top:1px solid #E0B8AB; border-bottom:1px solid #E0B8AB;}
@@ -540,13 +540,18 @@ input .day {margin: 18%; width: 45%; height: 80px; float: right;}
540 540
 .scroll_area li .left .nomal label.col_3{min-width: 50px;}
541 541
 .scroll_area li .left .nomal label.col_4{min-width: 65px;}
542 542
 .scroll_area li .left .nomal label.col_6{min-width: 95px;}
543
+.scroll_area li .left .nomal label.col_7{min-width: 105px;}
544
+.scroll_area li .left .nomal label.col_8{min-width: 115px;}
543 545
 .scroll_area li .left .nomal.over{text-overflow:ellipsis; overflow:hidden; white-space:nowrap;}
544 546
 .scroll_area li .left .nomal i{width: 50px; text-align: center;}
545 547
 .scroll_area li .left .nomal div{text-overflow:ellipsis; overflow:hidden; white-space:nowrap; text-align:left; font-weight: 700; font-size: 12pt; width:calc(50% - 85px);}
546 548
 .scroll_area li .left .nomal .text_6{width:calc(50% - 108px);}
549
+.scroll_area li .left .nomal .text_4{width:calc(50% - 69px);}
550
+.scroll_area li .left .nomal .text_btn{width:calc(50% - 56px);}
551
+.scroll_area li .left .nomal .text_two{width:calc(50% - 56px);}
547 552
 
548 553
 .scroll_area li .left .nomal div.full{width:calc(100% - 85px);}
549
-.scroll_area li .left .nomal div.full_s{width:200px;}
554
+.scroll_area li .left .nomal div.full_s{width:calc(100% - 45px);}
550 555
 .scroll_area li .left .nomal div.auto{width:auto;}
551 556
 
552 557
 

+ 1 - 1
src/main/webapp/mobile/js/app/mcollmng/ITP_MCOLLMNG01010.js

@@ -35,7 +35,7 @@ let mobPageObj = {
35 35
 
36 36
 			// 조회일자 지정
37 37
 			$('#ITP_MOBILE_MCOLLMNG01010 .itp_input.date').datepicker(ITP_DATE_LANGUAGE);
38
-			$('#ITP_FORM_MCOLLMNG01010_LIST_SEARCH_FROM_DT').datepicker('setDate', itp_fn_date_add('M', -7));
38
+			$('#ITP_FORM_MCOLLMNG01010_LIST_SEARCH_FROM_DT').datepicker('setDate', itp_fn_date_add('D', -7));
39 39
 			$('#ITP_FORM_MCOLLMNG01010_LIST_SEARCH_TO_DT').datepicker('setDate', itp_fn_date_add('M', 0));
40 40
 		},
41 41
 		info: function() {

+ 3 - 3
src/main/webapp/mobile/js/app/mcollmng/ITP_MCOLLMNG02010.js

@@ -36,7 +36,7 @@ let mobPageObj = {
36 36
 
37 37
 			// 조회일자 지정
38 38
 			$('#ITP_MOBILE_MCOLLMNG02010 .itp_input.date').datepicker(ITP_DATE_LANGUAGE);
39
-			$('#ITP_FORM_MCOLLMNG02010_LIST_SEARCH_FROM_DT').datepicker('setDate', itp_fn_date_add('M', -7));
39
+			$('#ITP_FORM_MCOLLMNG02010_LIST_SEARCH_FROM_DT').datepicker('setDate', itp_fn_date_add('D', -7));
40 40
 			$('#ITP_FORM_MCOLLMNG02010_LIST_SEARCH_TO_DT').datepicker('setDate', itp_fn_date_add('M', 0));
41 41
 		},
42 42
 		info: function() {
@@ -53,8 +53,8 @@ let mobPageObj = {
53 53
 			$('button[id^="ITP_BTN_MCOLLMNG02010_LIST"]').on('click', function() {
54 54
 				var id = $(this).attr('id');
55 55
 				switch (id) {
56
-					case 'ITP_BTN_MCOLLMNG02010_LIST_SEARCH_WHS_NM'	: mobPopObj.popWhsNm.init(); 		break;
57
-					case 'ITP_BTN_MCOLLMNG02010_LIST_DELETE_WHS_NM'	: mobPopObj.popWhsNm.delete(); 		break;
56
+					case 'ITP_BTN_MCOLLMNG02010_LIST_SEARCH_WHS_NM'	: mobPopObj.popWhsNm.init(); 	break;
57
+					case 'ITP_BTN_MCOLLMNG02010_LIST_DELETE_WHS_NM'	: mobPopObj.popWhsNm.delete(); 	break;
58 58
 					case 'ITP_BTN_MCOLLMNG02010_LIST_SEARCH'		: mobContObj.list.search();		break;
59 59
 					case 'ITP_BTN_MCOLLMNG02010_LIST_CREATE'		: mobContObj.list.colPrint();	break;
60 60
 				}

+ 3 - 3
src/main/webapp/mobile/js/app/mcollmng/ITP_MCOLLMNG03010.js

@@ -35,7 +35,7 @@ let mobPageObj = {
35 35
 
36 36
 			// 조회일자 지정
37 37
 			$('#ITP_MOBILE_MCOLLMNG03010 .itp_input.date').datepicker(ITP_DATE_LANGUAGE);
38
-			$('#ITP_FORM_MCOLLMNG03010_LIST_SEARCH_FROM_DT').datepicker('setDate', itp_fn_date_add('M', -7));
38
+			$('#ITP_FORM_MCOLLMNG03010_LIST_SEARCH_FROM_DT').datepicker('setDate', itp_fn_date_add('D', -7));
39 39
 			$('#ITP_FORM_MCOLLMNG03010_LIST_SEARCH_TO_DT').datepicker('setDate', itp_fn_date_add('M', 0));
40 40
 		},
41 41
 		info: function() {
@@ -52,8 +52,8 @@ let mobPageObj = {
52 52
 			$('button[id^="ITP_BTN_MCOLLMNG03010_LIST"]').on('click', function() {
53 53
 				var id = $(this).attr('id');
54 54
 				switch (id) {
55
-					case 'ITP_BTN_MCOLLMNG03010_LIST_SEARCH_WHS_NM'	: mobPopObj.popWhsNm.init(); 		break;
56
-					case 'ITP_BTN_MCOLLMNG03010_LIST_DELETE_WHS_NM'	: mobPopObj.popWhsNm.delete(); 		break;
55
+					case 'ITP_BTN_MCOLLMNG03010_LIST_SEARCH_WHS_NM'	: mobPopObj.popWhsNm.init(); 	break;
56
+					case 'ITP_BTN_MCOLLMNG03010_LIST_DELETE_WHS_NM'	: mobPopObj.popWhsNm.delete(); 	break;
57 57
 					case 'ITP_BTN_MCOLLMNG03010_LIST_SEARCH'		: mobContObj.list.search();		break;
58 58
 					case 'ITP_BTN_MCOLLMNG03010_LIST_COL_VIEW'		: mobContObj.list.colPrint();	break;
59 59
 				}

+ 3 - 5
src/main/webapp/mobile/js/app/mordmng/ITP_MORDMNG01010.js

@@ -35,7 +35,7 @@ let mobPageObj = {
35 35
 
36 36
 			// 조회일자 지정
37 37
 			$('#ITP_MOBILE_MORDMNG01010 .itp_input.date').datepicker(ITP_DATE_LANGUAGE);
38
-			$('#ITP_FORM_MORDMNG01010_LIST_SEARCH_FROM_DT').datepicker('setDate', itp_fn_date_add('M', -7));
38
+			$('#ITP_FORM_MORDMNG01010_LIST_SEARCH_FROM_DT').datepicker('setDate', itp_fn_date_add('D', -7));
39 39
 			$('#ITP_FORM_MORDMNG01010_LIST_SEARCH_TO_DT').datepicker('setDate', itp_fn_date_add('M', 0));
40 40
 		},
41 41
 		info: function() {
@@ -67,7 +67,6 @@ let mobPageObj = {
67 67
 				return false;
68 68
 			});
69 69
 
70
-			$(document).off('click');
71 70
 			$(document).on('click', '#ITP_LIST_MORDMNG01010_LIST_ITEM_ROWS li', function() {
72 71
 				var item = mobContObj.list.rows[$(this).index()];
73 72
 				mobContObj.view.init(item);
@@ -131,15 +130,14 @@ let mobContObj = {
131 130
 					$li.find('.fnPodrDt').text(item.podrDt);
132 131
 					$li.find('.fnDlvReqDt').text(item.dlvReqDt);
133 132
 					$li.find('.fnWhsNm').text(item.whsNm);
134
-					$li.find('.fnPodrTotalAmt').text(CommonObj.comma.set(item.podrTotalAmt));
135
-					$li.find('.fnPodrItemQty').text(CommonObj.currency.add(item.podrItemQty, '개'));
133
+					$li.find('.fnPodrTotalAmt').text(CommonObj.currency.add(item.podrTotalAmt));
134
+					$li.find('.fnPodrItemQty').text(CommonObj.comma.set(item.podrItemQty));
136 135
 					mobContObj.list.rows.push(item);
137 136
 				});
138 137
 			};
139 138
 			const param = $('#ITP_FORM_MORDMNG01010_LIST_SEARCH').serializeObject();
140 139
 			param.gridPage = mobContObj.list.listPage;
141 140
 			param.gridSize = mobile_list_size;
142
-			console.log(JSON.stringify(param));
143 141
 			fn_ajax_call(API_MOBILE_GRID_LIST, JSON.stringify(param), callbackFn, 'POST');
144 142
 		}
145 143
 	},

+ 2 - 3
src/main/webapp/mobile/js/app/mordmng/ITP_MORDMNG02010.js

@@ -36,8 +36,8 @@ let mobPageObj = {
36 36
 
37 37
 			// 조회일자 지정
38 38
 			$('#ITP_MOBILE_MORDMNG02010 .itp_input.date').datepicker(ITP_DATE_LANGUAGE);
39
-			$('#ITP_FORM_MORDMNG02010_LIST_SEARCH_TO_DT').datepicker('setDate', itp_fn_date_add('M', -7));
40
-			$('#ITP_FORM_MORDMNG01010_LIST_SEARCH_TO_DT').datepicker('setDate', itp_fn_date_add('M', 0));
39
+			$('#ITP_FORM_MORDMNG02010_LIST_SEARCH_FROM_DT').datepicker('setDate', itp_fn_date_add('D', -7));
40
+			$('#ITP_FORM_MORDMNG02010_LIST_SEARCH_TO_DT').datepicker('setDate', itp_fn_date_add('M', 0));
41 41
 		},
42 42
 		info: function() {
43 43
 			$('input:hidden[id$="_BRAND_ID"]').val(fn_make_user_info.get('brandId'));
@@ -70,7 +70,6 @@ let mobPageObj = {
70 70
 				return false;
71 71
 			});
72 72
 
73
-			$(document).off('click');
74 73
 			// $(document).on('click', '#ITP_LIST_MORDMNG02010_LIST_ITEM_ROWS li', function() {
75 74
 			// 	mobContObj.list.iChoice = $(this).index();
76 75
 			// });

+ 1 - 2
src/main/webapp/mobile/js/app/mordmng/ITP_MORDMNG03010.js

@@ -35,7 +35,7 @@ let mobPageObj = {
35 35
 
36 36
 			// 조회일자 지정
37 37
 			$('#ITP_MOBILE_MORDMNG03010 .itp_input.date').datepicker(ITP_DATE_LANGUAGE);
38
-			$('#ITP_FORM_MORDMNG03010_LIST_SEARCH_FROM_DT').datepicker('setDate', itp_fn_date_add('M', -7));
38
+			$('#ITP_FORM_MORDMNG03010_LIST_SEARCH_FROM_DT').datepicker('setDate', itp_fn_date_add('D', -7));
39 39
 			$('#ITP_FORM_MORDMNG03010_LIST_SEARCH_TO_DT').datepicker('setDate', itp_fn_date_add('M', 0));
40 40
 		},
41 41
 		info: function() {
@@ -69,7 +69,6 @@ let mobPageObj = {
69 69
 				return false;
70 70
 			});
71 71
 
72
-			$(document).off('click');
73 72
 			// $(document).on('click', '#ITP_LIST_MORDMNG03010_LIST_ITEM_ROWS li', function() {
74 73
 			// 	mobContObj.list.iChoice = $(this).index();
75 74
 			// });

+ 1 - 1
src/main/webapp/mobile/js/app/mpomng/ITP_MPOMNG04010.js

@@ -128,7 +128,7 @@ let mobContObj = {
128 128
 				mobContObj.list.pager(result.gridTotal);
129 129
 				$.each(result.gridRows, function (i, item) {
130 130
 					$('#ITP_LIST_MPOMNG04010_LIST_ITEM_AREA .panel-group').append($('#ITP_LIST_MPOMNG04010_LIST_ITEM_ROWCOPY').html());
131
-					var $li = $('#ITP_LIST_MPOMNG04010_LIST_ITEM_AREA .panel-group > .list-row2:last');
131
+					var $li = $('#ITP_LIST_MPOMNG04010_LIST_ITEM_AREA .panel-group > .item-row:last');
132 132
 					$li.find('.fnPodrDt').text(item.podrDt);
133 133
 					$li.find('.fnPodrMgrNm').text($li.find('.fnPodrMgrNm').text().replace('$', item.podrMgrNm));
134 134
 					$li.find('.fnPchodrStCd').text(item.pchOdrStNm);

+ 1 - 1
src/main/webapp/mobile/js/app/mpomng/ITP_MPOMNG05010.js

@@ -118,7 +118,7 @@ let mobContObj = {
118 118
 				mobContObj.list.pager(result.gridTotal);
119 119
 				$.each(result.gridRows, function (i, item) {
120 120
 					$('#ITP_LIST_MPOMNG05010_LIST_ITEM_AREA .panel-group').append($('#ITP_LIST_MPOMNG05010_LIST_ITEM_ROWCOPY').html());
121
-					var $li = $('#ITP_LIST_MPOMNG05010_LIST_ITEM_AREA .panel-group > .history_list2:last');
121
+					var $li = $('#ITP_LIST_MPOMNG05010_LIST_ITEM_AREA .panel-group > .item-row:last');
122 122
 					$li.find('.fnDlvSttmtUnqNo').text(item.dlvSttmtUnqNo);
123 123
 					$li.find('.fnDlvReqDt').text(item.dlvReqDt);
124 124
 					$li.find('.fnDlvSchDt').text(item.dlvSchDt);

+ 1 - 2
src/main/webapp/mobile/js/app/mrtnmng/ITP_MRTNMNG05010.js

@@ -201,7 +201,6 @@ let mobContObj = {
201 201
 					param['brandId'] = $('#ITP_FORM_MRTNMNG05010_LIST_SEARCH #ITP_FORM_MRTNMNG05010_LIST_SEARCH_BRAND_ID').val();
202 202
 					param['storeId'] = storeId;
203 203
 					param['gridInsertData'] = gridInsertData;
204
-					console.log(JSON.stringify(param));
205 204
 					var saveFn = function () {
206 205
 						mobContObj.list.search();
207 206
 					};
@@ -262,7 +261,7 @@ let mobPopObj = {
262 261
 				switch (id) {
263 262
 					case 'ITP_BTN_MRTNMNG05010_POP_SPPLY_SEARCH'	: _this.search();			break;
264 263
 					case 'ITP_BTN_MRTNMNG05010_POP_SPPLY_CHOICE'	: _this.choice($(this));	break;
265
-					case 'ITP_BTN_MRTNMNG05010_POP_SPPLY_CLOSE'	: _this.close(); 			break;
264
+					case 'ITP_BTN_MRTNMNG05010_POP_SPPLY_CLOSE'		: _this.close(); 			break;
266 265
 				}
267 266
 				return false;
268 267
 			});

+ 0 - 1
src/main/webapp/mobile/js/app/mstockmng/ITP_MSTOCKMNG02010.js

@@ -115,7 +115,6 @@ let mobContObj = {
115 115
 				$li.find('.fnStckQty').text(CommonObj.currency.add(item.stckQty, '개'));
116 116
 				item['cddQty'] = 1;
117 117
 				item['normalYn'] = (item.itemId && item.itemId !== '') ? 'Y' : 'N';
118
-				console.log(item);
119 118
 				mobContObj.list.rows.push(item);
120 119
 			});
121 120
 		},