customzl.js 599 B

1234567891011121314151617181920212223
  1. Ext.define('erp.view.scm.product.customzl',{
  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% 100%',
  11. saveUrl: 'scm/product/saveCustomzl.action',
  12. updateUrl: 'scm/product/updateCustomzl.action',
  13. getIdUrl: 'common/getId.action?seq=customzlb_SEQ',
  14. deleteUrl: 'scm/product/deleteCustomzl.action',
  15. keyField: 'cz_id',
  16. codeField: '',
  17. statusField: 'cz_statuscode',
  18. fixedlayout:true
  19. }]
  20. });
  21. me.callParent(arguments);
  22. }
  23. });