| 12345678910111213141516171819202122232425262728293031323334353637 |
- Ext.define('erp.view.pm.mes.Scraper',{
- extend: 'Ext.Viewport',
- layout: 'anchor',
- hideBorders: true,
- initComponent : function(){
- var me = this;
- Ext.apply(me, {
- items: [{
- xtype: 'erpFormPanel',
- anchor: '100% 30%',
- bodyStyle: 'background:#f1f1f1;',
- saveUrl: 'common/saveCommon.action?caller=' +caller,
- deleteUrl: 'common/deleteCommon.action?caller=' +caller,
- updateUrl: 'common/updateCommon.action?caller=' +caller,
- auditUrl: 'pm/mes/auditScraperIn.action?caller=' +caller,
- resAuditUrl: 'pm/mes//resAuditScraperIn.action?caller=' +caller,
- submitUrl: 'pm/mes/submitScraperIn.action?caller=' +caller,
- resSubmitUrl: 'common/resSubmitCommon.action?caller=' +caller,
- getIdUrl: 'common/getId.action?seq=stencil_seq',
- keyField: 'sc_id',
- codeField: 'sc_code',
- statusField:'sc_status',
- statuscodeField:'sc_statuscode',
- tablename:'ScraperChange',
- trackResetOnLoad:true
- },{
- xtype: 'erpGridPanel2',
- anchor: '100% 70%',
- detno: 'scd_detno',
- keyField: 'scd_id',
- mainField: 'scd_scid',
- allowExtraButtons : true
- }]
- });
- me.callParent(arguments);
- }
- });
|