TurnMrb.js 349 B

123456789101112131415
  1. /**
  2. * 转MRB单
  3. */
  4. Ext.define('erp.view.core.button.TurnMrb',{
  5. extend: 'Ext.Button',
  6. alias: 'widget.erpTurnMrbButton',
  7. iconCls: 'x-button-icon-delete',
  8. cls: 'x-btn-gray',
  9. id: 'erpTurnMrbButton',
  10. text: $I18N.common.button.erpTurnMrbButton,
  11. initComponent : function(){
  12. this.callParent(arguments);
  13. },
  14. width: 90
  15. });