InquiryMaxlimit.js 474 B

12345678910111213141516171819
  1. Ext.define('erp.view.scm.purchase.InquiryMaxlimit',{
  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: 'erpFormPanel',
  10. anchor: '100% 100%',
  11. _noc: 1,
  12. updateUrl: 'common/updateCommon.action?caller=' + caller+'&_noc=1',
  13. getIdUrl: 'common/getId.action?seq=INQUIRYDETAIL_SEQ',
  14. keyField: 'id_id'
  15. }]
  16. });
  17. me.callParent(arguments);
  18. }
  19. });