lixiaojun
2024-12-20 a7c780692ab2d8072ad4cae0fecbf851c27231d9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
using DevExpress.XtraEditors;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
 
namespace HStation.WinFrmUI
{
    public partial class AssetsExchangerSingleMatchingCtrl : DevExpress.XtraEditors.XtraUserControl
    {
        public AssetsExchangerSingleMatchingCtrl()
        {
            InitializeComponent();
            this.layoutControl1.SetupLayoutControl();
            this.gridView1.SetLimitView();
            this.gridView1.RegistCustomDrawCell();
            this.generalSearchCtrl1.SearchEvent += Search;
            this.generalSearchCtrl1.ClearEvent += Clear;
        }
 
        public List<AssetsExchangerSingleMatchingViewModel> _allList = null;//所有列表
        private List<AssetsExchangerSingleMatchingViewModel> _allBindingList = null;//所有绑定列表
        private AssetsExchangerMainVmo _selected = null;//当前选中
 
        /// <summary>
        /// 绑定数据
        /// </summary>
        public async void SetBindingData(string dbId)
        {
            var allList = await BLLFactory<HStation.BLL.AssetsExchangerMain>.Instance.GetAll();
            _allList = new List<AssetsExchangerSingleMatchingViewModel>();
            allList.ForEach(x => _allList.Add(new AssetsExchangerSingleMatchingViewModel(x)));
            if (long.TryParse(dbId, out long id))
            {
                var item = allList?.Find(x => x.ID == id);
                _selected = item;
            }
            Search();
            if (_selected != null)
            {
                if (_allBindingList != null && _allBindingList.Count > 0)
                {
                    await Task.Run(() =>
                     {
                         var dataSourceIndex = _allBindingList.FindIndex(x => x.Vmo == _selected);
                         if (dataSourceIndex >= 0)
                         {
                             var rowIndex = this.gridView1.GetRowHandle(dataSourceIndex);
                             this.gridView1.FocusedRowHandle = rowIndex;
                         }
                     });
                }
            }
        }
 
        //查询
        private void Search()
        {
            _allBindingList = _allList;
            var name = this.txtName.Text.Trim();
            if (!string.IsNullOrEmpty(this.txtName.Text.Trim()))
            {
                _allBindingList = _allBindingList.Where(x => !string.IsNullOrEmpty(x.Name) && x.Name.Contains(name)).ToList();
            }
            var material = this.txtMaterial.Text.Trim();
            if (!string.IsNullOrEmpty(material))
            {
                _allBindingList = _allBindingList.Where(x => !string.IsNullOrEmpty(x.Material) && x.Material.Contains(material)).ToList();
            }
            double? diameterMin = this.txtDiameterMin.EditValue == null ? null : double.Parse(this.txtDiameterMin.EditValue.ToString());
            if (diameterMin.HasValue)
            {
                _allBindingList = _allBindingList.Where(x => x.Diameter.HasValue && x.Diameter.Value >= diameterMin.Value).ToList();
            }
            double? diameterMax = this.txtDiameterMax.EditValue == null ? null : double.Parse(this.txtDiameterMax.EditValue.ToString());
            if (diameterMax.HasValue)
            {
                _allBindingList = _allBindingList.Where(x => x.Diameter.HasValue && x.Diameter.Value <= diameterMax.Value).ToList();
            }
            this.assetsExchangerSingleMatchingViewModelBindingSource.DataSource = _allBindingList;
            this.assetsExchangerSingleMatchingViewModelBindingSource.ResetBindings(false);
        }
 
        //清除
        private void Clear()
        {
            this.txtName.EditValue = null;
            this.txtMaterial.EditValue = null;
            this.txtDiameterMin.EditValue = null;
            this.txtDiameterMax.EditValue = null;
            Search();
        }
 
        /// <summary>
        /// 获取
        /// </summary>
        public AssetsExchangerMainVmo Get()
        {
            var vm = this.gridView1.GetFocusedRow() as AssetsExchangerSingleMatchingViewModel;
            if (vm == null)
            {
                return default;
            }
            return vm.Vmo;
        }
 
        //聚焦改变
        private void gridView1_FocusedRowChanged(object sender, DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventArgs e)
        {
            var row = this.gridView1.GetFocusedRow() as AssetsExchangerSingleMatchingViewModel;
            if (row == null)
            {
                return;
            }
            this.phartDiagramRelationGridViewCtrl1.SetBindingData(HStation.Assets.DataType.ExchangerMain, row.Vmo.ID);
        }
 
 
 
    }
}