ContractRenew.js 881 B

12345678910111213141516171819202122232425262728
  1. Ext.define('erp.view.hr.emplmana.ContractRenew',{
  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: 'common/saveCommon.action?caller='+caller,
  14. deleteUrl: 'common/deleteCommon.action?caller='+caller,
  15. updateUrl: 'common/updateCommon.action?caller='+caller,
  16. getIdUrl: 'common/getId.action?seq=ContractRenew_SEQ',
  17. auditUrl: 'hr/emplmana/auditContractRenew.action',
  18. resAuditUrl: 'common/resAuditCommon.action?caller='+caller,
  19. submitUrl: 'common/submitCommon.action?caller='+caller,
  20. resSubmitUrl: 'common/resSubmitCommon.action?caller='+caller,
  21. keyField: 'co_id',
  22. codeField: 'co_code'
  23. }]
  24. }]
  25. });
  26. me.callParent(arguments);
  27. }
  28. });