MakeCloseForm.js 915 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. Ext.define('erp.view.pm.outsource.MakeCloseForm',{
  2. extend: 'Ext.form.Panel',
  3. alias: 'widget.MakeClose',
  4. id: 'form',
  5. frame : true,
  6. autoScroll : true,
  7. buttonAlign : 'center',
  8. FormUtil: Ext.create('erp.util.FormUtil'),
  9. initComponent : function(){
  10. this.callParent(arguments);
  11. },
  12. fieldDefaults : {
  13. margin : '4 2 4 2',
  14. fieldStyle : "background:#FFFAFA;color:#515151;",
  15. labelAlign : "right",
  16. msgTarget: 'side',
  17. blankText : $I18N.common.form.blankText
  18. },
  19. items: [{
  20. xtype: 'condatefield',
  21. fieldLabel: '日期',
  22. allowBlank: false,
  23. id: 'date',
  24. name: 'date'
  25. },{
  26. xtype: 'ftfindfield',
  27. fieldLabel: '委外单号',
  28. id: 'ma_code',
  29. name: 'ma_code',
  30. labelAlign : "right",
  31. allowBlank: true,
  32. }],
  33. buttons: [{
  34. xtype: 'erpConfirmButton'
  35. },
  36. {
  37. xtype: 'erpCloseButton'
  38. }]
  39. });