AccountSet.js 827 B

1234567891011121314151617181920212223242526272829
  1. Ext.define('erp.view.fa.ars.AccountSet',{
  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:'categoryViewport',
  10. layout: 'anchor',
  11. items: [{
  12. xtype: 'erpFormPanel',
  13. anchor: '100% 60%',
  14. saveUrl: 'fa/ars/saveAccountSet.action',
  15. deleteUrl: 'fa/ars/deleteAccountSet.action',
  16. updateUrl: 'fa/ars/updateAccountSet.action',
  17. auditUrl: 'fa/ars/auditAccountSet.action',
  18. resAuditUrl: 'fa/ars/resAuditAccountSet.action',
  19. submitUrl: 'fa/ars/submitAccountSet.action',
  20. resSubmitUrl: 'fa/ars/resSubmitAccountSet.action',
  21. getIdUrl: 'common/getId.action?seq=ACCOUNTSET_SEQ',
  22. keyField: 'as_id',
  23. codefield:'as_setcode'
  24. }]
  25. }]
  26. });
  27. me.callParent(arguments);
  28. }
  29. });