MJProjectChange.js 889 B

1234567891011121314151617181920212223242526272829
  1. Ext.define('erp.view.pm.mould.MJProjectChange',{
  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:'MJProjectChangeViewport',
  10. layout: 'anchor',
  11. items: [{
  12. xtype: 'erpFormPanel',
  13. anchor: '100% 100%',
  14. saveUrl: 'common/saveCommon.action?caller=' +caller,
  15. deleteUrl: 'common/deleteCommon.action?caller=' +caller,
  16. updateUrl: 'common/updateCommon.action?caller=' +caller,
  17. auditUrl: 'pm/mould/auditMJProjectChange.action',
  18. submitUrl: 'common/submitCommon.action?caller=' +caller,
  19. resSubmitUrl: 'common/resSubmitCommon.action?caller=' +caller,
  20. getIdUrl: 'common/getCommonId.action?caller=' +caller,
  21. keyField: 'wsc_id',
  22. codeField: 'wsc_code',
  23. statusField: 'wsc_status'
  24. }]
  25. }]
  26. });
  27. me.callParent(arguments);
  28. }
  29. });