VastMakeBill.js 374 B

123456789101112131415
  1. /**
  2. * 批量开票
  3. */
  4. Ext.define('erp.view.core.button.VastMakeBill',{
  5. extend: 'Ext.Button',
  6. alias: 'widget.erpVastMakeBillButton',
  7. text: $I18N.common.button.erpVastMakeBillButton,
  8. iconCls: 'x-button-icon-submit',
  9. cls: 'x-btn-gray',
  10. width: 60,
  11. id: 'erpVastMakeBillButton',
  12. initComponent : function(){
  13. this.callParent(arguments);
  14. }
  15. });