Loan.js 706 B

12345678910111213141516171819202122232425
  1. Ext.define('erp.view.fa.fp.Loan',{
  2. extend: 'Ext.Viewport',
  3. layout: 'anchor',
  4. /*hideBorders: true, */
  5. initComponent : function(){
  6. var me = this;
  7. Ext.apply(me, {
  8. items: [{
  9. anchor: '100% 100%',
  10. xtype: 'erpFormPanel',
  11. saveUrl: 'fa/fp/saveLoan.action',
  12. deleteUrl: 'fa/fp/deleteLoan.action',
  13. updateUrl: 'fa/fp/updateLoan.action',
  14. auditUrl: 'fa/fp/auditLoan.action',
  15. resAuditUrl: 'fa/fp/resAuditLoan.action',
  16. submitUrl: 'fa/fp/submitLoan.action',
  17. resSubmitUrl: 'fa/fp/resSubmitLoan.action',
  18. getIdUrl: 'common/getId.action?seq=CreditManagement_SEQ',
  19. keyField: 'cm_id',
  20. statusField: 'cm_statuscode'
  21. }]
  22. });
  23. me.callParent(arguments);
  24. }
  25. });