12345678910111213141516 |
- /**
- * 制造单取消下放
- */
- Ext.define('erp.view.core.button.ResMakeDownPut',{
- extend: 'Ext.Button',
- alias: 'widget.erpResMakeDownPutButton',
- text: $I18N.common.button.erpResMakeDownPutButton,
- tooltip: '取消下放',
- iconCls: 'x-button-icon-save',
- cls: 'x-btn-gray',
- id: 'erpResMakeDownPutButton',
- initComponent : function(){
- this.callParent(arguments);
- },
- width: 85
- });
|