| 123456789101112131415161718192021222324252627282930313233343536373839 |
- Ext.define('erp.view.pm.mould.PriceMould',{
- extend: 'Ext.Viewport',
- layout: 'fit',
- hideBorders: true,
- initComponent : function(){
- var me = this;
- Ext.apply(me, {
- items: [{
- id:'PriceMouldViewport',
- layout: 'anchor',
- items: [{
- xtype: 'erpFormPanel',
- anchor: '100% 50%',
- saveUrl: 'pm/mould/savePriceMould.action',
- deleteUrl: 'pm/mould/deletePriceMould.action',
- updateUrl: 'pm/mould/updatePriceMould.action',
- auditUrl: 'pm/mould/auditPriceMould.action',
- resAuditUrl: 'pm/mould/resAuditPriceMould.action',
- submitUrl: 'pm/mould/submitPriceMould.action',
- resSubmitUrl: 'pm/mould/resSubmitPriceMould.action',
- bannedUrl: 'pm/mould/bannedPriceMould.action',
- resBannedUrl: 'pm/mould/resBannedPriceMould.action',
- getIdUrl: 'common/getId.action?seq=PriceMould_SEQ',
- keyField: 'pd_id',
- codeField: 'pd_code',
- statusField: 'pd_statuscode'
- },{
- xtype: 'erpGridPanel2',
- anchor: '100% 50%',
- detno: 'pmd_detno',
- necessaryField: 'pmd_prodcode',
- keyField: 'pmd_id',
- mainField: 'pmd_pdid'
- }]
- }]
- });
- me.callParent(arguments);
- }
- });
|