12345678910111213141516 |
- /**
- * 开返工单按钮
- */
- Ext.define('erp.view.core.button.OpenMake',{
- extend: 'Ext.Button',
- alias: 'widget.erpOpenMakeButton',
- text: $I18N.common.button.erpOpenMakeButton,
- tooltip: '开返工单',
- iconCls: 'x-button-icon-save',
- cls: 'x-btn-gray',
- id: 'erpOpenMakeButton',
- initComponent : function(){
- this.callParent(arguments);
- },
- width: 90
- });
|