Receivables.js 820 B

12345678910111213141516171819202122232425262728
  1. Ext.define('erp.view.fa.fp.Receivables',{
  2. extend: 'Ext.Viewport',
  3. layout: 'anchor',
  4. /*hideBorders: true, */
  5. initComponent : function(){
  6. var me = this;
  7. Ext.apply(me, {
  8. items: [{
  9. anchor: '100% 30%',
  10. xtype: 'erpFormPanel',
  11. saveUrl: 'fa/fp/saveReceivables.action',
  12. deleteUrl: 'fa/fp/deleteReceivables.action',
  13. updateUrl: 'fa/fp/updateReceivables.action',
  14. auditUrl: 'fa/fp/auditReceivables.action',
  15. resAuditUrl: 'fa/fp/resAuditReceivables.action',
  16. submitUrl: 'fa/fp/submitReceivables.action',
  17. resSubmitUrl: 'fa/fp/resSubmitReceivables.action',
  18. getIdUrl: 'common/getId.action?seq=CreditManagement_SEQ',
  19. keyField: 'cm_id',
  20. statusField: 'cm_statuscode'
  21. },{
  22. xtype: 'erpGridPanel2',
  23. anchor: '100% 70%',
  24. }]
  25. });
  26. me.callParent(arguments);
  27. }
  28. });