| 123456789101112131415161718192021222324252627 |
- Ext.define('erp.view.fa.fp.OtherOutcomeBill',{
- extend: 'Ext.Viewport',
- layout: 'anchor',
- hideBorders: true,
- initComponent : function(){
- var me = this;
- Ext.apply(me, {
- items: [{
- items: [{
- anchor: '100% 100%',
- xtype: 'erpFormPanel',
- saveUrl: 'fa/fp/saveOtherOutcomeBill.action',
- deleteUrl: 'fa/fp/deleteOtherOutcomeBill.action',
- updateUrl: 'fa/fp/updateOtherOutcomeBill.action',
- auditUrl: 'fa/fp/auditOtherOutcomeBill.action',
- resAuditUrl: 'fa/fp/resAuditOtherOutcomeBill.action',
- submitUrl: 'fa/fp/submitOtherOutcomeBill.action',
- resSubmitUrl: 'fa/fp/resSubmitOtherOutcomeBill.action',
- getIdUrl: 'common/getId.action?seq=OTHEROUTCOMEBILL_SEQ',
- keyField: 'oob_id',
- statusField: 'oob_statuscode'
- }]
- }]
- });
- me.callParent(arguments);
- }
- });
|