| 123456789101112131415161718192021222324 |
- Ext.define('erp.view.scm.sale.PackageStandard',{
- extend: 'Ext.Viewport',
- layout: 'fit',
- hideBorders: true,
- initComponent : function(){
- var me = this;
- Ext.apply(me, {
- items: [{
- layout: 'anchor',
- items: [{
- xtype: 'erpFormPanel',
- anchor: '100% 100%',
- saveUrl: 'scm/sale/savePackageStandard.action',
- deleteUrl: 'scm/sale/deletePackageStandard.action',
- updateUrl: 'scm/sale/updatePackageStandard.action',
- getIdUrl: 'common/getId.action?seq=PACKAGESTANDARD_SEQ',
- keyField: 'ps_id',
- codeField: 'ps_code',
- }]
- }]
- });
- me.callParent(arguments);
- }
- });
|