123456789101112131415161718192021222324252627282930 |
- Ext.define('erp.view.scm.product.ProductSNRelation',{
- 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/saveProductSNRelation.action',
- deleteUrl: 'scm/product/deleteProductSNRelation.action',
- updateUrl: 'scm/product/updateProductSNRelation.action',
- getIdUrl: 'common/getId.action?seq=PRODUCTSNRELATION_SEQ',
- keyField: 'pr_code'
- },{
- xtype: 'erpGridPanel2',
- anchor: '100% 80%',
- detno : 'psr_detno',
- keyField : 'psr_id',
- mainField : 'psr_prodcode'
- }]
- }]
- });
- me.callParent(arguments);
- }
- });
|