VastMakeDownPut.js 422 B

12345678910111213141516
  1. /**
  2. * 制造单批量下放
  3. */
  4. Ext.define('erp.view.core.button.VastMakeDownPut',{
  5. extend: 'Ext.Button',
  6. alias: 'widget.erpvastMakeDownPutButton',
  7. text: $I18N.common.button.erpvastMakeDownPutButton,
  8. tooltip: '批量下放',
  9. iconCls: 'x-button-icon-save',
  10. cls: 'x-btn-gray-1',
  11. id: 'erpvastMakeDownPutButton',
  12. initComponent : function(){
  13. this.callParent(arguments);
  14. },
  15. width: 90
  16. });