TurnOSMake.js 383 B

123456789101112131415
  1. /**
  2. * 制造单转委外单按钮
  3. */
  4. Ext.define('erp.view.core.button.TurnOSMake',{
  5. extend: 'Ext.Button',
  6. alias: 'widget.erpTurnOSMakeButton',
  7. text: $I18N.common.button.erpTurnOSMakeButton,
  8. iconCls: 'x-button-icon-submit',
  9. cls: 'x-btn-gray',
  10. width: 110,
  11. id: 'erpTurnOSMakeButton',
  12. initComponent : function(){
  13. this.callParent(arguments);
  14. }
  15. });