DCBasicInformation.js 849 B

123456789101112131415161718192021222324252627
  1. Ext.define('erp.view.fa.fp.DCBasicInformation',{
  2. extend: 'Ext.Viewport',
  3. layout: 'anchor',
  4. hideBorders: true,
  5. initComponent : function(){
  6. var me = this;
  7. Ext.apply(me, {
  8. items: [{
  9. items: [{
  10. anchor: '100% 100%',
  11. xtype: 'erpFormPanel',
  12. saveUrl: 'fa/fp/saveDCBasicInformation.action',
  13. deleteUrl: 'fa/fp/deleteDCBasicInformation.action',
  14. updateUrl: 'fa/fp/updateDCBasicInformation.action',
  15. auditUrl: 'fa/fp/auditDCBasicInformation.action',
  16. resAuditUrl: 'fa/fp/resAuditDCBasicInformation.action',
  17. submitUrl: 'fa/fp/submitDCBasicInformation.action',
  18. resSubmitUrl: 'fa/fp/resSubmitDCBasicInformation.action',
  19. getIdUrl: 'common/getId.action?seq=CreditManagement_SEQ',
  20. keyField: 'cm_id',
  21. statusField: 'cm_statuscode'
  22. }]
  23. }]
  24. });
  25. me.callParent(arguments);
  26. }
  27. });