HistoryProdIO.js 508 B

12345678910111213141516171819202122
  1. /**
  2. *制造单、委外单:出入库明细
  3. */
  4. Ext.define('erp.view.core.button.HistoryProdIO',{
  5. extend: 'Ext.Button',
  6. alias: 'widget.erpHistoryProdIOButton',
  7. iconCls: 'x-button-icon-yuan',
  8. cls: 'x-btn-gray',
  9. id: 'historyprodio',
  10. text: $I18N.common.button.erpHistoryProdIOButton,
  11. style: {
  12. marginLeft: '10px'
  13. },
  14. width: 140,
  15. initComponent : function(){
  16. this.callParent(arguments);
  17. this.addEvents({
  18. base: true,
  19. formal: true
  20. });
  21. }
  22. });