ProjectFeeClaim.js 863 B

1234567891011121314151617181920212223242526272829
  1. Ext.define('erp.view.plm.cost.ProjectFeeClaim',{
  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% 55%',
  13. saveUrl: 'plm/cost/saveProjectFeeClaim.action',
  14. deleteUrl:'plm/cost/deleteProjectFeeClaim.action',
  15. updateUrl:'plm/cost/updateProjectFeeClaim.action',
  16. submitUrl:'plm/cost/submitProjectFeeClaim.action',
  17. resSubmitUrl:'plm/cost/resSubmitProjectFeeClaim.action',
  18. auditUrl:'plm/cost/auditProjectFeeClaim.action',
  19. resAuditUrl:'plm/cost/resAuditProjectFeeClaim.action',
  20. getIdUrl:'common/getId.action?seq=ProjectFeeClaim_SEQ',
  21. },{
  22. xtype: 'erpGridPanel2',
  23. anchor: '100% 45%',
  24. }]
  25. }]
  26. });
  27. me.callParent(arguments);
  28. }
  29. });