| 12345678910111213141516171819202122232425 |
- Ext.define('erp.view.fa.fp.Loan',{
- extend: 'Ext.Viewport',
- layout: 'anchor',
- /*hideBorders: true, */
- initComponent : function(){
- var me = this;
- Ext.apply(me, {
- items: [{
- anchor: '100% 100%',
- xtype: 'erpFormPanel',
- saveUrl: 'fa/fp/saveLoan.action',
- deleteUrl: 'fa/fp/deleteLoan.action',
- updateUrl: 'fa/fp/updateLoan.action',
- auditUrl: 'fa/fp/auditLoan.action',
- resAuditUrl: 'fa/fp/resAuditLoan.action',
- submitUrl: 'fa/fp/submitLoan.action',
- resSubmitUrl: 'fa/fp/resSubmitLoan.action',
- getIdUrl: 'common/getId.action?seq=CreditManagement_SEQ',
- keyField: 'cm_id',
- statusField: 'cm_statuscode'
- }]
- });
- me.callParent(arguments);
- }
- });
|