| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- Ext.define('erp.view.oa.info.Formr',{
- extend: 'Ext.form.Panel',
- alias: 'widget.erpPagingFormPanelr',
- id: 'formr', //
- region: 'north',
- frame : true,
- layout : 'column',
- autoScroll : true,
- defaultType : 'textfield',
- labelSeparator : ':',
- buttonAlign : 'center',
- fieldDefaults : {
- margin : '4 2 4 2',
- fieldStyle : "background:#FFFAFA;color:#515151;",
- labelAlign : "right",
- blankText : $I18N.common.form.blankText
- },
- FormUtil: Ext.create('erp.util.FormUtil'),
- BaseUtil: Ext.create('erp.util.BaseUtil'),
- tbar: [{
- name: 'query',
- text: $I18N.common.button.erpQueryButton,
- iconCls: 'x-button-icon-query',
- cls: 'x-btn-gray',
- handler: function(){
- var grid = Ext.getCmp('grid');
- var condition = 'prd_recipientid=' + em_uu;
- if(Ext.getCmp('pr_releaserid').value != null && Ext.getCmp('pr_releaserid').value != ''){
- condition += " AND pr_releaserid=" + Ext.getCmp('pr_releaserid').value;
- }
- if(Ext.getCmp('pr_date').value != null && Ext.getCmp('pr_date').value != ''){
- if(condition == ''){
- condition += " (pr_date " + Ext.getCmp('pr_date').value + ")";
- } else {
- condition += " AND (pr_date " + Ext.getCmp('pr_date').value + ")";
- }
- }
- if(Ext.getCmp('pr_context').value != null && Ext.getCmp('pr_context').value != ''){
- if(condition == ''){
- condition += " pr_context like'%" + Ext.getCmp('pr_context').value + "%'";
- } else {
- condition += " AND pr_context like'%" + Ext.getCmp('pr_context').value + "%'";
- }
- }
- if(condition != ''){
- grid.getCount('PagingRelease', condition);
- } else {
- showError('请填写筛选条件');return;
- }
- }
- }, '-', {
- text: $I18N.common.button.erpCloseButton,
- iconCls: 'x-button-icon-close',
- cls: 'x-btn-gray',
- handler: function(){
- var main = parent.Ext.getCmp("content-panel");
- main.getActiveTab().close();
- }
- }, '->', {
- id: 'vastdelete',
- iconCls: 'group-delete',
- cls: 'x-btn-gray',
- text: $I18N.common.button.erpDeleteButton
- }/*,'-',{
- iconCls: 'group-read',
- text: "回复",
- cls: 'x-btn-gray',
- handler: function(){
-
- }
- }*/,'-',{
- id:'relay',
- iconCls: 'group-post',
- text: "转发",
- cls: 'x-btn-gray'
- },'-',{
- id: 'all',
- iconCls: 'group-all',
- text: "查看所有寻呼",
- cls: 'x-btn-gray'
- },'-',{
- id: 'read',
- iconCls: 'group-read',
- text: "查看已阅寻呼",
- cls: 'x-btn-gray'
- },'-',{
- id: 'unread',
- iconCls: 'group-unread',
- text: "查看未阅寻呼",
- cls: 'x-btn-gray'
- },'-',{
- id: 'draft',
- iconCls: 'group-draft',
- text: "保留",
- cls: 'x-btn-gray'
- }],
- initComponent : function(){
- var param = {caller: caller, condition: ''};
- this.FormUtil.getItemsAndButtons(this, 'common/singleFormItems.action', param);
- this.callParent(arguments);
- }
- });
|