FeeLimit.js 942 B

1234567891011121314151617181920212223242526272829303132333435
  1. Ext.define('erp.view.oa.fee.FeeLimit',{
  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:'erpFormPanel',
  10. layout: 'anchor',
  11. items: [{
  12. xtype: 'erpFormPanel',
  13. anchor: '100% 70%',
  14. saveUrl: 'oa/fee/saveFeeLimit.action',
  15. deleteUrl: 'oa/fee/deleteFeeLimit.action',
  16. updateUrl: 'oa/fee/updateFeeLimit.action',
  17. getIdUrl: 'common/getId.action?seq=FeeLimit_SEQ',
  18. auditUrl: 'oa/fee/auditFeeLimit.action',
  19. resAuditUrl: 'oa/fee/resAuditFeeLimit.action',
  20. submitUrl: 'oa/fee/submitFeeLimit.action',
  21. resSubmitUrl: 'oa/fee/resSubmitFeeLimit.action',
  22. keyField: 'fl_id',
  23. codeField: 'fl_code'
  24. },{
  25. xtype: 'erpGridPanel2',
  26. anchor: '100% 30%',
  27. keyField: 'fld_id',
  28. detno: 'fld_detno',
  29. mainField: 'fld_flid'
  30. }]
  31. }]
  32. });
  33. me.callParent(arguments);
  34. }
  35. });