lixiaojun
2024-12-20 357693611c60d93fb17189273d4c91dab364f0d4
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
using HStation.WinFrmUI.PhartRelation;
using HStation.WinFrmUI.Xhs;
 
namespace HStation.WinFrmUI
{
    public partial class CompressorSingleMatchingCtrl : DevExpress.XtraEditors.XtraUserControl
    {
        public CompressorSingleMatchingCtrl()
        {
            InitializeComponent();
            this.gridView1.SetNormalView();
            this.gridView3.SetNormalView();
        }
 
        public class PhartViewModel
        {
            public long ID { get; set; }
            public string OtherName { get; set; }
            public int Importance { get; set; }
            public int SortCode { get; set; }
 
            /// <summary>
            /// 容积曲线
            /// </summary>
            public string MinorLossCurve { get; set; }
 
            /// <summary>
            /// 型号ID
            /// </summary>
            public long MainID { get; set; }
        }
 
        public class CurvieInfo
        {
            public long? Dbid { get; set; }
            public long? Curveid { get; set; }
            //   public Vmo.XhsCompressorMainPhartMappingExtensions Curveinfo { get; set; }
        }
 
        private List<CompressorSingleMatchingViewModel> _allBindingList = null;
 
        private BLL.AssetsCompressorMain _CompressorBll = null;
 
        private List<PhartViewModel> _allPhartList = null;
        //private readonly Lazy<BLL.AssetsCompressorCoefficient> _bll_ex = new();
 
        private HydroCompressorMatchingViewModel _pumpMatchingViewModel;
 
        private List<HydroCurvePointViewModel> _currentCurvePoint;
 
        public async void SetBindingData(HydroCompressorMatchingViewModel CompressorMatchingViewModel)
        {
            _pumpMatchingViewModel = CompressorMatchingViewModel;
            _allBindingList = new List<CompressorSingleMatchingViewModel>();
            _CompressorBll = new BLL.AssetsCompressorMain();
            var allAssetsPumpMain = await _CompressorBll.GetAll();
            if (allAssetsPumpMain != null)
            {
                foreach (var Main in allAssetsPumpMain)
                {
                    _allBindingList.Add(new CompressorSingleMatchingViewModel(Main));
                }
            }
            this.CompressorSingleMatchingViewModelBindingSource.DataSource = _allBindingList;
            this.searchControl1.Text = _pumpMatchingViewModel.ModelType;
            for (int i = 0; i < _allBindingList.Count; i++)
            {
                if (long.TryParse(CompressorMatchingViewModel.DbId, out long dbID))
                {
                    if (_allBindingList[i].ID == dbID)
                    {
                        this.gridView3.FocusedRowHandle = i;
                    }
                }
            }
            _currentCurvePoint = new List<HydroCurvePointViewModel>();
        }
 
        //阀门型号列表选择项切换事件
        private async void gridView2_FocusedRowChanged(object sender, DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventArgs e)
        {
            _allPhartList = new List<PhartViewModel>();
            var vm = this.gridView3.GetCurrentViewModel(_allBindingList);
            if (vm != null)
            {
                _pumpMatchingViewModel.MatchingDbId = vm.ID.ToString();
                _pumpMatchingViewModel.MatchingModelType = vm.Name.ToString();
                //var list = await _bll_ex.Value.GetByMainID(vm.ID);
                //if (list != null && list.Any())
                //{
                //    foreach (var item in list)
                //    {
                //        _allPhartList.Add(new PhartViewModel { ID = item.ID, MinorLossCurve = item.MinorLossCurve, MainID = item.MainID, OtherName = "默认曲线", Importance = 1 });
                //    }
                //}
            }
            if (_pumpMatchingViewModel.MatchingCurveDbId != null)
            {
                for (int i = 0; i < _allPhartList.Count; i++)
                {
                    if (_allBindingList[i].ID.ToString() == _pumpMatchingViewModel.MatchingCurveDbId)
                    {
                        gridView1.FocusedRowHandle = i;
                    }
                }
            }
            this.gridControl1.DataSource = _allPhartList;
            this.gridView1.FocusInvalidRow();
        }
 
        //查看曲线
        private async void gridView1_RowCellClick(object sender, DevExpress.XtraGrid.Views.Grid.RowCellClickEventArgs e)
        {
            if (e.Column == this.ColShowChart)
            {
                var vm = this.gridView1.GetCurrentViewModel(_allPhartList);
 
                //var vmo = await _bll_ex.Value.GetByID(vm.ID);
                //if (vmo != null)
                //{
                //    var dlg = new CompressorChartShowDlg();
                //    dlg.InitChart(vmo.MinorLossCurve);
                //    dlg.ShowDialog();
                //}
                return;
            }
        }
 
        private async void gridView1_FocusedRowChanged(object sender, DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventArgs e)
        {
            var vm = this.gridView1.GetCurrentViewModel(_allPhartList);
            _currentCurvePoint.Clear();
            if (vm == null)
                return;
            //var vmo = await _bll_ex.Value.GetByID(vm.ID);
            //if (vmo != null)
            //{
            //    _pumpMatchingViewModel.MatchingCurveDbId = vm.MainID.ToString();
            //    var pt_list = Yw.JsonHelper.Json2Object<List<HydroCurvePointViewModel>>(vm.MinorLossCurve);
            //    _pumpMatchingViewModel.MatchingCurveQL = pt_list;
            //}
        }
    }
}