KBIChangeMan.js 839 B

1234567891011121314151617181920212223242526272829
  1. Ext.define('erp.view.hr.kbi.KBIChangeMan',{
  2. extend: 'Ext.Viewport',
  3. layout: 'fit',
  4. hideBorders: true,
  5. initComponent : function(){
  6. var me = this;
  7. Ext.apply(me, {
  8. items: [{
  9. id:'erpFormPanel',
  10. layout: 'anchor',
  11. items: [{
  12. xtype: 'erpFormPanel',
  13. anchor: '100% 100%',
  14. saveUrl: 'hr/kbi/saveKBIChangeMan.action',
  15. deleteUrl: 'hr/kbi/deleteKBIChangeMan.action',
  16. updateUrl: 'hr/kbi/updateKBIChangeMan.action',
  17. getIdUrl: 'common/getId.action?seq=KBIChangeMan_SEQ',
  18. auditUrl: 'hr/kbi/auditKBIChangeMan.action',
  19. resAuditUrl: 'hr/kbi/resAuditKBIChangeMan.action',
  20. submitUrl: 'hr/kbi/submitKBIChangeMan.action',
  21. resSubmitUrl: 'hr/kbi/resSubmitKBIChangeMan.action',
  22. keyField: 'ka_id',
  23. codeField: 'ka_code'
  24. }]
  25. }]
  26. });
  27. me.callParent(arguments);
  28. }
  29. });