OtherOutcomeBill.js 835 B

123456789101112131415161718192021222324252627
  1. Ext.define('erp.view.fa.fp.OtherOutcomeBill',{
  2. extend: 'Ext.Viewport',
  3. layout: 'anchor',
  4. hideBorders: true,
  5. initComponent : function(){
  6. var me = this;
  7. Ext.apply(me, {
  8. items: [{
  9. items: [{
  10. anchor: '100% 100%',
  11. xtype: 'erpFormPanel',
  12. saveUrl: 'fa/fp/saveOtherOutcomeBill.action',
  13. deleteUrl: 'fa/fp/deleteOtherOutcomeBill.action',
  14. updateUrl: 'fa/fp/updateOtherOutcomeBill.action',
  15. auditUrl: 'fa/fp/auditOtherOutcomeBill.action',
  16. resAuditUrl: 'fa/fp/resAuditOtherOutcomeBill.action',
  17. submitUrl: 'fa/fp/submitOtherOutcomeBill.action',
  18. resSubmitUrl: 'fa/fp/resSubmitOtherOutcomeBill.action',
  19. getIdUrl: 'common/getId.action?seq=OTHEROUTCOMEBILL_SEQ',
  20. keyField: 'oob_id',
  21. statusField: 'oob_statuscode'
  22. }]
  23. }]
  24. });
  25. me.callParent(arguments);
  26. }
  27. });