JProcessSet.js 912 B

12345678910111213141516171819202122232425262728293031
  1. Ext.define('erp.view.common.JProcess.JProcessSet',{
  2. extend: 'Ext.Viewport',
  3. layout: 'fit',
  4. hideBorders: true,
  5. initComponent : function(){
  6. var me = this;
  7. Ext.apply(me, {
  8. items: [{
  9. id:'jprocessSet',
  10. layout: 'anchor',
  11. items: [{
  12. xtype: 'erpFormPanel',
  13. anchor: '100% 100%',
  14. saveUrl: 'common/saveJprocessSet.action',
  15. deleteUrl: 'common/deleteJprocessSet.action',
  16. updateUrl: 'common/updateJprocessSet.action',
  17. /*auditUrl: 'common/saveJprocessSet.action',
  18. resAuditUrl: 'common/saveJprocessSet.action',
  19. submitUrl: 'common/saveJprocessSet.action',
  20. resSubmitUrl: 'common/saveJprocessSet.action',*/
  21. postUrl: 'common/postJprocessSet.action',
  22. getIdUrl: 'common/getId.action?seq=JPROCESSSET_SEQ',
  23. keyField: 'js_id',
  24. /*codeField: 'ar_code',
  25. statusField: 'ar_status'*/
  26. }]
  27. }]
  28. });
  29. me.callParent(arguments);
  30. }
  31. });