| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- Ext.define('erp.view.pm.mps.DeskForm',{
- extend: 'Ext.form.Panel',
- requires: ['erp.view.core.button.OdDynamicAnalysis'],
- alias: 'widget.erpMPSDeskFormPanel',
- frame : true,
- layout : 'column',
- autoScroll : true,
- defaultType : 'textfield',
- labelSeparator : ':',
- height:120,
- FormUtil: Ext.create('erp.util.FormUtil'),
- buttonAlign : 'center',
- buttons: [{
- text: '物料',
- id:'product',
- style: {
- marginBottom: '50px'
- }
- }, {
- text: '供应',
- id:'supply'
- },{
- text:'需求',
- id:'need'
- },{
- text:'清理无效PR',
- id:'topurchase'
- },{
- text:'清理无效预测',
- id:'topurchaseforecast'
- },{
- text:'转制造',
- id:'tomake'
- } ,{
- text:'异常报告',
- id:'error'
- },
- {
- xtype:'erpOrderAnalysisButton'
- },
- {
- text:'关闭',
- id:'close'
- }
- ],
- initComponent : function(){
- this.callParent(arguments);
- }
- });
|