|
|
@@ -100,22 +100,24 @@ Ext.define('saas.view.sale.b2b.Business', {
|
|
|
}, {
|
|
|
text: '物料名称',
|
|
|
dataIndex: 'prodName',
|
|
|
- width: 120
|
|
|
+ width: 150
|
|
|
}, {
|
|
|
text: '物料型号',
|
|
|
dataIndex: 'prodOrispeccode',
|
|
|
- width: 120
|
|
|
+ width: 200
|
|
|
}, {
|
|
|
text: '物料规格',
|
|
|
dataIndex: 'prodSpec',
|
|
|
- width: 120
|
|
|
+ width: 200
|
|
|
}, {
|
|
|
text: '物料单位',
|
|
|
- dataIndex: 'prodUnit'
|
|
|
+ dataIndex: 'prodUnit',
|
|
|
+ width: 65
|
|
|
}, {
|
|
|
text: '采购数量',
|
|
|
xtype: 'numbercolumn',
|
|
|
dataIndex: 'needQty',
|
|
|
+ width: 110,
|
|
|
renderer: function (v, m, r) {
|
|
|
return saas.util.BaseUtil.numberFormat(v, 0, false);
|
|
|
}
|