LogicNeed.js 439 B

123456789101112131415161718
  1. Ext.define('erp.view.ma.logic.LogicNeed',{
  2. extend: 'Ext.Viewport',
  3. layout: 'fit',
  4. hideBorders: true,
  5. initComponent : function(){
  6. var me = this;
  7. Ext.apply(me, {
  8. items: [{
  9. xtype: 'erpFormPanel',
  10. saveUrl: 'ma/logic/saveLogicNeed.action',
  11. updateUrl: 'ma/logic/updateLogicNeed.action',
  12. getIdUrl: 'common/getId.action?seq=LOGICNEED_SEQ',
  13. keyField: 'ln_id'
  14. }]
  15. });
  16. me.callParent(arguments);
  17. }
  18. });