| 1234567891011121314151617181920212223242526272829303132333435 |
- Ext.define('erp.view.scm.reserve.ReserveCloseForm',{
- extend: 'Ext.form.Panel',
- alias: 'widget.ReserveClose',
- id: 'form',
- title: '<font color=#a1a1a1; size=3>库存结账作业 </font>',
- frame : true,
- autoScroll : true,
- buttonAlign : 'center',
- FormUtil: Ext.create('erp.util.FormUtil'),
- fieldDefaults : {
- margin : '4 2 4 2',
- fieldStyle : "background:#FFFAFA;color:#515151;",
- labelAlign : "right",
- msgTarget: 'side',
- blankText : $I18N.common.form.blankText
- },
- initComponent : function(){
- this.callParent(arguments);
- },
- items: [{
- xtype: 'monthdatefield',
- fieldLabel: '日期',
- allowBlank: false,
- readOnly:true,
- id: 'date',
- name: 'date'
- }],
- buttons: [{
- xtype: 'erpCheckbeforePostButton'
- },{
- xtype: 'erpCheckPostButton'
- },{
- xtype:'erpCloseButton'
- }]
- });
|