| 1234567891011121314151617181920212223242526272829303132 |
- Ext.define('erp.view.pm.mes.Craft',{
- extend: 'Ext.Viewport',
- layout: 'anchor',
- initComponent : function(){
- var me = this;
- Ext.apply(me, {
- items: [{
- xtype: 'erpFormPanel',
- anchor: '100% 30%',
- saveUrl: 'pm/mes/saveCraft.action',
- deleteUrl: 'pm/mes/deleteCraft.action',
- updateUrl: 'pm/mes/updateCraft.action',
- getIdUrl: 'common/getId.action?seq=Craft_SEQ',
- submitUrl: 'pm/mes/submitCraft.action',
- auditUrl: 'pm/mes/auditCraft.action',
- resAuditUrl: 'pm/mes/resAuditCraft.action',
- resSubmitUrl: 'pm/mes/resSubmitCraft.action',
- keyField: 'cr_id',
- codeField: 'cr_code',
- statusField: 'cr_status',
- statuscodeField: 'cr_statuscode'
- },{
- xtype: 'erpGridPanel2',
- anchor: '100% 70%',
- detno: 'cd_detno',
- keyField: 'cd_id',
- mainField: 'cd_crid'
- }]
- });
- me.callParent(arguments);
- }
- });
|