EmpTransferCheck.js 919 B

123456789101112131415161718192021222324252627282930
  1. Ext.define('erp.view.hr.emplmana.EmpTransferCheck',{
  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% 30%',
  13. saveUrl: 'hr/emplmana/saveEmpTransferCheck.action',
  14. deleteUrl: 'hr/emplmana/deleteEmpTransferCheck.action',
  15. updateUrl: 'hr/emplmana/updateEmpTransferCheck.action',
  16. getIdUrl: 'common/getId.action?seq=EmpTransferCheck_SEQ',
  17. keyField: 'ec_id',
  18. auditUrl: 'hr/emplmana/auditEmpTransferCheck.action',
  19. resAuditUrl: 'hr/emplmana/resEmpTransferCheck.action',
  20. submitUrl: 'hr/emplmana/submitEmpTransferCheck.action',
  21. resSubmitUrl: 'hr/emplmana/resSubmitEmpTransferCheck.action'
  22. },{
  23. xtype: 'erpGridPanel2',
  24. anchor: '100% 70%'
  25. }]
  26. }]
  27. });
  28. me.callParent(arguments);
  29. }
  30. });