WmsSnPartService.cs
5.75 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
using Hh.Mes.Common.log;
using Hh.Mes.Common.Request;
using Hh.Mes.POJO.Entity;
using Hh.Mes.Pojo.System;
using Hh.Mes.POJO.Response;
using Hh.Mes.POJO.WMSEntity;
using Hh.Mes.Service.Repository;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq.Expressions;
using System.Text;
using System.Text.RegularExpressions;
using System.Linq;
using System.Diagnostics;
namespace Hh.Mes.Service.WmsService
{
public class WmsSnPartService : RepositorySqlSugar<Sn>
{
public Response<List<SnPartDetailHistory>> GetSnPartDetailHistory(string snCode)
{
var result = new Response<List<SnPartDetailHistory>>();
try
{
result.Status = true;
result.Result = DimsContextWms.Queryable<SnPartDetailHistory>().Where(x => x.snCode == snCode).OrderBy(x => x.created).ToList();
}
catch (Exception ex)
{
result.Code = 500;
result.Status = false;
result.Message = ex.Message;
}
return result;
}
public dynamic GetTreeList()
{
return ExceptionsHelp.Instance.ExecuteT(() =>
{
var stringBuilder = new StringBuilder();
var nodes = new List<dynamic>();
var rootNode = new
{
id = Guid.NewGuid(),
name = "根节点",
keys = "r-1",
parentId = "0",
isok = false,
projectKeys = Guid.Empty,
};
var codes = DimsContextWms.Queryable<Sn>().Where(LinqWhere(new Sn())).OrderBy(x => x.correlatedCode).Select(x => x.correlatedCode).Distinct().ToList();
var data = codes.Select(code => new
{
id = Guid.NewGuid().ToString("N"),
name = code,
keys = code,
parentId = rootNode.keys,
isok = true,
//projectKeys = x.keys
}).ToList();
nodes.Add(rootNode);
nodes.AddRange(data);
return nodes;
});
}
public dynamic Load(PageReq pageReq, Sn entity)
{
return ExceptionsHelp.Instance.ExecuteT(() =>
{
var result = new Response();
var expression = LinqWhere(entity);
//先组合查询表达式(多表查询查看IOT 设备列表案例)
var query = DimsContextWms.Queryable<Sn>().Where(expression).Select(x => new
{
x.id,
x.code,
x.correlatedCode,
x.syncIot,
progress = SqlFunc.Subqueryable<SnPartDetailHistory>().Where(s => s.snCode == x.code).DistinctCount(s => s.operation) * 100 / 7,
x.created,
x.createdBy,
userName = SqlFunc.Subqueryable<SnPartDetailHistory>().Where(s => s.operationUser == x.createdBy).Select(s => s.operationUserName)
});
int total = 0;
result.Result = query.ToOffsetPage(pageReq.page, pageReq.limit, ref total);
result.Count = total;
return result;
}, catchRetrunValue: "list");
}
public dynamic LoadDesc(PageReq pageReq, SnPartDetail entity)
{
return ExceptionsHelp.Instance.ExecuteT(() =>
{
var result = new Response();
var expression = LinqWhereDetail(entity);
//先组合查询表达式(多表查询查看IOT 设备列表案例)
var query = DimsContextWms.Queryable<SnPartDetail>().Where(expression);
int total = 0;
result.Result = query.ToOffsetPage(pageReq.page, pageReq.limit, ref total);
result.Count = total;
return result;
}, catchRetrunValue: "list");
}
private Expression<Func<Sn, bool>> LinqWhere(Sn entity)
{
var exp = Expressionable.Create<Sn>();
exp.And(x => x.created >= new DateTime(2024, 11, 1));
exp.And(x => !string.IsNullOrEmpty(x.correlatedCode));
var filterCodes = new List<string>
{
"/",
"测试",
"test",
"ceshi",
};
//过滤掉以数字开头的数据
for (int i = 0; i < 10; i++)
{
filterCodes.Add($"{i}");
}
foreach (var item in filterCodes)
{
exp.And(x => !x.correlatedCode.StartsWith(item));
}
if (!string.IsNullOrWhiteSpace(entity.code))
{
exp.And(x => x.code.Contains(entity.code));
}
if (!string.IsNullOrWhiteSpace(entity.correlatedCode))
{
exp.And(x => x.correlatedCode.Contains(entity.correlatedCode));
}
if (entity.syncIot >= 0)
{
exp.And(x => x.syncIot == entity.syncIot);
}
return exp.ToExpression();//拼接表达式
}
private Expression<Func<SnPartDetail, bool>> LinqWhereDetail(SnPartDetail entity)
{
var exp = Expressionable.Create<SnPartDetail>();
if (entity.snId != default)
{
exp.And(x => x.snId == entity.snId);
}
if (!string.IsNullOrWhiteSpace(entity.snCode))
{
exp.And(x => x.snCode.Contains(entity.snCode));
}
return exp.ToExpression();//拼接表达式
}
}
}