ProductWhmonth.js 433 B

123456789101112131415161718192021
  1. Ext.define('erp.view.scm.reserve.ProductWhmonth', {
  2. extend : 'Ext.Viewport',
  3. layout : 'anchor',
  4. hideBorders : true,
  5. initComponent : function() {
  6. var me = this;
  7. Ext.apply(me, {
  8. items : [ {
  9. xtype : 'erpBatchDealFormPanel',
  10. anchor : '100% 20%'
  11. }, {
  12. xtype : 'erpDatalistGridPanel',
  13. caller : caller,
  14. anchor : '100% 80%',
  15. _noc : 1,
  16. autoQuery : false
  17. } ]
  18. });
  19. me.callParent(arguments);
  20. }
  21. });