LocationAndTaskMonitorApp.cs
13.4 KB
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
using Infrastructure;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http;
using Newtonsoft.Json.Linq;
using OfficeOpenXml.FormulaParsing.Excel.Functions.RefAndLookup;
using System;
using System.Collections.Generic;
using System.Dynamic;
using System.Linq;
using System.Linq.Expressions;
using WebRepository;
namespace WebApp
{
/// <summary>
//任务仓位监控
/// </summary>
public partial class LocationAndTaskMonitorApp
{
private IUnitWork _unitWork;
public LocationAndTaskMonitorApp(IUnitWork unitWork)
{
_unitWork = unitWork;
}
public TableData FindTaskApp(int Roadway)
{
TableData tab = new TableData();
try
{
List<ShipmentDetail> list = (from sd in _unitWork.Find<ShipmentDetail>(n => !string.IsNullOrEmpty(n.ShipmentCode)).ToList()
join sh in _unitWork.Find<ShipmentHeader>(n => !string.IsNullOrEmpty(n.Code)).ToList()
on sd.ShipmentCode equals sh.Code
join st in _unitWork.Find<StationRoadway>(n => n.RoadWay == Roadway).ToList()
on sh.Station equals st.StationCode
select sd).ToList();
List<dynamic> templist = new List<dynamic>();
foreach (ShipmentDetail sd in list)
{
Station station = (from st in _unitWork.Find<Station>(n => !string.IsNullOrEmpty(n.Code)).ToList()
join sh in _unitWork.Find<ShipmentHeader>(n => !string.IsNullOrEmpty(n.Station) && n.Code == sd.ShipmentCode).ToList()
on st.Code equals sh.Station
select st).FirstOrDefault();
dynamic temp = new ExpandoObject();
if (station != null)
{
temp.Station = station.Name;
}
else
{
temp.Station = "未找到站台";
}
temp.Id = sd.Id;
temp.SourceCode = sd.SourceCode;
temp.MaterialCode = sd.MaterialCode;
temp.Qty = sd.Qty;
temp.QtyDivided = sd.QtyDivided;
templist.Add(temp);
}
tab.data = templist;
tab.code = 200;
}
catch (Exception ex)
{
tab.code = 300;
tab.msg = ex.Message;
}
return tab;
}
public TableData FindTaskNumApp(int Roadway)
{
TableData tab = new TableData();
try
{
List<ExpandoObject> list = new List<ExpandoObject>();
if (Roadway != 5)
{
int diSnum = (from sd in _unitWork.Find<ShipmentDetail>(n => !string.IsNullOrEmpty(n.ShipmentCode) && n.Status == ShipmentHeaderStatus.分配完成).ToList()
join sh in _unitWork.Find<ShipmentHeader>(n => !string.IsNullOrEmpty(n.Code)).ToList()
on sd.ShipmentCode equals sh.Code
join st in _unitWork.Find<StationRoadway>(n => n.RoadWay == Roadway).ToList()
on sh.Station equals st.StationCode
select sd).Count();
dynamic temp = new ExpandoObject();
temp.name = "分配完成";
temp.num = diSnum;
list.Add(temp);
int num = (from sd in _unitWork.Find<ShipmentDetail>(n => !string.IsNullOrEmpty(n.ShipmentCode) && n.Status != ShipmentHeaderStatus.分配完成).ToList()
join sh in _unitWork.Find<ShipmentHeader>(n => !string.IsNullOrEmpty(n.Code)).ToList()
on sd.ShipmentCode equals sh.Code
join st in _unitWork.Find<StationRoadway>(n => n.RoadWay == Roadway).ToList()
on sh.Station equals st.StationCode
select sd).Count();
temp = new ExpandoObject();
temp.name = "未分配完成";
temp.num = num;
list.Add(temp);
}
else if(Roadway == 5)
{
int Emptynum = (from loc in _unitWork.Find<Location>(n => n.Status == LocationStatus.空容器 && n.Roadway == Roadway).ToList()
join con in _unitWork.Find<Container>(n => n.Type == ContainerType.木栈板母板_2).ToList()
on loc.ContainerCode equals con.Code
group loc by loc.ContainerCode into code
select code).Count();
dynamic temp = new ExpandoObject();
temp.name = "大板空容器";
temp.num = Emptynum;
list.Add(temp);
//int EmptyLocnum = (from loca in _unitWork.Find<Location>(n => n.Status == LocationStatus.空仓位 && n.IsStop == false && n.MaxHeight >= 0 && n.Roadway == Roadway && n.ContainerCode == "" && n.DistributionType != LocationDistributionType.被分配库位静态库位)
// join Cloca in _unitWork.Find<Location>(n => n.Status == LocationStatus.空仓位 && n.IsStop == false && n.MaxHeight >= 0 && n.Roadway == Roadway && n.ContainerCode == "")
// on loca.ContiguousCode equals Cloca.Code
// group loca by loca.ContainerCode into code
// select code).Count();
//temp = new ExpandoObject();
//temp.name = "大板空仓位";
//temp.num = EmptyLocnum;
//list.Add(temp);
int Tasknum = (from loc in _unitWork.Find<Location>(n => n.Status == LocationStatus.任务锁定中 && n.Roadway == Roadway).ToList()
join con in _unitWork.Find<Container>(n => n.Type == ContainerType.木栈板母板_2).ToList()
on loc.ContainerCode equals con.Code
group loc by loc.ContainerCode into code
select code).Count();
temp = new ExpandoObject();
temp.name = "任务中大板";
temp.num = Tasknum;
list.Add(temp);
int Somenum = (from loc in _unitWork.Find<Location>(n => n.Status == LocationStatus.有货 && n.Roadway == Roadway).ToList()
join con in _unitWork.Find<Container>(n => n.Type == ContainerType.木栈板母板_2).ToList()
on loc.ContainerCode equals con.Code
group loc by loc.ContainerCode into code
select code).Count();
temp = new ExpandoObject();
temp.name = "有货大板";
temp.num = Somenum;
list.Add(temp);
}
tab.data = list;
tab.code = 200;
}
catch (Exception ex)
{
tab.code = 300;
tab.msg = ex.Message;
}
return tab;
}
public TableData FindPalletApp(int Roadway)
{
TableData tab = new TableData();
try
{
List<ExpandoObject> list = new List<ExpandoObject>();
if (Roadway == 5)
{
int Emptynum = (from loc in _unitWork.Find<Location>(n => n.Status == LocationStatus.空容器 && n.Roadway == Roadway).ToList()
join con in _unitWork.Find<Container>(n => n.Type == ContainerType.木栈板母板_1).ToList()
on loc.ContainerCode equals con.Code
select loc).Count();
dynamic temp = new ExpandoObject();
temp.name = "小板空容器";
temp.num = Emptynum;
list.Add(temp);
int EmptyLocnum = _unitWork.Find<Location>(n => n.Status == LocationStatus.空仓位 && n.Roadway == Roadway).Count();
temp = new ExpandoObject();
temp.name = "小板空仓位";
temp.num = EmptyLocnum;
list.Add(temp);
int Tasknum = (from loc in _unitWork.Find<Location>(n => n.Status == LocationStatus.任务锁定中 && n.Roadway == Roadway).ToList()
join con in _unitWork.Find<Container>(n => n.Type == ContainerType.木栈板母板_1).ToList()
on loc.ContainerCode equals con.Code
select loc).Count();
temp = new ExpandoObject();
temp.name = "任务中小板";
temp.num = Tasknum;
list.Add(temp);
int Somenum = (from loc in _unitWork.Find<Location>(n => n.Status == LocationStatus.有货 && n.Roadway == Roadway).ToList()
join con in _unitWork.Find<Container>(n => n.Type == ContainerType.木栈板母板_1).ToList()
on loc.ContainerCode equals con.Code
select loc).Count();
temp = new ExpandoObject();
temp.name = "有货小板";
temp.num = Somenum;
list.Add(temp);
}
else if (Roadway == 2)
{
int Emptynum = _unitWork.Find<Location>(n => n.Status == LocationStatus.空容器 && n.Roadway == Roadway).Count();
dynamic temp = new ExpandoObject();
temp.name = "空托盘";
temp.num = Emptynum;
list.Add(temp);
int EmptyLocnum_850 = _unitWork.Find<Location>(n => n.Status == LocationStatus.空仓位 && n.Roadway == Roadway && n.MaxHeight == 850).Count();
temp = new ExpandoObject();
temp.name = "850空仓位";
temp.num = EmptyLocnum_850;
list.Add(temp);
int EmptyLocnum_1150 = _unitWork.Find<Location>(n => n.Status == LocationStatus.空仓位 && n.Roadway == Roadway && n.MaxHeight == 1150).Count();
temp = new ExpandoObject();
temp.name = "1150空仓位";
temp.num = EmptyLocnum_1150;
list.Add(temp);
int EmptyLocnum_1350 = _unitWork.Find<Location>(n => n.Status == LocationStatus.空仓位 && n.Roadway == Roadway && n.MaxHeight == 1350).Count();
temp = new ExpandoObject();
temp.name = "1350空仓位";
temp.num = EmptyLocnum_1350;
list.Add(temp);
int Tasknum = _unitWork.Find<Location>(n => n.Status == LocationStatus.任务锁定中 && n.Roadway == Roadway).Count();
temp = new ExpandoObject();
temp.name = "任务中";
temp.num = Tasknum;
list.Add(temp);
int Somenum = _unitWork.Find<Location>(n => n.Status == LocationStatus.有货 && n.Roadway == Roadway).Count();
temp = new ExpandoObject();
temp.name = "有货";
temp.num = Somenum;
list.Add(temp);
}
else
{
int Emptynum = _unitWork.Find<Location>(n => n.Status == LocationStatus.空容器 && n.Roadway == Roadway).Count();
dynamic temp = new ExpandoObject();
temp.name = "空容器";
temp.num = Emptynum;
list.Add(temp);
int EmptyLocnum = _unitWork.Find<Location>(n => n.Status == LocationStatus.空仓位 && n.Roadway == Roadway).Count();
temp = new ExpandoObject();
temp.name = "空仓位";
temp.num = EmptyLocnum;
list.Add(temp);
int Tasknum = _unitWork.Find<Location>(n => n.Status == LocationStatus.任务锁定中 && n.Roadway == Roadway).Count();
temp = new ExpandoObject();
temp.name = "任务中";
temp.num = Tasknum;
list.Add(temp);
int Somenum = _unitWork.Find<Location>(n => n.Status == LocationStatus.有货 && n.Roadway == Roadway).Count();
temp = new ExpandoObject();
temp.name = "有货";
temp.num = Somenum;
list.Add(temp);
}
tab.data = list;
tab.code = 200;
}
catch (Exception ex)
{
tab.code = 300;
tab.msg = ex.Message;
}
return tab;
}
}
}