|
@@ -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
|
},
|