Ver código fonte

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

juney 2 anos atrás
pai
commit
bf5fa830dc

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

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

+ 2 - 1
src/main/webapp/js/app/ordmng/ITP_ORDMNG02010.js

@@ -507,7 +507,6 @@ let modifyObj = {
507 507
 			this.gridEmpty = ORDMNG02010_DETAIL_GRID_EMPTY;
508 508
 			this.unload();
509 509
 			this.load(gridData);
510
-			$(ORDMNG02010_DETAIL_GRID_ID).jqGrid('hideCol', 'cb');
511 510
 		},
512 511
 		mode: '',
513 512
 		colModel: gridColModel.detail,
@@ -611,8 +610,10 @@ let modifyObj = {
611 610
 				],
612 611
 				data: gridData,
613 612
 				multiselect: true,
613
+				multiboxonly: true,
614 614
 				loadComplete: function(data) {
615 615
 					itp_fn_grid_load_complete(data, ORDMNG02010_DETAIL_GRID_ID, true, 'number', 'ORDMNG02010', modifyObj.itp_ORDMNG02010_search, modifyObj.empty, true, data.gridRecords, true);
616
+					$(ORDMNG02010_DETAIL_GRID_ID).jqGrid('hideCol', 'cb');
616 617
 				},
617 618
 				onCellSelect: function(rowId, cellIdx, cellValue) {
618 619
 					ORDMNG02010_GRID_LAST_ROW_ID = itp_fn_set_data_editable(rowId, cellIdx, ORDMNG02010_GRID_LAST_ROW_ID, ORDMNG02010_DETAIL_GRID_ID, ['actionId']);

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

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

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

@@ -344,6 +344,7 @@ let listObj = {
344 344
 				url: DOMAIN + API_DETAIL_GRID_LIST,
345 345
 				pager: STINFO05010_GRID_PAGER,
346 346
 				multiselect: true,
347
+				multiboxonly: true,
347 348
 				rownumbers: false,
348 349
 				onCellSelect: function(rowId, cellIdx, cellValue) {
349 350
 					var cm = $(this).jqGrid('getGridParam', 'colModel');
@@ -362,6 +363,7 @@ let listObj = {
362 363
 					$.each(ids, function(idx, rowId) {
363 364
 						$(STINFO05010_GRID_ID).jqGrid('setCell', rowId, 'itemId', '', ITP_GRID_COL_STYLE.link);
364 365
 					});
366
+					$(STINFO05010_GRID_ID).jqGrid('hideCol', 'cb');
365 367
 				},
366 368
 				onPaging: function(action) {
367 369
 					itp_fn_grid_paging(STINFO05010_GRID_ID, action, param);
@@ -413,7 +415,13 @@ let viewObj = {
413 415
 		$('#ITP_FORM_STINFO05010_VIEW .fnItemNm').text(result.itemNm);
414 416
 		$('#ITP_FORM_STINFO05010_VIEW .fnSpplyId').text(result.spplyId);
415 417
 		$('#ITP_FORM_STINFO05010_VIEW .fnSpplyNm').text(result.spplyNm);
416
-		$('#ITP_FORM_STINFO05010_VIEW .fnSpplyItemId').text(result.spplyItemId);
418
+		let spplyItemId;
419
+		if (result.spplyItemId == null || result.spplyItemId == '') {
420
+			spplyItemId = '(미등록)';
421
+		} else {
422
+			spplyItemId = result.spplyItemId;
423
+		}
424
+		$('#ITP_FORM_STINFO05010_VIEW .fnSpplyItemId').text(spplyItemId);
417 425
 		$('#ITP_FORM_STINFO05010_VIEW .fnContSttDt').text(result.contSttDt);
418 426
 		$('#ITP_FORM_STINFO05010_VIEW .fnContEndDt').text(result.contEndDt);
419 427
 		$('#ITP_FORM_STINFO05010_VIEW .fnLeadTime').text(itp_fn_number_comma(result.leadTime) + ' Day(s)');

+ 15 - 15
src/main/webapp/js/app/stinfo/ITP_STINFO06010.js

@@ -121,31 +121,31 @@ const gridColModel = {
121 121
 		{
122 122
 			index: 'ITEM_ID', name: 'itemId',
123 123
 			label: ITP_MSG_LOCALE.label.itemId, //품목번호
124
-			width: '12', fixed: false, align: 'center',
124
+			width: '14', fixed: false, align: 'center',
125 125
 			sortable: false, hidden: false
126 126
 		},
127 127
 		{
128 128
 			index: 'ITEM_NM', name: 'itemNm',
129 129
 			label: ITP_MSG_LOCALE.label.itemNm, //품목명
130 130
 			width: '11', fixed: false, align: 'left',
131
-			sortable: false, hidden: false
131
+			sortable: false, hidden: false, classes: 'ui-ellipsis'
132 132
 		},
133 133
 		{
134 134
 			index: 'CONT_STT_DT', name: 'contSttDt',
135 135
 			label: ITP_MSG_LOCALE.label.contSttDt, //계약시작일
136
-			width: '10', fixed: false, align: 'center',
136
+			width: '7', fixed: false, align: 'center',
137 137
 			sortable: false, hidden: false
138 138
 		},
139 139
 		{
140 140
 			index: 'CONT_END_DT', name: 'contEndDt',
141 141
 			label: ITP_MSG_LOCALE.label.contEndDt, //계약종료일
142
-			width: '10', fixed: false, align: 'center',
142
+			width: '7', fixed: false, align: 'center',
143 143
 			sortable: false, hidden: false
144 144
 		},
145 145
 		{
146 146
 			index: 'UNIT', name: 'unit',
147 147
 			label: ITP_MSG_LOCALE.label.unit, //기본단위
148
-			width: '8', fixed: false, align: 'center',
148
+			width: '6', fixed: false, align: 'center',
149 149
 			sortable: false, editable: false, formatter: 'select', edittype: 'select',
150 150
 			editoptions: {value: ITP_COMMON_CD_DSTRBT_COST_UNIT}
151 151
 		},
@@ -161,7 +161,7 @@ const gridColModel = {
161 161
 		{
162 162
 			index: 'UNIT_AMT', name: 'unitAmt',
163 163
 			label: ITP_MSG_LOCALE.label.unitAmt, //단가
164
-			width: '10', fixed: false, align: 'right',
164
+			width: '9', fixed: false, align: 'right',
165 165
 			sortable: true, editable: true, edittype: 'text',
166 166
 			classes: 'input_color',
167 167
 			editrules: {required: true},
@@ -180,7 +180,7 @@ const gridColModel = {
180 180
 		{
181 181
 			index: 'SPPLY_UNIT_AMT', name: 'spplyUnitAmt',
182 182
 			label: ITP_MSG_LOCALE.label.spplyUnitAmt, //공급단가
183
-			width: '6', fixed: false, align: 'right',
183
+			width: '9', fixed: false, align: 'right',
184 184
 			sortable: false, hidden: false,
185 185
 			formatter: 'integer', formatoptions: { defaultValue: '', thousandsSeparator: ',' }
186 186
 			
@@ -188,9 +188,9 @@ const gridColModel = {
188 188
 		{
189 189
 			index: 'SPPLY_NM', name: 'spplyNm',
190 190
 			label: ITP_MSG_LOCALE.label.spplyNm, //공급업체명
191
-			width: '6', fixed: false, align: 'left',
191
+			width: '8', fixed: false, align: 'left',
192 192
 			minwidth: 240,
193
-			sortable: false, hidden: false
193
+			sortable: false, hidden: false, classes: 'ui-ellipsis'
194 194
 		}
195 195
 	],
196 196
 	sdetail: [
@@ -228,38 +228,38 @@ const gridColModel = {
228 228
 			index: 'ITEM_ID', name: 'itemId',
229 229
 			label: ITP_MSG_LOCALE.label.itemId, //품목번호
230 230
 			minwidth: 160,
231
-			width: '10', fixed: false, align: 'center',
231
+			width: '13', fixed: false, align: 'center',
232 232
 			sortable: false, hidden: false
233 233
 		},
234 234
 		{
235 235
 			index: 'ITEM_NM', name: 'itemNm',
236 236
 			label: ITP_MSG_LOCALE.label.itemNm, //품목명
237 237
 			width: '13', fixed: false, align: 'center',
238
-			sortable: false, hidden: false
238
+			sortable: false, hidden: false, classes: 'ui-ellipsis'
239 239
 		},
240 240
 		{
241 241
 			index: 'CONT_STT_DT', name: 'contSttDt',
242 242
 			label: ITP_MSG_LOCALE.label.contSttDt, //계약시작일
243
-			width: '10', fixed: false, align: 'center',
243
+			width: '7', fixed: false, align: 'center',
244 244
 			sortable: false, hidden: false
245 245
 		},
246 246
 		{
247 247
 			index: 'CONT_END_DT', name: 'contEndDt',
248 248
 			label: ITP_MSG_LOCALE.label.contEndDt, //계약종료일
249
-			width: '10', fixed: false, align: 'center',
249
+			width: '7', fixed: false, align: 'center',
250 250
 			sortable: false, hidden: false
251 251
 		},
252 252
 		{
253 253
 			index: 'UNIT', name: 'unit',
254 254
 			label: ITP_MSG_LOCALE.label.unit, //기본단위
255
-			width: '9', fixed: false, align: 'center',
255
+			width: '8', fixed: false, align: 'center',
256 256
 			sortable: false, editable: false, formatter: 'select', edittype: 'select',
257 257
 			editoptions: {value: ITP_COMMON_CD_DSTRBT_COST_UNIT}
258 258
 		},
259 259
 		{
260 260
 			index: 'CURR', name: 'curr',
261 261
 			label: ITP_MSG_LOCALE.label.curr, //통화
262
-			width: '9', fixed: false, align: 'center',
262
+			width: '7', fixed: false, align: 'center',
263 263
 			sortable: false, editable: false, formatter: 'select', edittype: 'select',
264 264
 			editoptions: {value: ITP_COMMON_CD_CURR}
265 265
 		},

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

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

+ 10 - 28
src/main/webapp/mobile/app/main.html

@@ -151,59 +151,41 @@
151 151
 					<h1>> 운영정보</h1>
152 152
 				</div>
153 153
 				<div id="ITP_MAIN_HEADER_BRAND" class="itp_oper_info_area" style="display: none;">
154
-					<div class="itp_oper_info">
155
-						<label>구매요청건수</label>
156
-						<span>:</span>
157
-						<div class="fnPr20Count">2 건</div>
158
-					</div>
159 154
 					<div class="itp_oper_info">
160 155
 						<label>입금액</label>
161
-						<span>:</span>
162 156
 						<div class="fnDp02Amt">12,000,000원</div>
163
-					</div>
164
-					<div class="itp_oper_info">
165 157
 						<label>미납금</label>
166
-						<span>:</span>
167 158
 						<div class="fnUnpaidAmt">1,000원</div>
168 159
 					</div>
169
-				</div>
170
-				<div id="ITP_MAIN_HEADER_STORE" class="itp_oper_info_area" style="display: none;">
171 160
 					<div class="itp_oper_info">
172
-						<label>구매요청</label>
173
-						<span>:</span>
174
-						<div class="fnPr20Count">2 건</div>
161
+						<label class="col_6">구매요청건수</label>
162
+						<div class="full fnPr20Count">2 건</div>
175 163
 					</div>
164
+				</div>
165
+				<div id="ITP_MAIN_HEADER_STORE" class="itp_oper_info_area" style="display: none;">
176 166
 					<div class="itp_oper_info">
167
+						<label class="col_6">구매요청</label>
168
+						<div class="col_6 fnPr20Count">2 건</div>
177 169
 						<label>발주진행</label>
178
-						<span>:</span>
179 170
 						<div class="fnPo30Count">12,000,000원</div>
180 171
 					</div>
181 172
 					<div class="itp_oper_info">
173
+						<label class="col_6">구매가능금액</label>
174
+						<div class="col_6 fnPoPsblAmt">1,000원</div>
182 175
 						<label>발주완료</label>
183
-						<span>:</span>
184 176
 						<div class="fnPoEndCount">1,000원</div>
185 177
 					</div>
186
-					<div class="itp_oper_info">
187
-						<label>구매가능금액</label>
188
-						<span>:</span>
189
-						<div class="fnPoPsblAmt">1,000원</div>
190
-					</div>
191 178
 				</div>
192 179
 				<div id="ITP_MAIN_HEADER_SPPLY" class="itp_oper_info_area" style="display: none;">
193 180
 					<div class="itp_oper_info">
194 181
 						<label>수주건수</label>
195
-						<span>:</span>
196 182
 						<div class="fnOrdersCount">2 건</div>
197
-					</div>
198
-					<div class="itp_oper_info">
199 183
 						<label>수주금액</label>
200
-						<span>:</span>
201 184
 						<div class="fnOrdersAmt">12,000,000원</div>
202 185
 					</div>
203 186
 					<div class="itp_oper_info">
204
-						<label>정산요청금액</label>
205
-						<span>:</span>
206
-						<div class="fnSttlReqAmt">1,000원</div>
187
+						<label class="col_6">정산요청금액</label>
188
+						<div class="full fnSttlReqAmt">1,000원</div>
207 189
 					</div>
208 190
 				</div>
209 191
 				<div id="ITP_MAIN_DRAW_CHART_REQ" class="itp_graph_area">

+ 3 - 2
src/main/webapp/mobile/app/mpomng/MPOMNG01010.html

@@ -84,7 +84,8 @@
84 84
 	            </div>
85 85
 				<div class="right" style="width:125px;">
86 86
 					<button id="ITP_BTN_MPOMNG01010_DETAIL_MINUS" class="DETAIL_ITEM_MINUS">-</button>
87
-					<div class="num fnPchReqQty">1</div>
87
+					<input id="ITP_MPOMNG01010_DETAIL_NUM" class="">
88
+					<!-- <div class="num fnPchReqQty">1</div> -->
88 89
 					<button id="ITP_BTN_MPOMNG01010_DETAIL_PLUS" class="DETAIL_ITEM_PLUS">+</button>
89 90
 				</div>
90 91
 			</li>
@@ -222,7 +223,7 @@
222 223
                         </div>
223 224
                         <div class="right">
224 225
 			              <button id="ITP_BTN_MPOMNG01010_POP_ITEM_MINUS">-</button>
225
-			              <div class="num fnPchReqQty">1</div>
226
+			              <input id="ITP_MPOMNG01010_POP_NUM" class="">
226 227
 			              <button id="ITP_BTN_MPOMNG01010_POP_ITEM_PLUS">+</button>
227 228
 			            </div>
228 229
                          <div class="scroll_right">

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

@@ -262,7 +262,7 @@
262 262
             </div>
263 263
             <div class="right">
264 264
               <button id="ITP_BTN_MPOMNG02010_MODIFY_MINUS">-</button>
265
-              <div class="num fnPchReqQty">1</div>
265
+			  <input id="ITP_MPOMNG02010_MODIFY_NUM" class="">
266 266
               <button id="ITP_BTN_MPOMNG02010_MODIFY_PLUS">+</button>
267 267
             </div>
268 268
           </li>
@@ -399,7 +399,7 @@
399 399
            	 <div class="itp_num_set">
400 400
                 <div class="right">
401 401
 				    <button id="ITP_BTN_MPOMNG02010_POP_ITEM_MINUS">-</button>
402
-				    <div class="num fnPchReqQty">1</div>
402
+    			    <input id="ITP_BTN_MPOMNG02010_POP_NUM" class="">
403 403
 				    <button id="ITP_BTN_MPOMNG02010_POP_ITEM_PLUS">+</button>
404 404
 			    </div>
405 405
 		    </div>

+ 2 - 2
src/main/webapp/mobile/app/mrtnmng/MRTNMNG01010.html

@@ -65,7 +65,7 @@
65 65
 			            </div>
66 66
 						<div class="right" style="width:125px;">
67 67
 							<button id="ITP_BTN_MRTNMNG01010_DETAIL_MINUS" class="DETAIL_ITEM_MINUS">-</button>
68
-							<div class="num fnPchReqQty">1</div>
68
+							<input id="ITP_MRTNMNG01010_DETAIL_NUM" class="">
69 69
 							<button id="ITP_BTN_MRTNMNG01010_DETAIL_PLUS" class="DETAIL_ITEM_PLUS">+</button>
70 70
 						</div>
71 71
 					</li>
@@ -185,7 +185,7 @@
185 185
                         </div>
186 186
 						<div class="right">
187 187
 							<button id="ITP_BTN_MRTNMNG01010_POP_ITEM_MINUS" class="POP_ITEM_MINUS">-</button>
188
-							<div class="num fnPchReqQty">1</div>
188
+							<input id="ITP_MRTNMNG01010_POP_NUM" class="">
189 189
 							<button id="ITP_BTN_MRTNMNG01010_POP_ITEM_PLUS" class="POP_ITEM_PLUS">+</button>
190 190
 						</div>
191 191
                        <div class="scroll_right">

+ 2 - 2
src/main/webapp/mobile/app/mrtnmng/MRTNMNG02010.html

@@ -221,7 +221,7 @@
221 221
 						</div>
222 222
 						<div class="right">
223 223
 							<button id="ITP_BTN_MRTNMNG02010_MODIFY_MINUS" class="DETAIL_ITEM_MINUS">-</button>
224
-							<div class="num fnRtnQty">1</div>
224
+							<input id="ITP_MRTNMNG02010_MODIFY_NUM" class="">
225 225
 							<button id="ITP_BTN_MRTNMNG02010_MODIFY_PLUS" class="DETAIL_ITEM_PLUS">+</button>
226 226
 						</div>
227 227
 					</li>
@@ -340,7 +340,7 @@
340 340
 						</div>
341 341
 						<div class="right">
342 342
 							<button id="ITP_BTN_MRTNMNG02010_POP_ITEM_MINUS" class="POP_ITEM_MINUS">-</button>
343
-							<div class="num fnRtnQty">1</div>
343
+							<input id="ITP_MRTNMNG02010_POP_NUM" class="">
344 344
 							<button id="ITP_BTN_MRTNMNG02010_POP_ITEM_PLUS" class="POP_ITEM_PLUS">+</button>
345 345
 						</div>
346 346
 						<div class="scroll_right">

+ 11 - 4
src/main/webapp/mobile/css/style.css

@@ -118,6 +118,8 @@ section .popup2 .pop .popup_scroll li .scroll_right button:hover {background:#70
118 118
 section .popup2 .pop .popup_scroll li .right {position: relative; display: flex; font-size: 1.6rem; font-weight: 700; float: right; top:21px; width:91px; height:27px;}
119 119
 section .popup2 .pop .popup_scroll li .right button {padding: 0px; font-size: 17px; width:24px;}
120 120
 section .popup2 .pop .popup_scroll li .add button{float: right; width: 60px; height: 55px; margin: 12px 9px; border-radius: 10px; font-size: 1rem; background: rgb(198, 170, 250);}
121
+section .popup2 .pop .popup_scroll li .right input {width:43px; height:27px; margin:0; text-align:center; border-radius:0px; border:1px solid #E0B8AB;}
122
+section .popup2 .pop .popup_scroll li .right input:focus {outline:none;}
121 123
 section .popup2 .pop .content .line button {width: 35%; height: 35px;font-size: 14px; font-weight:100; padding-top: 7px; margin: 0 10px;}
122 124
 section .popup2	.list_line {width:98%; float:left; height:40px;display: inline-flex; margin:0 1%; font-size:12px;}
123 125
 section .popup2 .border {border-bottom: 1px solid #000 !important;}
@@ -576,6 +578,8 @@ input .day {margin: 18%; width: 45%; height: 80px; float: right;}
576 578
 .scroll_area li .right {margin: 22px 10px 22px 0; position: relative; display: flex; width:110px; height:30px; font-size: 1.4rem; font-weight: 700; float: right;}
577 579
 .scroll_area li .right .num {padding:2px 22px; width: auto; border-top:1px solid #E0B8AB; border-bottom:1px solid #E0B8AB; background:#fff; font-size:14pt;}
578 580
 .scroll_area li .right .fnnum {margin:5px 30px; font-size:14pt;}
581
+.scroll_area li .right input {width:43px; height:30px; margin:0; text-align:center; border-radius:0px; border:1px solid #E0B8AB;}
582
+.scroll_area li .right input:focus {outline:none;}
579 583
 .scroll_area li .right button {background:#e1cac1; color:#fff; border:1px solid #E0B8AB; padding:0px 7px; font-size: 16px; border-radius: 0px;}
580 584
 .scroll_area li .right button:hover {background:#FCD5C1;}
581 585
 
@@ -672,8 +676,8 @@ button.close {-webkit-appearance: none; padding: 0; cursor: pointer; background:
672 676
 
673 677
 /* 메인화면 공지사항 추가 */
674 678
 #ITP_MAIN_CONTAINER.itp_main_box{position:relative; height:calc(100vh - 49px); overflow:auto;}
675
-#ITP_MAIN_CONTAINER .itp_note_header {width:100%; height:46px; padding:10px; border-bottom:1px solid #aaa; background:#dce6f2;}
676
-#ITP_MAIN_CONTAINER .itp_note_header h1 {font-size:16pt; text-align:left; margin:0;}
679
+#ITP_MAIN_CONTAINER .itp_note_header {width:100%; height:37spx; padding:9px; border-bottom:1px solid #aaa; background:#dce6f2;}
680
+#ITP_MAIN_CONTAINER .itp_note_header h1 {font-size:12pt; text-align:left; margin:0;}
677 681
 #ITP_MAIN_CONTAINER .itp_note_bar {height: auto; max-height:180px;}
678 682
 #ITP_MAIN_CONTAINER .itp_note_bar h1 {position:relative; font-weight:700; font-size:14pt; margin:0; height:60px; padding-top:20px; border-bottom:1px solid #aaa;}
679 683
 #ITP_MAIN_CONTAINER .itp_note_bar li {border-bottom:1px solid #aaa; padding:5px; height:60px;}
@@ -685,9 +689,12 @@ button.close {-webkit-appearance: none; padding: 0; cursor: pointer; background:
685 689
 #ITP_MAIN_CONTAINER .itp_note_bar li .itp_note_info .under {text-decoration: underline;}
686 690
 #ITP_MAIN_CONTAINER .itp_oper_info_area {border-bottom:1px solid #aaa; padding:5px;}
687 691
 #ITP_MAIN_CONTAINER .itp_oper_info_area .itp_oper_info {display:flex; height:24px;}
688
-#ITP_MAIN_CONTAINER .itp_oper_info_area .itp_oper_info label{font-size:12pt; text-align:left; width:90px;}
692
+#ITP_MAIN_CONTAINER .itp_oper_info_area .itp_oper_info label{font-size:12pt; text-align:left; width:65px; padding-left:10px;}
693
+#ITP_MAIN_CONTAINER .itp_oper_info_area .itp_oper_info label.col_6{width:95px;}
689 694
 #ITP_MAIN_CONTAINER .itp_oper_info_area .itp_oper_info span{width:14px;}
690
-#ITP_MAIN_CONTAINER .itp_oper_info_area .itp_oper_info div{text-overflow:ellipsis; overflow:hidden; white-space:nowrap; text-align: right; width:calc(50% - 114px);}
695
+#ITP_MAIN_CONTAINER .itp_oper_info_area .itp_oper_info div{text-overflow:ellipsis; overflow:hidden; white-space:nowrap; text-align: right; width:calc(50% - 74px);}
696
+#ITP_MAIN_CONTAINER .itp_oper_info_area .itp_oper_info div.col_6{width:calc(50% - 95px);}
697
+#ITP_MAIN_CONTAINER .itp_oper_info_area .itp_oper_info div.full{width:calc(100% - 113px);}
691 698
 #ITP_MAIN_CONTAINER .itp_graph_area {width:98%; height:300px; border:1px solid #aaa; margin:5px 1%;}
692 699
 #ITP_MAIN_CONTAINER .itp_graph_area .itp_graph_header {width:160px; margin:5px;}
693 700
 #ITP_MAIN_CONTAINER .itp_graph_area .itp_graph_header label {width:80px; font-size:14pt; text-align:left; float:left;}