HuXiYu
authored
|
1
2
3
4
5
6
7
8
9
10
11
12
|
using Hh.Mes.Common.Infrastructure;
using Hh.Mes.Common.log;
using Hh.Mes.Common.Request;
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;
using Hh.Mes.Pojo.System;
|
唐召明
authored
|
13
14
15
|
using Hh.Mes.Common;
using Hh.Mes.POJO.EnumEntitys;
using Hh.Mes.Service.SystemAuth;
|
HuXiYu
authored
|
16
|
using System.Data;
|
唐召明
authored
|
17
|
using Hh.Mes.Common.config;
|
HuXiYu
authored
|
18
19
20
|
namespace Hh.Mes.Service.Configure
{
|
赖素文
authored
|
21
|
public class BaseClientInfoService : RepositorySqlSugar<base_project_client_info>
|
HuXiYu
authored
|
22
|
{
|
唐召明
authored
|
23
24
25
26
27
28
29
|
private readonly IAuth _auth;
public BaseClientInfoService(IAuth auth)
{
_auth = auth;
}
|
赖素文
authored
|
30
|
#region 列表
|
赖素文
authored
|
31
|
public dynamic Load(PageReq pageReq, base_project_client_info entity)
|
HuXiYu
authored
|
32
33
34
|
{
return ExceptionsHelp.Instance.ExecuteT(() =>
{
|
赖素文
authored
|
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
var result = new Response();
var expression = LinqWhere(entity);
//先组合查询表达式(多表查询查看IOT 设备列表案例)
var query = Context.Queryable<base_project_client_info>().Where(expression);
//Exel false 分页
if (!entity.Exel)
{
int total = 0;
result.Result = query.ToOffsetPage(pageReq.page, pageReq.limit, ref total);
result.Count = total;
}
else
{
result.Result = query.ToList();
result.Count = result.Result.Count;
}
return result;
}, catchRetrunValue: "list");
|
HuXiYu
authored
|
53
|
}
|
唐召明
authored
|
54
|
|
赖素文
authored
|
55
|
|
赖素文
authored
|
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
|
//private List<base_project_client_info> DataHandle(List<base_project_client_info> data)
//{
// var clientKeys = data.Select(item => item.keys).ToList();
// var projectQuery = Context.Queryable<base_project_client_info, base_project_client_rel, sys_user_client_rel, base_project>((client, proClient, uClient, pro) =>
// new JoinQueryInfos(
// JoinType.Left, proClient.clientKeys == client.keys,
// JoinType.Left, uClient.clientKeys == client.keys,
// JoinType.Left, pro.keys == proClient.projectKeys))
// .Where((client, proClient, uClient, pro) => clientKeys.Contains(client.keys))
// .Select((client, proClient, uClient, pro) => new
// {
// client.keys,
// pro.projectName,
// uClient.userAccount,
// })
// .ToList();
// //给项目 赋值 登入用户、项目关联绑定客户信息
// foreach (var item in data)
// {
// var projectUsers = projectQuery.Where(x => x.keys == item.keys)
// .Select(x => x.userAccount)
// .ToArray();
// item.projectUsers = string.Join(",", projectUsers);
// var projectNames = projectQuery.Where(x => x.keys == item.keys)
// .Select(x => x.projectName)
// .Distinct()
// .ToArray();
// item.projectNames = string.Join(",", projectNames);
// }
// return data;
//}
|
赖素文
authored
|
90
91
92
93
|
#endregion
|
赖素文
authored
|
94
|
public dynamic Ins(base_project_client_info entity)
|
HuXiYu
authored
|
95
96
97
|
{
return ExceptionsHelp.Instance.ExecuteT(() =>
{
|
赖素文
authored
|
98
99
100
101
102
103
104
|
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;
});
|
HuXiYu
authored
|
105
|
}
|
唐召明
authored
|
106
|
|
赖素文
authored
|
107
|
public dynamic Upd(base_project_client_info entity)
|
HuXiYu
authored
|
108
109
110
111
|
{
return ExceptionsHelp.Instance.ExecuteT(() =>
{
var response = new Response();
|
HuXiYu
authored
|
112
113
|
entity.setupDate = DateTime.Now;
//entity.updateBy = sysWebUser?.Account;
|
HuXiYu
authored
|
114
115
116
117
118
119
|
//entity.updateTime = DateTime.Now;
response.Status = Update(entity);
if (!response.Status) response.Message = SystemVariable.dataActionError;
return response;
});
}
|
唐召明
authored
|
120
|
|
HuXiYu
authored
|
121
|
public dynamic DelByIds(Guid[] keys)
|
HuXiYu
authored
|
122
123
124
125
|
{
return ExceptionsHelp.Instance.ExecuteT(() =>
{
var response = new Response();
|
唐召明
authored
|
126
|
|
赖素文
authored
|
127
128
|
//项目工商信息表绑定项目,不允许删除
if (Context.Queryable<base_project>().Any(x => keys.Contains(x.projectClientInfoKeys)))
|
HuXiYu
authored
|
129
|
{
|
赖素文
authored
|
130
|
return response.ResponseError("项目工商信息绑定了项目,不能直接删除,请先解除绑定后再试!");
|
唐召明
authored
|
131
|
}
|
赖素文
authored
|
132
|
Context.Deleteable<base_project_client_info>(t => keys.Contains(t.keys)).ExecuteCommand();
|
HuXiYu
authored
|
133
134
135
|
return response;
});
}
|
唐召明
authored
|
136
|
|
赖素文
authored
|
137
|
public Response ExportData(base_project_client_info entity)
|
HuXiYu
authored
|
138
139
140
|
{
return Load(null, entity);
}
|
唐召明
authored
|
141
|
|
赖素文
authored
|
142
|
public Expression<Func<base_project_client_info, bool>> LinqWhere(base_project_client_info model)
|
HuXiYu
authored
|
143
144
145
|
{
try
{
|
赖素文
authored
|
146
|
var exp = Expressionable.Create<base_project_client_info>();
|
HuXiYu
authored
|
147
148
149
150
|
//数据过滤条件
//if (!string.IsNullOrWhiteSpace(model.XXX)) exp.And(x => x.XXX.Contains(model.XXX));
if (!string.IsNullOrWhiteSpace(model.clientName))
{
|
赖素文
authored
|
151
|
exp.And((c) => c.clientName.Contains(model.clientName));
|
HuXiYu
authored
|
152
153
154
|
}
if (!string.IsNullOrWhiteSpace(model.legalRepresentative))
{
|
赖素文
authored
|
155
|
exp.And((c) => c.legalRepresentative.Contains(model.legalRepresentative));
|
HuXiYu
authored
|
156
157
158
|
}
if (!string.IsNullOrWhiteSpace(model.unifiedSocialCreditCode))
{
|
赖素文
authored
|
159
|
exp.And((c) => c.unifiedSocialCreditCode.Contains(model.unifiedSocialCreditCode));
|
HuXiYu
authored
|
160
161
162
163
164
165
166
167
|
}
return exp.ToExpression();//拼接表达式
}
catch (Exception ex)
{
throw new Exception($"{ex.Message}");
}
}
|
HuXiYu
authored
|
168
|
|
HuXiYu
authored
|
169
170
|
}
}
|