| 123456789101112131415161718192021222324252627282930313233343536 |
- Ext.define('erp.view.pm.mould.Inquiry',{
- extend: 'Ext.Viewport',
- layout: 'fit',
- hideBorders: true,
- initComponent : function(){
- var me = this;
- Ext.apply(me, {
- items: [{
- id:'mouldViewport',
- layout: 'anchor',
- items: [{
- xtype: 'erpFormPanel',
- anchor: '100% 45%',
- saveUrl: 'pm/mould/saveInquiry.action',
- updateUrl: 'pm/mould/updateInquiry.action',
- deleteUrl: 'pm/mould/deleteInquiry.action',
- auditUrl: 'pm/mould/auditInquiry.action',
- resAuditUrl: 'pm/mould/resAuditInquiry.action',
- submitUrl: 'pm/mould/submitInquiry.action',
- resSubmitUrl: 'pm/mould/resSubmitInquiry.action',
- getIdUrl: 'common/getId.action?seq=INQUIRY_SEQ',
- keyField: 'in_id',
- codeField: 'in_code',
- statusField: 'in_statuscode'
- },{
- xtype: 'erpGridPanel2',
- anchor: '100% 55%',
- detno: 'id_detno',
- keyField: 'id_id',
- mainField: 'id_inid'
- }]
- }]
- });
- me.callParent(arguments);
- }
- });
|