MakeSend.js 562 B

12345678910111213141516171819202122
  1. Ext.define('erp.view.scm.purchase.MakeSend',{
  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/purchase/MakeSend.action',
  12. deleteUrl: 'scm/purchase/MakeSend.action',
  13. updateUrl: 'scm/purchase/MakeSend.action',
  14. getIdUrl: 'common/getId.action?seq=MAKE_SEQ',
  15. keyField: 'ma_id',
  16. codeField: 'ma_code',
  17. statusField: 'ma_status'
  18. }]
  19. });
  20. me.callParent(arguments);
  21. }
  22. });