| 123456789101112131415161718192021222324252627282930 |
- Ext.define('erp.view.fa.gla.AccountSet',{
- extend: 'Ext.Viewport',
- layout: 'fit',
- hideBorders: true,
- initComponent : function(){
- var me = this;
- Ext.apply(me, {
- items: [{
- id:'AccountSetViewport',
- layout: 'anchor',
- items: [{
- xtype: 'erpFormPanel',
- anchor: '100% 50%',
- saveUrl: 'fa/ars/saveAccountSet.action',
- deleteUrl: 'fa/ars/deleteAccountSet.action',
- updateUrl: 'fa/ars/updateAccountSet.action',
- auditUrl: 'fa/ars/auditAccountSet.action',
- resAuditUrl: 'fa/ars/resAuditAccountSet.action',
- submitUrl: 'fa/ars/submitAccountSet.action',
- resSubmitUrl: 'fa/ars/resSubmitAccountSet.action',
- getIdUrl: 'common/getId.action?seq=AccountSet_SEQ',
- keyField: 'as_id',
- /* codeField: 'abb_code',*/
- /*statusField: ''*/
- }]
- }]
- });
- me.callParent(arguments);
- }
- });
|