CustomerProduct.js 382 B

123456789101112131415161718
  1. Ext.define('erp.view.scm.product.CustomerProduct', {
  2. extend : 'Ext.Viewport',
  3. layout : 'anchor',
  4. initComponent : function() {
  5. var me = this;
  6. Ext.apply(me, {
  7. items : [ {
  8. xtype: 'erpFormPanel',
  9. anchor: '100% 15%',
  10. saveUrl: 'scm/product/saveCustProd.action'
  11. },{
  12. xtype: 'erpGridPanel2',
  13. anchor: '100% 85%'
  14. } ]
  15. });
  16. me.callParent(arguments);
  17. }
  18. });