OtherIncomeBill.js 846 B

12345678910111213141516171819202122232425262728
  1. Ext.define('erp.view.fa.fp.OtherIncomeBill',{
  2. extend: 'Ext.Viewport',
  3. layout: 'fit',
  4. hideBorders: true,
  5. initComponent : function(){
  6. var me = this;
  7. Ext.apply(me, {
  8. items: [{
  9. layout: 'anchor',
  10. items: [{
  11. xtype: 'erpFormPanel',
  12. anchor: '100% 100%',
  13. saveUrl: 'fa/fp/saveOtherIncomeBill.action',
  14. deleteUrl: 'fa/fp/deleteOtherIncomeBill.action',
  15. updateUrl: 'fa/fp/updateOtherIncomeBill.action',
  16. auditUrl: 'fa/fp/auditOtherIncomeBill.action',
  17. resAuditUrl: 'fa/fp/resAuditOtherIncomeBill.action',
  18. submitUrl: 'fa/fp/submitOtherIncomeBill.action',
  19. resSubmitUrl: 'fa/fp/resSubmitOtherIncomeBill.action',
  20. getIdUrl: 'common/getId.action?seq=OTHERINCOMEBILL_SEQ',
  21. keyField: 'oib_id',
  22. statusField: 'oib_statuscode'
  23. }]
  24. }]
  25. });
  26. me.callParent(arguments);
  27. }
  28. });