Reandpunish.js 821 B

123456789101112131415161718192021222324252627
  1. Ext.define('erp.view.hr.emplmana.Reandpunish',{
  2. extend: 'Ext.Viewport',
  3. layout: 'fit',
  4. hideBorders: true,
  5. initComponent : function(){
  6. var me = this;
  7. Ext.apply(me, {
  8. items: [{
  9. layout: 'anchor',
  10. items: [{
  11. xtype: 'erpFormPanel',
  12. anchor: '100% 100%',
  13. saveUrl: 'hr/emplmana/saveReandpunish.action',
  14. deleteUrl: 'hr/emplmana/deleteReandpunish.action',
  15. updateUrl: 'hr/emplmana/updateReandpunish.action',
  16. getIdUrl: 'common/getId.action?seq=Reandpunish_SEQ',
  17. keyField: 'rp_id',
  18. auditUrl: 'hr/emplmana/auditReandpunish.action',
  19. resAuditUrl: 'hr/emplmana/resAuditReandpunish.action',
  20. submitUrl: 'hr/emplmana/submitReandpunish.action',
  21. resSubmitUrl: 'hr/emplmana/resSubmitReandpunish.action'
  22. }]
  23. }]
  24. });
  25. me.callParent(arguments);
  26. }
  27. });