Browse Source

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

juney 2 years ago
parent
commit
5f861cafdd

+ 6 - 1
src/main/webapp/js/app/inoutmng/ITP_INOUTMNG01010.js

@@ -48,6 +48,7 @@ const gridColModel = {
48 48
 			index: 'BRAND_NM', name: 'brandNm',
49 49
 			label: ITP_MSG_LOCALE.label.brandNm, //브랜드명
50 50
 			width: '10', fixed: false, align: 'left',
51
+			minwidth: 200,
51 52
 			sortable: false, hidden: false, classes: 'ui-ellipsis'
52 53
 		},
53 54
 		{
@@ -74,7 +75,7 @@ const gridColModel = {
74 75
 			index: 'ITEM_NM', name: 'itemNm',
75 76
 			label: ITP_MSG_LOCALE.label.itemNm, //품목명
76 77
 			width: '10', fixed: false, align: 'left',
77
-			minwidth: 100,
78
+			minwidth: 200,
78 79
 			sortable: false, hidden: false, classes: 'ui-ellipsis'
79 80
 		},
80 81
 		{
@@ -101,6 +102,7 @@ const gridColModel = {
101 102
 			label: ITP_MSG_LOCALE.label.unitAmt, //단가
102 103
 			width: '11', fixed: false, align: 'right',
103 104
 			sortable: false, hidden: false,
105
+			minwidth: 120,
104 106
 			formatter: 'integer', formatoptions: { defaultValue: '', thousandsSeparator: ',' }
105 107
 		},
106 108
 		{
@@ -108,6 +110,7 @@ const gridColModel = {
108 110
 			label: ITP_MSG_LOCALE.label.podrQty, //발주수량
109 111
 			width: '11', fixed: false, align: 'right',
110 112
 			sortable: false, hidden: false,
113
+			minwidth: 120,
111 114
 			formatter: 'integer', formatoptions: { defaultValue: '', thousandsSeparator: ',' }
112 115
 		},
113 116
 		{
@@ -122,6 +125,7 @@ const gridColModel = {
122 125
 			label: ITP_MSG_LOCALE.label.stckQty, //현 재고
123 126
 			width: '11', fixed: false, align: 'right',
124 127
 			sortable: false, hidden: false,
128
+			minwidth: 120,
125 129
 			formatter: 'integer', formatoptions: { defaultValue: '', thousandsSeparator: ',' }
126 130
 		},
127 131
 		{
@@ -150,6 +154,7 @@ const gridColModel = {
150 154
 			label: ITP_MSG_LOCALE.label.podrAmt, //발주금액
151 155
 			width: '11', fixed: false, align: 'right',
152 156
 			sortable: false, hidden: false,
157
+			minwidth: 120,
153 158
 			formatter: 'integer', formatoptions: { defaultValue: '', thousandsSeparator: ',' }
154 159
 		},
155 160
 		{

+ 7 - 7
src/main/webapp/js/app/pomng/ITP_POMNG06010.js

@@ -44,7 +44,7 @@ const gridColModel = {
44 44
 			index: 'BRAND_NM', name: 'brandNm',
45 45
 			label: ITP_MSG_LOCALE.label.brandNm, //브랜드명
46 46
 			width: '10', fixed: false, align: 'left',
47
-			minwidth: 130,
47
+			minwidth: 180,
48 48
 			sortable: false, hidden: false, classes: 'ui-ellipsis'
49 49
 		},
50 50
 		{
@@ -71,32 +71,32 @@ const gridColModel = {
71 71
 			index: 'ITEM_NM', name: 'itemNm',
72 72
 			label: ITP_MSG_LOCALE.label.itemNm, //품목명
73 73
 			width: '10', fixed: false, align: 'left',
74
-			minwidth: 130,
74
+			minwidth: 180,
75 75
 			sortable: false, hidden: false, classes: 'ui-ellipsis'
76 76
 		},
77 77
 		{
78 78
 			index: 'PODR_QTY', name: 'podrQty',
79 79
 			label: ITP_MSG_LOCALE.label.podrQty, //발주수량
80
-			width: '17', fixed: false, align: 'right',
80
+			width: '18', fixed: false, align: 'right',
81 81
 			sortable: false, hidden: false,
82 82
 			formatter: 'integer', formatoptions: { defaultValue: '', thousandsSeparator: ',' }
83 83
 		},
84 84
 		{
85 85
 			index: 'DLV_QTY', name: 'dlvQty',
86 86
 			label: ITP_MSG_LOCALE.label.dlvQty, //납품/수주 수량
87
-			width: '17', fixed: false, align: 'right',
87
+			width: '18', fixed: false, align: 'right',
88 88
 			sortable: false, hidden: false,
89 89
 			formatter: 'integer', formatoptions: { defaultValue: '', thousandsSeparator: ',' }
90 90
 		},
91 91
 		{
92 92
 			index: 'WHS_QTY', name: 'whsQty',	
93 93
 			label: ITP_MSG_LOCALE.label.whsQty, //입고수량
94
-			width: '17', fixed: false, align: 'right',
94
+			width: '18', fixed: false, align: 'right',
95 95
 			sortable: true, editable: true, edittype: 'text',
96 96
 			editrules: { required: false, number: true },
97 97
 			classes: 'input_color',
98 98
 			formatter: 'integer', formatoptions: { defaultValue: '', thousandsSeparator: ',' },
99
-			editoptions: {"onKeyup": "this.value=this.value.replace(/[^0-9]/g,'');"}
99
+			editoptions: {"onKeyup": "this.value=this.value.replace(/[^0-9]/g,'');", maxlength: 10}
100 100
 		},
101 101
 		{
102 102
 			index: 'WHS_AMT', name: 'whsAmt',
@@ -107,7 +107,7 @@ const gridColModel = {
107 107
 		{
108 108
 			index: 'UNIT_AMT', name: 'unitAmt',
109 109
 			label: ITP_MSG_LOCALE.label.unitAmt, //단가
110
-			width: '17', fixed: false, align: 'right',
110
+			width: '18', fixed: false, align: 'right',
111 111
 			sortable: false, hidden: false,
112 112
 			formatter: 'integer', formatoptions: { defaultValue: '', thousandsSeparator: ',' }
113 113
 		},

+ 13 - 7
src/main/webapp/js/app/rtnmng/ITP_RTNMNG03010.js

@@ -163,7 +163,8 @@ const gridColModel = {
163 163
 		{
164 164
 			index: 'RTN_REQ_UNQ_NO', name: 'rtnReqUnqNo',
165 165
 			label: '반품요청번호', 
166
-			width: '9', fixed: false, align: 'center',
166
+			width: '14', fixed: false, align: 'center',
167
+			minwidth: 120,
167 168
 			sortable: false, hidden: false, edittype: 'text',
168 169
 			editable: false
169 170
 		},
@@ -177,29 +178,31 @@ const gridColModel = {
177 178
 		{
178 179
 			index: 'ITEM_ID', name: 'itemId',
179 180
 			label: ITP_MSG_LOCALE.label.itemId, // 품목아이디
180
-			width: '10', fixed: false, align: 'center',
181
+			width: '14', fixed: false, align: 'center',
182
+			minwidth: 120,
181 183
 			sortable: false, editable: false, edittype: 'text',
182 184
 			hidden: false
183 185
 		},
184 186
 		{
185 187
 			index: 'ITEM_NM', name: 'itemNm',
186 188
 			label: ITP_MSG_LOCALE.label.itemNm, //품목명
187
-			width: '6', fixed: false, align: 'left',
189
+			width: '10', fixed: false, align: 'left',
190
+			minwidth: 140,
188 191
 			sortable: false, editable: false, edittype: 'text',
189 192
 			hidden: false
190 193
 		},
191 194
 		{
192 195
 			index: 'UNIT_AMT', name: 'unitAmt',
193 196
 			label: ITP_MSG_LOCALE.label.unitAmt, //단가
194
-			width: '5', fixed: false, align: 'right',
197
+			width: '8', fixed: false, align: 'right',
195 198
 			sortable: false, editable: false, edittype: 'text',
196
-			hidden: false,
199
+			minwidth: 120, hidden: false,
197 200
 			formatter:'integer',formatoptions: { defaultValue: '', thousandsSeparator: ',' }
198 201
 		},
199 202
 		{
200 203
 			index: 'UNIT', name: 'unit',
201 204
 			label: ITP_MSG_LOCALE.label.unit, //단위
202
-			width: '5', fixed: false, align: 'center',
205
+			width: '6', fixed: false, align: 'center',
203 206
 			sortable: false, editable: false, edittype: 'text',
204 207
 			hidden: false
205 208
 		},
@@ -208,6 +211,7 @@ const gridColModel = {
208 211
 			label: '반품요청수량', 
209 212
 			width: '8', fixed: false, align: 'right',
210 213
 			sortable: false, editable: false, edittype: 'text',
214
+			minwidth: 120,
211 215
 			hidden: false,
212 216
 			formatter:'integer',formatoptions: { defaultValue: '', thousandsSeparator: ',' }
213 217
 		},
@@ -216,6 +220,7 @@ const gridColModel = {
216 220
 			label: '반품발주수량', classes: 'input_color',
217 221
 			width: '8', fixed: false, align: 'right',
218 222
 			sortable: false, editable: true, edittype: 'text',
223
+			minwidth: 120,
219 224
 			editrules: {required: true}, hidden: false,
220 225
 			editoptions: {"onKeyup": "this.value=this.value.replace(/[^0-9]/g,'');", maxlength: 10}, 
221 226
 			formatter:'integer',formatoptions: { defaultValue: '', thousandsSeparator: ',' }
@@ -223,8 +228,9 @@ const gridColModel = {
223 228
 		{
224 229
 			index: 'RTN_AMT', name: 'rtnAmt',
225 230
 			label: '발주금액', 
226
-			width: '6', fixed: false, align: 'right',
231
+			width: '8', fixed: false, align: 'right',
227 232
 			sortable: false, editable: false, edittype: 'text',
233
+			minwidth: 120,
228 234
 			hidden: false,
229 235
 			formatter:'integer',formatoptions: { defaultValue: '', thousandsSeparator: ',' }
230 236
 		},

+ 2 - 2
src/main/webapp/js/app/vendinfo/ITP_VENDINFO02010.js

@@ -32,7 +32,7 @@ const gridColModel = {
32 32
 		{
33 33
 			index: 'ITEM_ID', name: 'itemId',  			//서버로 전송시 데이터 명 , 데이터명
34 34
 			label: ITP_MSG_LOCALE.label.itemId, 		//품목번호
35
-			width: '12', fixed: false, align: 'center',	// cell가로넓이,고정 여부 ,text정렬 
35
+			width: '14', fixed: false, align: 'center',	// cell가로넓이,고정 여부 ,text정렬 
36 36
 			sortable: false, hidden: false 				//정렬가능 여부,화면표시 여부
37 37
 		},
38 38
 		{
@@ -45,7 +45,7 @@ const gridColModel = {
45 45
 		{
46 46
 			index: 'ITEM_TYPE_NM', name: 'itemTypeNm',	//서버로 전송시 데이터 명 , 데이터명
47 47
 			label: ITP_MSG_LOCALE.label.itemTypeNm, 	//품목유형
48
-			width: '10', fixed: false, align: 'center',	// cell가로넓이,고정 여부 ,text정렬 
48
+			width: '8', fixed: false, align: 'center',	// cell가로넓이,고정 여부 ,text정렬 
49 49
 			sortable: false, hidden: false 				//정렬가능 여부,화면표시 여부
50 50
 		},
51 51
 		{