VerifyApplyChange.js 988 B

1234567891011121314151617181920212223242526272829303132
  1. Ext.define('erp.view.scm.purchase.VerifyApplyChange',{
  2. extend: 'Ext.Viewport',
  3. layout: 'anchor',
  4. hideBorders: true,
  5. initComponent : function(){
  6. var me = this;
  7. Ext.apply(me, {
  8. items: [{
  9. xtype: 'erpFormPanel',
  10. anchor: '100% 28%',
  11. saveUrl: 'scm/purchase/saveVerifyApplyChange.action',
  12. deleteUrl: 'scm/purchase/deleteVerifyApplyChange.action',
  13. updateUrl: 'scm/purchase/updateVerifyApplyChange.action',
  14. auditUrl: 'scm/purchase/auditVerifyApplyChange.action',
  15. submitUrl: 'scm/purchase/submitVerifyApplyChange.action',
  16. resSubmitUrl: 'scm/purchase/resSubmitVerifyApplyChange.action',
  17. getIdUrl: 'common/getId.action?seq=VERIFYAPPLYCHANGE_SEQ',
  18. keyField: 'vc_id',
  19. codeField: 'vc_code',
  20. statusField: 'vc_statuscode'
  21. },{
  22. xtype: 'erpGridPanel2',
  23. anchor: '100% 72%',
  24. detno: 'vcd_detno',
  25. necessaryField: 'vcd_vacode',
  26. keyField: 'vcd_id',
  27. mainField: 'vcd_vcid'
  28. }]
  29. });
  30. me.callParent(arguments);
  31. }
  32. });