BatchCancelGoods.js 849 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. Ext.define('erp.view.fa.ars.BatchCancelGoods', {
  2. extend : 'Ext.Viewport',
  3. layout : {
  4. type : 'vbox',
  5. align : 'center',
  6. pack : 'center'
  7. },
  8. initComponent : function() {
  9. var me = this;
  10. Ext.apply(me, {
  11. items : [ {
  12. width : 450,
  13. height : 300,
  14. bodyStyle : 'background: #f1f1f1;',
  15. xtype : 'form',
  16. title : '批量取消发出商品',
  17. layout : {
  18. type : 'vbox',
  19. align : 'center'
  20. },
  21. items : [ {
  22. margin : '40 0 0 0',
  23. xtype : 'monthdatefield',
  24. fieldLabel : '期间',
  25. allowBlank : false,
  26. readOnly : true,
  27. labelWidth : 60,
  28. id : 'date',
  29. name : 'date'
  30. } ],
  31. buttonAlign : 'center',
  32. buttons : [ {
  33. xtype : 'erpConfirmButton',
  34. height : 26
  35. }, {
  36. xtype : 'erpCloseButton',
  37. height : 26
  38. } ]
  39. } ]
  40. });
  41. me.callParent(arguments);
  42. }
  43. });