| 12345678910111213141516171819202122232425262728293031323334353637 |
- Ext.define('erp.view.fa.arp.MonthAccountOverForm',{
- extend: 'Ext.form.Panel',
- alias: 'widget.MonthAccountOver',
- id: 'form',
- title: '关账及重开作业 ',
- frame : true,
- autoScroll : true,
- buttonAlign : 'center',
- FormUtil: Ext.create('erp.util.FormUtil'),
- confirmUrl:'',
- 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);
- /*this.title = this.FormUtil.getActiveTab().title;*/
- },
- items: [{
- xtype: 'monthdatefield',
- fieldLabel: '当前期间',
- allowBlank: false,
- readOnly:true,
- id: 'date',
- name: 'date'
- }],
- buttons: [{
- xtype: 'erpStartAccountButton'
- },{
- xtype: 'erpOverAccountButton'
- },{
- xtype:'erpCloseButton'
- }]
- });
|