Batch.js.svn-base 431 B

123456789101112131415161718
  1. Ext.define('erp.view.scm.reserve.Batch',{
  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% 100%',
  10. updateUrl: 'common/updateCommon.action?caller=' +caller,
  11. getIdUrl: 'common/getId.action?seq=BATCH_SEQ',
  12. keyField: 'ba_id',
  13. codeField: 'ba_code'
  14. }]
  15. });
  16. me.callParent(arguments);
  17. }
  18. });