EquipmentService.cs
8.04 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
using Hh.Mes.Common.log;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Hh.Mes.Common.Request;
using Hh.Mes.Service.Repository;
using Hh.Mes.POJO.Entity;
using Hh.Mes.POJO.Response;
namespace Hh.Mes.Service.Equipment
{
public class EquipmentService : RepositorySqlSugar<base_equipment>
{
/// <summary>
/// 查询方法
/// </summary>
/// <param name="pageReq">页码</param>
/// <param name="model">传入的参数</param>
/// <returns></returns>
public Response Load(PageReq pageReq, base_equipment model)
{
var result = new Response();
string orderBy = (pageReq == null || string.IsNullOrEmpty(pageReq.field)) ? " id desc" : $"{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.* , t2.workStationName stationName,t3.name equipmentTypeName
from base_equipment t1 with(nolock)
left join base_work_station t2 with(nolock) on t1.workStationCode = t2.workStationCode
left join base_equipment_type t3 on t1.equipmentTypeId=t3.id
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_equipment t1 with(nolock) where {sqlWhere}");
}
var ds = base.Context.Ado.GetDataSetAll(stringBuilder.ToString());
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_equipment model)
{
var stringBuilder = new StringBuilder();
stringBuilder.Append("1=1");
if (model.name != null) stringBuilder.Append($" and t1.name like '%{model.name}%' ");
if (model.code != null) stringBuilder.Append($" and t1.code like '%{model.code}%' ");
if (model.workStationCode != null) stringBuilder.Append($" and t1.workStationCode ='{model.workStationCode}' ");
return stringBuilder.ToString();
}
public base_equipment SelectAllId(base_equipment model)
{
return null;
}
/// <summary>
/// 添加
/// </summary>
/// <param name="model">参数</param>
/// <returns></returns>
public dynamic Ins(base_equipment model)
{
var response = new Response();
return ExceptionsHelp.Instance.ExecuteT(() =>
{
var prefix = base.GetDictionaryDictValue("equipment");
var maxValue = GetTableMaxValue<base_equipment>("id");
//model.code = prefix + maxValue;
model.createBy = sysWebUser?.Account;
model.createTime = DateTime.Now;
SelectAllId(model);
response.Status = Add(model);
if (!response.Status)
{
response.Message = "添加失败";
}
return response;
});
}
/// <summary>
/// 编辑方法
/// </summary>
/// <param name="model">参数</param>
/// <returns></returns>
public dynamic Upd(base_equipment model)
{
var response = new Response();
return ExceptionsHelp.Instance.ExecuteT(() =>
{
model.updateBy = sysWebUser?.Account;
model.updateTime = DateTime.Now;
SelectAllId(model);
response.Status = base.Context.Updateable(model).IgnoreColumns(it => new { it.createBy, it.createTime }).ExecuteCommand() > 0;
if (!response.Status)
{
response.Message = "编辑失败";
}
return response;
});
}
/// <summary>
/// 删除方法
/// </summary>
/// <param name="ids">需要删除的id</param>
/// <returns></returns>
public dynamic DelByIds(int[] ids)
{
var response = new Response();
return ExceptionsHelp.Instance.ExecuteT(() =>
{
response.Status = Context.Deleteable<base_equipment>().In(ids).ExecuteCommand() > 0;
if (!response.Status)
{
response.Message = "删除失败";
}
return response;
});
}
/// <summary>
/// 导出
/// </summary>
public dynamic ExportData(base_equipment entity)
{
return ExceptionsHelp.Instance.ExecuteT(() =>
{
var result = new Response();
var ds = Load(null, entity);
if (ds == null || ds.Count == 0)
{
result.Result = "[]";
result.Count = 0;
}
else
{
result.Result = ds.Result;
result.Count = ds.Count;
}
return result;
}, catchRetrunValue: "list");
}
/// <summary>
/// 导入
/// </summary>
/// <param name="excelfile"></param>
/// <param name="hostingEnvironment"></param>
/// <returns></returns>
public dynamic ImportIn(IFormFile excelfile, IHostingEnvironment hostingEnvironment)
{
return ExceptionsHelp.Instance.ExecuteT(() =>
{
Response result = new Response();
return result;
});
}
public dynamic GetStationList()
{
return ExceptionsHelp.Instance.ExecuteT(() =>
{
Dictionary<string, dynamic> pairs = new Dictionary<string, dynamic>();
Dictionary<string, string> groupData = new Dictionary<string, string>();
var allList = Context.Queryable<base_line, base_work_station>((t1, t2) => new JoinQueryInfos(JoinType.Left, t1.lineCode == t2.lineCode)).
Select((t1, t2) => new { t1.id, t1.lineName, t1.lineCode, t2.workStationCode, t2.workStationName }).ToList();
var lineDatas = allList.Select(x => new
{
code = x.lineCode,
}).Distinct().ToList();
var groupCount = lineDatas.Count();
foreach (var lineData in lineDatas)
{
var lineStationData = allList.Where(x => x.lineCode == lineData.code).ToList();
pairs.Add(lineData.code, lineStationData);
var lineName = lineStationData.FirstOrDefault()?.lineName;
groupData.Add(lineData.code, lineName);
}
var result = new
{
code = 200,
status = true,
msg = "ok",
data = new
{
groupCount = groupCount,
groupData = groupData,
data = pairs
}
};
return result;
});
}
}
}