UnPeriodsdetailForm.js 827 B

123456789101112131415161718192021222324252627282930313233
  1. Ext.define('erp.view.scm.reserve.UnPeriodsdetailForm',{
  2. extend: 'Ext.form.Panel',
  3. alias: 'widget.UnPeriodsdetail',
  4. id: 'form',
  5. title: '<font color=#a1a1a1; size=3>库存反结账作业 </font>',
  6. frame : true,
  7. autoScroll : true,
  8. buttonAlign : 'center',
  9. FormUtil: Ext.create('erp.util.FormUtil'),
  10. fieldDefaults : {
  11. margin : '4 2 4 2',
  12. fieldStyle : "background:#FFFAFA;color:#515151;",
  13. labelAlign : "right",
  14. msgTarget: 'side',
  15. blankText : $I18N.common.form.blankText
  16. },
  17. initComponent : function(){
  18. this.callParent(arguments);
  19. },
  20. items: [{
  21. xtype: 'monthdatefield',
  22. fieldLabel: '日期',
  23. allowBlank: false,
  24. readOnly:true,
  25. id: 'date',
  26. name: 'date'
  27. }],
  28. buttons: [{
  29. xtype: 'erpUnCheckPostButton'
  30. },{
  31. xtype:'erpCloseButton'
  32. }]
  33. });