T8DReport.js 878 B

12345678910111213141516171819202122232425262728
  1. Ext.define('erp.view.scm.qc.T8DReport',{
  2. extend: 'Ext.Viewport',
  3. layout: 'anchor',
  4. initComponent : function(){
  5. var me = this;
  6. Ext.apply(me, {
  7. items: [{
  8. xtype: 'erpFormPanel',
  9. anchor: '100% 100%',
  10. saveUrl: 'scm/qc/saveT8DReport.action',
  11. deleteUrl: 'scm/qc/deleteT8DReport.action',
  12. updateUrl: 'scm/qc/updateT8DReport.action',
  13. auditUrl: 'scm/qc/auditT8DReport.action',
  14. resAuditUrl: 'scm/qc/resAuditT8DReport.action',
  15. submitUrl: 'scm/qc/submitT8DReport.action',
  16. resSubmitUrl: 'scm/qc/resSubmitT8DReport.action',
  17. checkUrl: 'scm/qc/checkT8DReport.action',
  18. resCheckUrl: 'scm/qc/resCheckT8DReport.action',
  19. getIdUrl: 'common/getId.action?seq=T8DREPORT_SEQ',
  20. codeField: 're_code',
  21. keyField: 're_id',
  22. statusField: 're_status',
  23. statuscodeField: 're_statuscode'
  24. }]
  25. });
  26. me.callParent(arguments);
  27. }
  28. });