VastTurnSale.js 391 B

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