ProjectFinishReport.js 836 B

1234567891011121314151617181920212223242526
  1. Ext.define('erp.view.plm.cost.ProjectFinishReport',{
  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: 'plm/cost/saveProjectFinishReport.action',
  14. deleteUrl:'plm/cost/deleteProjectFinishReport.action',
  15. updateUrl:'plm/cost/updateProjectFinishReport.action',
  16. submitUrl:'plm/cost/submitProjectFinishReport.action',
  17. resSubmitUrl:'plm/cost/resSubmitProjectFinishReport.action',
  18. auditUrl:'plm/cost/auditProjectFinishReport.action',
  19. resAuditUrl:'plm/cost/resAuditProjectFinishReport.action',
  20. getIdUrl:'common/getId.action?seq=PROJECTFINISHREPORT_SEQ',
  21. }]
  22. }]
  23. });
  24. me.callParent(arguments);
  25. }
  26. });