1234567891011121314151617181920212223242526272829303132333435363738 |
- Ext.define('erp.view.scm.reserve.CheckForm',{
- extend: 'Ext.form.Panel',
- alias: 'widget.Check',
- 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: 'textfield',
- fieldLabel:'盘点标签别',
- allowBlank: true,
- id: 'check',
- name: 'check'
- },{
- xtype: 'textfield',
- fieldLabel:'备注说明',
- allowBlank: true,
- id: 'text',
- name: 'text'
- }],
- buttons: [{
- xtype: 'erpConfirmButton'
- },{
- xtype:'erpCloseButton'
- }]
- });
|