| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- Ext.define('saas.view.document.bom.BasePanel', {
- extend: 'saas.view.core.base.BasePanel',
- xtype: 'document-bom-basepanel',
- controller: 'document-bom-basepanel',
- viewModel: 'document-bom-basepanel',
- searchField:[],
- //字段属性
- _formXtype:'document-bom-formpanel',
- _title:'BOM资料',
- // _dataUrl:basePath+'ducument/customer/list',
- _batchOpenUrl:basePath+'document/bom/batchOpen',
- _batchCloseUrl:basePath+'document/bom/batchClose',
- _batchDeleteUrl:basePath+'document/bom/batchDelete',
- gridConfig: {
- idField: 'id',
- codeField: 'bo_mothercode',
- dataUrl: basePath+'document/bom/list',
- columns : [{
- text : "id",
- width : 0,
- dataIndex : "id",
- xtype : "numbercolumn",
- },{
- text : "母件id",
- width : 0,
- dataIndex : "bo_motherid",
- xtype : "numbercolumn",
- },{
- text : "母件编号",
- width : 200.0,
- dataIndex : "bo_mothercode",
- },
- {
- text : "母件名称",
- dataIndex : "bo_mothername",
- width : 120.0,
- },
- {
- text : "BOM状态",
- dataIndex : "bo_status",
- width : 120.0,
- },
- {
- text : "BOM版本",
- dataIndex : "bo_version",
- width : 120.0,
- }]
- },
- });
|