TicketTaxes.js 366 B

1234567891011121314151617
  1. /**
  2. * 更新票税信息
  3. */
  4. Ext.define('erp.view.core.button.TicketTaxes', {
  5. extend : 'Ext.Button',
  6. alias : 'widget.erpTicketTaxesButton',
  7. iconCls : 'x-button-icon-submit',
  8. cls : 'x-btn-gray',
  9. text : $I18N.common.button.erpTicketTaxesButton,
  10. style : {
  11. marginLeft : '10px'
  12. },
  13. width : 120,
  14. initComponent : function() {
  15. this.callParent(arguments);
  16. }
  17. });