BaseLocationService.cs
10.8 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
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
using Hh.Mes.Common.Infrastructure;
using Hh.Mes.Common.log;
using Hh.Mes.Common.Request;
using Hh.Mes.Pojo.System;
using Hh.Mes.POJO.Entity;
using Hh.Mes.POJO.EnumEntitys;
using Hh.Mes.Service.Repository;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Text;
using Hh.Mes.POJO.Response;
namespace Hh.Mes.Service.Distribution
{
public class BaseLocationService : RepositorySqlSugar<base_location>
{
/// <summary>
/// 分配选择查询
/// </summary>
/// <param name="pageReq"></param>
/// <param name="entity"></param>
/// <returns></returns>
public dynamic LoadData(PageReq pageReq, base_location entity)
{
return ExceptionsHelp.Instance.ExecuteT(() =>
{
var result = new Response();
var expression = LinqWhere(entity);
//先组合查询表达式
var query = Context.Queryable<base_location>().Where(expression);
//Exel为ture就不分页,因为导出的话是全部导出
if (pageReq != null)
{
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");
}
/// <summary>
/// 页面查询
/// </summary>
/// <param name="pageReq"></param>
/// <param name="model"></param>
/// <returns></returns>
public dynamic Load(PageReq pageReq, base_location model)
{
return ExceptionsHelp.Instance.ExecuteT(() =>
{
var result = new Response();
string orderBy = (pageReq == null || string.IsNullOrEmpty(pageReq.field)) ? " zoneCode asc " : $"{pageReq.field} {pageReq.order} ";
string sqlWhere = SqlWhere(model);
var stringBuilder = new StringBuilder();
//页码,页数
//Exel ture 不分页
if (!model.Exel && pageReq != null)
{
stringBuilder.Append("declare @pageIndex int,@pageSize int,@offset int");
stringBuilder.AppendLine($" select @pageIndex={pageReq.page}, @pageSize={pageReq.limit}, @offset=(@pageIndex - 1) * @pageSize");
}
stringBuilder.AppendLine($@" select t1.*,
peopleStation=stuff((select ','+t4.locationName
from base_location_rel t3
left join base_location t4 on t4.locationCode=t3.startPositionCode
where t1.locationCode=t3.endPositionCode for xml path('')),1,1,'')
from base_location t1
where {sqlWhere}
order by {orderBy} ");
//Exel ture 不分页
if (!model.Exel)
{
stringBuilder.AppendLine(" offset @offset row fetch next @pageSize row only ");
stringBuilder.Append($" select rowTotal= count(*) from base_location t1 with(nolock) where {sqlWhere}");
}
var ds = base.Context.Ado.GetDataSetAll(stringBuilder.ToString(), new List<SugarParameter>(){
new SugarParameter("@locationCode", $"%{model.locationCode}%"),
new SugarParameter("@locationName", $"%{model.locationName}%"),
new SugarParameter("@stationCode", $"%{model.stationCode}%"),
new SugarParameter("@zoneCode",model.zoneCode)
});
result.Result = ds.Tables[0];
result.Count = model.Exel ? (int)result.Result.Rows.Count : (int)ds.Tables[1].Rows[0]["rowTotal"];
return result;
});
}
public string SqlWhere(base_location model)
{
var stringBuilder = new StringBuilder();
stringBuilder.Append("1=1 ");
if (!string.IsNullOrEmpty(model.locationCode)) stringBuilder.Append(" and t1.locationCode like @locationCode");
if (!string.IsNullOrEmpty(model.locationName)) stringBuilder.Append(" and t1.locationName like @locationName ");
if (!string.IsNullOrEmpty(model.stationCode)) stringBuilder.Append(" and t1.stationCode like @stationCode ");
if (model.zoneCode != 0) stringBuilder.Append(" and t1.zoneCode = @zoneCode");
return stringBuilder.ToString();
}
public dynamic Ins(base_location entity)
{
return ExceptionsHelp.Instance.ExecuteT(() =>
{
var response = new Response();
Context.Insertable(entity).ExecuteCommand();
return response;
});
}
public dynamic Upd(base_location entity)
{
return ExceptionsHelp.Instance.ExecuteT(() =>
{
var response = new Response();
//Context.Updateable(entity).ExecuteCommand();
//是否存在容器编码
if (!string.IsNullOrEmpty(entity.containerCode))
{
response.Status = base.Context.Queryable<base_container>()
.Where(x => x.containerCode == entity.containerCode)
.ToList().Count() > 0;
if (!response.Status) return response.ResponseError("容器编码不存在!");
}
Context.Updateable<base_location>()
.SetColumns(t => t.locationCode == entity.locationCode)
.SetColumns(t => t.locationName == entity.locationName)
.SetColumns(t => t.containerCode == entity.containerCode)
.Where(t => t.id == entity.id).ExecuteCommand();
return response;
});
}
public dynamic DelByIds(int[] ids)
{
return ExceptionsHelp.Instance.ExecuteT(() =>
{
var response = new Response();
Context.Deleteable<base_location>(t => ids.Contains(t.id)).ExecuteCommand();
return response;
});
}
public Response ExportData(base_location entity)
{
return Load(null, entity);
}
public Expression<Func<base_location, bool>> LinqWhere(base_location model)
{
try
{
var exp = Expressionable.Create<base_location>();
//数据过滤条件
//if (!string.IsNullOrWhiteSpace(model.XXX)) exp.And(x => x.XXX.Contains(model.XXX));
if (!string.IsNullOrWhiteSpace(model.locationName))
{
exp.And(x => x.locationName.Contains(model.locationName));
}
if (!string.IsNullOrWhiteSpace(model.stationCode))
{
exp.And(x => x.stationCode.Contains(model.stationCode));
}
//排除自己
if (!string.IsNullOrWhiteSpace(model.locationCode))
{
exp.And(x => x.locationCode != model.locationCode);
}
//排除上料点选择
exp.And(x => x.zoneCode != (int)EnumLocationZoneCode.上料点);
return exp.ToExpression();//拼接表达式
}
catch (Exception ex)
{
throw new Exception($"{ex.Message}");
}
}
/// <summary>
/// 读取对应的料点
/// </summary>
/// <returns></returns>
public dynamic GetLocationChoiceByLocationCode(string locationCode)
{
var response = new Response();
return ExceptionsHelp.Instance.ExecuteT(() =>
{
response.Result = Context.Queryable<base_location_rel>().Where(x => x.endPositionCode == locationCode).ToList();
return response;
});
}
/// <summary>
/// 料点配置
/// </summary>
/// <returns></returns>
public dynamic OperateLocationStation(string stationCode, string endPositionCode, bool checkeds)
{
var response = new Response();
return ExceptionsHelp.Instance.ExecuteT(() =>
{
string[] strArray = stationCode.Split(new char[] { ',' });
if (checkeds)
{
foreach (var item in strArray)
{
//装料点
var stationModel = Context.Queryable<base_location>().Where(x => x.locationCode == item).First();
//上料点
var endModel = Context.Queryable<base_location>().Where(x => x.locationCode == endPositionCode).First();
var model = new base_location_rel
{
keys = Guid.NewGuid(),
endPositionCode = endPositionCode,
startPositionCode = item,
createTime = DateTime.Now,
startStationCode = stationModel.stationCode,
endStationCode = endModel.stationCode,
startZoneCode = stationModel.zoneCode,
endZoneCode = endModel.zoneCode
};
Context.Insertable(model).AddQueue();
}
response.Status = Context.SaveQueues() > 0;
if (!response.Status)
{
response.Message = SystemVariable.dataActionError;
}
}
else
{
foreach (var item in strArray)
{
Context.Deleteable<base_location_rel>().Where(x => x.endPositionCode == endPositionCode && x.startPositionCode == item).AddQueue();
}
response.Status = Context.SaveQueues() > 0;
if (!response.Status)
{
response.Message = SystemVariable.dataActionError;
}
}
return response;
});
}
}
}