Productline.js 880 B

12345678910111213141516171819202122232425262728
  1. Ext.define('erp.view.plm.project.Productline',{
  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. saveUrl: 'common/saveCommon.action?caller='+caller,
  14. deleteUrl: 'common/deleteCommon.action?caller='+caller,
  15. updateUrl: 'common/updateCommon.action?caller='+caller,
  16. auditUrl: 'common/auditCommon.action?caller='+caller,
  17. resAuditUrl: 'common/resAuditCommon.action?caller='+caller,
  18. submitUrl: 'common/submitCommon.action?caller='+caller,
  19. resSubmitUrl: 'common/resSubmitCommon.action?caller='+caller,
  20. getIdUrl: 'common/getId.action?seq=Productline_SEQ',
  21. keyField: 'pl_id',
  22. codeField:'pl_code'
  23. }]
  24. }]
  25. });
  26. me.callParent(arguments);
  27. }
  28. });