| 123456789101112131415161718192021222324252627282930 |
- Ext.define('erp.view.scm.product.ProductRelation',{
- extend: 'Ext.Viewport',
- layout: 'fit',
- hideBorders: true,
- initComponent : function(){
- var me = this;
- Ext.apply(me, {
- items: [{
- layout: 'anchor',
- bodyStyle: 'background:#f1f1f1;',
- items: [{
- xtype: 'erpFormPanel',
- anchor: '100% 20%',
- saveUrl: 'scm/product/saveProductRelation.action',
- deleteUrl: 'scm/product/deleteProductRelation.action',
- updateUrl: 'scm/product/updateProductRelation.action',
- getIdUrl: 'common/getId.action?seq=PRODUCTRELATION_SEQ',
- keyField: 'bd_id'
- },{
- xtype: 'erpGridPanel2',
- anchor: '100% 80%',
- detno : 'prr_detno',
- keyField : 'prr_id',
- mainField : 'prr_bdid'
- }]
- }]
- });
- me.callParent(arguments);
- }
- });
|