PeriodsdetailfreezeForm.js 880 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. Ext.define('erp.view.scm.reserve.PeriodsdetailfreezeForm',{
  2. extend: 'Ext.form.Panel',
  3. alias: 'widget.Periodsdetailfreeze',
  4. id: 'form',
  5. title: '库存冻结作业',
  6. autoScroll : true,
  7. buttonAlign : 'center',
  8. FormUtil: Ext.create('erp.util.FormUtil'),
  9. layout: {
  10. type: 'vbox',
  11. pack: 'center'
  12. },
  13. fieldDefaults : {
  14. margin : '4 2 4 2',
  15. labelAlign : "right",
  16. msgTarget: 'side',
  17. blankText : $I18N.common.form.blankText
  18. },
  19. initComponent : function(){
  20. this.callParent(arguments);
  21. },
  22. items: [{
  23. xtype: 'monthdatefield',
  24. fieldLabel: '日期',
  25. allowBlank: false,
  26. readOnly:false,
  27. id: 'pd_detno',
  28. name: 'pd_detno'
  29. },{
  30. xtype: 'displayfield',
  31. fieldLabel: '当前冻结期间',
  32. height: 23,
  33. id: 'date',
  34. name:'date'
  35. }],
  36. buttons: [{
  37. xtype: 'erpFreezeButton'
  38. },{
  39. xtype:'erpCloseButton'
  40. }]
  41. });