ManuFactFee.js 873 B

123456789101112131415161718192021222324252627282930
  1. Ext.define('erp.view.co.cost.ManuFactFee',{
  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. autoScroll: true,
  14. saveUrl: 'co/cost/saveManuFactFee.action',
  15. deleteUrl: 'co/cost/deleteManuFactFee.action',
  16. updateUrl: 'co/cost/updateManuFactFee.action',
  17. auditUrl: 'co/cost/auditManuFactFee.action',
  18. resAuditUrl: 'co/cost/resAuditManuFactFee.action',
  19. submitUrl: 'co/cost/submitManuFactFee.action',
  20. resSubmitUrl: 'co/cost/resSubmitManuFactFee.action',
  21. getIdUrl: 'common/getId.action?seq=MANUFACTFEE_SEQ',
  22. keyField: 'mf_id',
  23. codeField: 'mf_code',
  24. statusField: 'mf_statuscode'
  25. }]
  26. }]
  27. });
  28. me.callParent(arguments);
  29. }
  30. });