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