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