|
@@ -63,6 +63,7 @@ const gridColModel = {
|
63
|
63
|
index: 'BRAND_NM', name: 'brandNm',
|
64
|
64
|
label: "브랜드명",
|
65
|
65
|
width: '14', fixed: false, align: 'left',
|
|
66
|
+ minwidth: 200,
|
66
|
67
|
sortable: false, hidden: false, classes: 'ui-ellipsis'
|
67
|
68
|
},
|
68
|
69
|
{
|
|
@@ -99,12 +100,14 @@ const gridColModel = {
|
99
|
100
|
index: 'ITEM_ID', name: 'itemId',
|
100
|
101
|
label: "품목코드",
|
101
|
102
|
width: '20', fixed: false, align: 'center',
|
|
103
|
+ minwidth: 200,
|
102
|
104
|
sortable: false, editable: false, edittype: 'text'
|
103
|
105
|
},
|
104
|
106
|
{
|
105
|
107
|
index: 'ITEM_NM', name: 'itemNm',
|
106
|
108
|
label: "품목명",
|
107
|
109
|
width: '14', fixed: false, align: 'left',
|
|
110
|
+ minwidth: 200,
|
108
|
111
|
sortable: false, editable: false, edittype: 'text',
|
109
|
112
|
classes: 'ui-ellipsis'
|
110
|
113
|
},
|
|
@@ -118,6 +121,7 @@ const gridColModel = {
|
118
|
121
|
index: 'UNIT_AMT', name: 'unitAmt',
|
119
|
122
|
label: "단가",
|
120
|
123
|
width: '13', fixed: false, align: 'right',
|
|
124
|
+ minwidth: 110,
|
121
|
125
|
sortable: false, editable: false, edittype: 'text',
|
122
|
126
|
formatter:'integer',formatoptions: { defaultValue: '', thousandsSeparator: ',' }
|
123
|
127
|
},
|
|
@@ -125,6 +129,7 @@ const gridColModel = {
|
125
|
129
|
index: 'PODR_QTY', name: 'podrQty',
|
126
|
130
|
label: "발주수량",
|
127
|
131
|
width: '13', fixed: false, align: 'right',
|
|
132
|
+ minwidth: 110,
|
128
|
133
|
sortable: false, editable: false, edittype: 'text',
|
129
|
134
|
formatter:'integer',formatoptions: { defaultValue: '', thousandsSeparator: ',' }
|
130
|
135
|
},
|
|
@@ -132,6 +137,7 @@ const gridColModel = {
|
132
|
137
|
index: 'DLV_QTY', name: 'dlvQty',
|
133
|
138
|
label: "납품수량",
|
134
|
139
|
width: '13', fixed: false, align: 'right',
|
|
140
|
+ minwidth: 110,
|
135
|
141
|
sortable: false, editable: false, edittype: 'text',
|
136
|
142
|
formatter:'integer',formatoptions: { defaultValue: '', thousandsSeparator: ',' }
|
137
|
143
|
},
|
|
@@ -139,6 +145,7 @@ const gridColModel = {
|
139
|
145
|
index: 'WHS_COL_QTY', name: 'whsColQty',
|
140
|
146
|
label: "입고/수거수량",
|
141
|
147
|
width: '14', fixed: false, align: 'right',
|
|
148
|
+ minwidth: 110,
|
142
|
149
|
sortable: false, editable: false, edittype: 'text',
|
143
|
150
|
formatter:'integer',formatoptions: { defaultValue: '', thousandsSeparator: ',' }
|
144
|
151
|
},
|
|
@@ -153,6 +160,7 @@ const gridColModel = {
|
153
|
160
|
index: 'WHS_COL_AMT', name: 'whsColAmt',
|
154
|
161
|
label: "입고/수거금액",
|
155
|
162
|
width: '15', fixed: false, align: 'right',
|
|
163
|
+ minwidth: 110,
|
156
|
164
|
sortable: false, editable: false, edittype: 'text',
|
157
|
165
|
formatter:'integer',formatoptions: { defaultValue: '', thousandsSeparator: ',' }
|
158
|
166
|
},
|
|
@@ -172,6 +180,7 @@ const gridColModel = {
|
172
|
180
|
index: 'PODR_UNQ_NO', name: 'podrUnqNo',
|
173
|
181
|
label: "발주번호",
|
174
|
182
|
width: '18', fixed: false, align: 'center',
|
|
183
|
+ minwidth: 200,
|
175
|
184
|
sortable: false, editable: false, edittype: 'text'
|
176
|
185
|
},
|
177
|
186
|
{
|