MaterialDistributeLoadNameService.cs
8.62 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
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.Text;
using System.Threading.Tasks;
namespace Hh.Mes.Service.Distribution
{
/// <summary>
/// 装料数据模板
/// </summary>
public class MaterialDistributeLoadNameService : RepositorySqlSugar<bus_material_distribute_load_header>
{
/// <summary>
/// //获取列表
/// </summary>
public Response Load(PageReq pageReq, bus_material_distribute_load_header_template 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 *
from bus_workOrder_head with(nolock)
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 bus_material_distribute_load_header_template with(nolock) where {sqlWhere}");
}
var ds = base.Context.Ado.GetDataSetAll(stringBuilder.ToString(), new List<SugarParameter>(){
//new SugarParameter("@productHeaderCode",model.productHeaderCode),
//new SugarParameter("@workOrderCode", model.workOrderCode),
//new SugarParameter("@otherOrderCode", model.otherOrderCode),
//new SugarParameter("@planStartTime", model.planStartTime),
//new SugarParameter("@planEndTime", model.planEndTime),
});
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(bus_material_distribute_load_header_template model)
{
var stringBuilder = new StringBuilder();
stringBuilder.Append("1=1");
if (!string.IsNullOrWhiteSpace(model.id.ToString())) stringBuilder.Append(" and productHeaderCode like '%'+@productHeaderCode+'%' ");
return stringBuilder.ToString();
}
/// <summary>
/// //获取列表
/// </summary>
public Response LoadDesc(PageReq pageReq, bus_material_distribute_load_template_detail model)
{
var data = model.headKeyList != null
? base.Context.Queryable<bus_material_distribute_load_detail_template>().In(it => it.headKeys, model.headKeyList).ToList()
: base.Context.Queryable<bus_material_distribute_load_detail_template>().Where(it => it.headKeys == model.headKeys).ToList();
var result = new Response
{
Code = 0,
Result = data,
Count = data.Count
};
return result;
}
/// <summary>
/// 新增
/// </summary>
public dynamic Ins(bus_material_distribute_load_header_template model)
{
var response = new Response();
return ExceptionsHelp.Instance.ExecuteT(() =>
{
model.createBy = base.sysWebUser?.Account;
model.createTime = DateTime.Now;
var result = base.Context.Insertable(model).ExecuteReturnIdentity();
if (result == 0)
{
response.Message = "添加失败";
}
return response;
});
}
/// <summary>
/// 更新
/// </summary>
public dynamic Upd(bus_material_distribute_load_header_template model)
{
var response = new Response();
return ExceptionsHelp.Instance.ExecuteT(() =>
{
model.updateBy = base.sysWebUser?.Account;
model.updateTime = DateTime.Now;
response.Status = base.Context.Updateable(model).IgnoreColumns(it => new { it.createBy, it.createTime }).ExecuteCommand() > 0;
if (!response.Status)
{
response.Message = "编辑失败";
}
return response;
});
}
/// <summary>
/// 删除
/// </summary>
public dynamic DelByIds(Guid[] ids)
{
var response = new Response();
return ExceptionsHelp.Instance.ExecuteT(() =>
{
Context.Deleteable<bus_material_distribute_load_header_template>().In(ids).AddQueue();
foreach (var id in ids)
{
Context.Deleteable<bus_material_distribute_load_detail_template>().Where(it => it.headKeys == id).AddQueue();
}
var result = Context.SaveQueues();
if (result <= 0)
{
response.Code = 400;
response.Status = false;
response.Message = "删除失败";
}
return response;
});
}
#region 明细
/// <summary>
/// 新增
/// </summary>
public dynamic InsDesc(bus_material_distribute_load_detail_template model)
{
var response = new Response();
return ExceptionsHelp.Instance.ExecuteT(() =>
{
model.createBy = base.sysWebUser?.Account;
model.createTime = DateTime.Now;
response.Status = Add(model);
if (!response.Status) response.Message = SystemVariable.dataActionError;
return response;
});
}
/// <summary>
/// 更新
/// </summary>
public dynamic UpdDesc(bus_material_distribute_load_detail_template model)
{
var response = new Response();
return ExceptionsHelp.Instance.ExecuteT(() =>
{
Context.Updateable(model).IgnoreColumns(x => new { x.createTime, x.createBy }).AddQueue();
var result = Context.SaveQueues();
if (result <= 0) response.Message = SystemVariable.dataActionError;
return response;
});
}
/// <summary>
/// 删除
/// </summary>
public dynamic DelByIdsDesc(int[] ids)
{
var response = new Response();
return ExceptionsHelp.Instance.ExecuteT(() =>
{
response.Status = Context.Deleteable<bus_material_distribute_load_detail_template>().In(ids).ExecuteCommand() > 0;
if (!response.Status) response.Message = SystemVariable.dataActionError;
return response;
});
}
#endregion
/// <summary>
/// 导出方法
/// </summary>
/// <returns></returns>
public dynamic Export(bus_material_distribute_load_header_template Table_Entity)
{
return ExceptionsHelp.Instance.ExecuteT(() =>
{
var result = new Response();
var dataTable = Load(null, Table_Entity);
if (dataTable.Count == 0)
{
result.Result = null;
result.Message = "没有查询到数据!";
result.Code = -1;
return result;
}
var guids = new List<Guid>();
foreach (var item in dataTable.Result)
{
guids.Add((Guid)item.keys);
}
var data = LoadDesc(null, new bus_material_distribute_load_template_detail { headKeyList = guids });
result.Result = new
{
head = dataTable.Result,
body = data.Result
};
return result;
});
}
}
}