BusUtilizationRateService.cs
6.42 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
using Autofac.Core;
using Hh.Mes.Common.Infrastructure;
using Hh.Mes.Common.Json;
using Hh.Mes.Common.log;
using Hh.Mes.Common.Request;
using Hh.Mes.Pojo.System;
using Hh.Mes.POJO.Entity;
using Hh.Mes.POJO.Response;
using Hh.Mes.Service.Repository;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
namespace Hh.Mes.Service.Material
{
public class BusUtilizationRateService : RepositorySqlSugar<bus_utilization_rate>
{
#region 属性
public string totLength = "0";
public string totUtiliza = "0%";
#endregion
public dynamic Load(PageReq pageReq, bus_utilization_rate entity)
{
return ExceptionsHelp.Instance.ExecuteT(() =>
{
var result = new Response();
var expression = LinqWhere(entity);
//先组合查询表达式(多表查询查看IOT 设备列表案例)
var cutHeads = Context.Queryable<bus_cutplan_head>().Where(expression).ToList();
if (cutHeads != null && cutHeads.Count > 0)
{
//如果余料大于3000 利用率算为100
foreach (var item in cutHeads)
{
if (item.oddmentsLength >= 3000)
{
item.lossCount = 1;
}
}
totLength = cutHeads.Sum(x => x.pipeLength).ToString();
totUtiliza = Math.Round(cutHeads.Average(x => x.lossCount)*100,2 ).ToString()+"%";
}
List<string> materialCodes = cutHeads.Select(x=>x.materialCode).Distinct().ToList();
//数据可能重复单独取
List<base_material> base_Materials = Context.Queryable<base_material>().In(x=>x.materialCode,materialCodes).ToList();
List<Utilization_rate> rates = new List<Utilization_rate>();
foreach (var item in materialCodes)
{
Utilization_rate rate = new Utilization_rate();
rate.materialCode = item;
rate.lineCode= entity.lineCode;
if (cutHeads.Where(x => x.materialCode == item).ToList().Count>0)
{
double d = Convert.ToDouble(cutHeads.Where(x => x.materialCode == item).ToList().Sum(x=>x.pipeLength));
rate.pipeLength = d;
rate.pipeCount= cutHeads.Where(x => x.materialCode == item).ToList().Count;
rate.lossCount = Convert.ToDouble(cutHeads.Where(x => x.materialCode == item).ToList().Average(x => x.lossCount));
if (base_Materials.Select(x => x.materialCode == item && x.isDelete == 1).ToList().Count>0)
{
rate.materialName= base_Materials.First(x=>x.materialCode == item && x.isDelete == 1).materialName;
}
}
else
{
rate.pipeLength = 0;
rate.pipeCount = 0;
rate.lossCount = 0;
}
rates.Add(rate);
}
result.Result = rates;
if (pageReq != null)
{
result.Count = rates.Count;
result.Message = new { totUtiliza = totUtiliza, totLength = totLength }.ToJson();
}
return result;
}, catchRetrunValue: "list");
}
public dynamic Ins(bus_utilization_rate entity)
{
return ExceptionsHelp.Instance.ExecuteT(() =>
{
var response = new Response();
//entity.createBy = sysWebUser.Account;
//entity.createTime = DateTime.Now;
response.Status = Add(entity);
if (!response.Status) response.Message = SystemVariable.dataActionError;
return response;
});
}
public dynamic Upd(bus_utilization_rate entity)
{
return ExceptionsHelp.Instance.ExecuteT(() =>
{
var response = new Response();
//entity.updateBy = sysWebUser.Account;
//entity.updateTime = DateTime.Now;
response.Status = Update(entity);
if (!response.Status) response.Message = SystemVariable.dataActionError;
return response;
});
}
public dynamic DelByIds(int[] ids)
{
return ExceptionsHelp.Instance.ExecuteT(() =>
{
var response = new Response();
Context.Deleteable<bus_utilization_rate>(t => ids.Contains(t.id)).ExecuteCommand();
return response;
});
}
public Response ExportData(bus_utilization_rate entity)
{
return Load(null, entity);
}
public Expression<Func<bus_cutplan_head, bool>> LinqWhere(bus_utilization_rate model)
{
try
{
var exp = Expressionable.Create<bus_cutplan_head>();
if (string.IsNullOrWhiteSpace(model.lineCode))
{
model.lineCode = "line1";
}
//数据过滤条件
//if (!string.IsNullOrWhiteSpace(model.XXX)) exp.And(x => x.XXX.Contains(model.XXX));
if (!string.IsNullOrWhiteSpace(model.materialCode))
{
exp.And(x => x.materialCode.Contains(model.materialCode));
}
if (!string.IsNullOrWhiteSpace(model.lineCode))
{
exp.And(x => x.lineCode.Contains(model.lineCode));
}
if ( model.startTime != DateTime.MinValue)
{
exp.And(x => Convert.ToDateTime( x.createTime) >= model.startTime);
}
if (model.endTime != DateTime.MinValue)
{
exp.And(x => Convert.ToDateTime(x.createTime) <= model.endTime.AddDays(1));
}
return exp.ToExpression();//拼接表达式
}
catch (Exception ex)
{
throw new Exception($"{ex.Message}");
}
}
}
}