ImportMethod_WorkOrder.cs
14.9 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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
using Hh.Mes.Common;
using Hh.Mes.Common.config;
using Hh.Mes.Common.DataTableTo;
using Hh.Mes.Common.log;
using Hh.Mes.Pojo.System;
using Hh.Mes.POJO.Entity;
using Hh.Mes.POJO.EnumEntitys;
using Hh.Mes.POJO.Response;
using Hh.Mes.POJO.WebEntity;
using Hh.Mes.POJO.WebEntity.bus;
using Hh.Mes.Service.Repository;
using MySqlX.XDevAPI.Common;
using MySqlX.XDevAPI.Relational;
using NPOI.OpenXmlFormats.Dml.Diagram;
using NPOI.POIFS.FileSystem;
using NPOI.SS.Formula.Functions;
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Diagnostics;
using System.Linq;
using System.Reflection;
using static Hh.Mes.Common.Exel.NpoiExcelImportHelper;
namespace Hh.Mes.Service.WebService.Planned
{
/// <summary>
/// 定义导入方法加上特性
/// dicDtSource 添加需要保存到数据源的数据源
/// 注意:只改对应业务的dt 数据【公共方法里面的读取的数据源不要修改、其他地方可能需要用到】
/// </summary>
public partial class ImportMethod
{
#region 工序任务表 【Action里面的 bus_workOrder_head 】 是数据库表名 ,方法名没有特殊要求 ,注意不要删除sysDicDtSource里面的key
[Action("bus_workOrder_head")]
public Response BusWorkOrderHeadMethod(Dictionary<string, SysDtAllCls> sysDicDtSource, dynamic user, DateTime nowTime)
{
#region bus_workOrder_head
#region init
var response = new Response();
//【修改项1】
var excelFileNameKeys = ExcelName.bus_workOrder_head.ToString();
response = ImportOhter.ImportMethodBefore(sysDicDtSource, response, excelFileNameKeys);
if (response.Code != 200)
{
response.Message = $"【{TableName.excelFileNameBusWorkOrderHead}】" + response.Message;
return response;
}
//公共方法数据源,需要判断的数据源单独建一个
DataTable excelDtSourceDt = response.Result.data;
DataTable titleVerifySourceDt = response.Result.title;
#endregion
#region 创建dt、添加保存到数据库的dicDtSource 【修改项2】
var tableName = TableName.tableNameBusWorkOrderHead;
var eqSaveDt = GetTableStructure(tableName);
if (eqSaveDt.Columns.Contains("Id")) eqSaveDt.Columns.Remove("Id");
var temp = new SysDtAllCls()
{
dtData = eqSaveDt
};
var dtSourceNameKey = tableName + TableName.tableSuffix;
sysDicDtSource.Add(dtSourceNameKey, temp);
#endregion
#region 去重 【修改项3 根据实际业务】
var tempExcelDtSourceDt = excelDtSourceDt.Distinct("workOrderCode");
#endregion
#region 赋值 理论上是通用的,修改excel文件名 【修改项4】
var columns = tempExcelDtSourceDt.Columns;
for (int i = 0; i < tempExcelDtSourceDt.Rows.Count; i++)
{
var dr = eqSaveDt.NewRow();
for (int c = 0; c < columns.Count; c++)
{
var colName = columns[c].ColumnName;
dynamic colNameVal = tempExcelDtSourceDt.Rows[i][colName].ToString();
response = ImportOhter.SetDataTableDataBefore(response, i, colName, colNameVal, titleVerifySourceDt, TableName.excelFileNameBusWorkOrderHead);
if (response.Code != 200) return response;
colNameVal = ImportOhter.SetDataTableData(colNameVal, eqSaveDt.Columns[colName].DataType.Name);
dr[colName] = colNameVal;
}
dr["keys"] = Guid.NewGuid();
dr["createBy"] = user.Account;
dr["createTime"] = nowTime;
dr["otherOrderCode"] = tempExcelDtSourceDt.Rows[i]["planCode"];
eqSaveDt.Rows.Add(dr);
}
#endregion
#endregion
#region bus_workOrder_detail 获取Excel表值
#region init
var response2 = new Response();
//【修改项1】
var excelFileNameKeys2 = ExcelName.bus_workOrder_detail.ToString();
response2 = ImportOhter.ImportMethodBefore(sysDicDtSource, response2, excelFileNameKeys2);
if (response2.Code != 200)
{
response2.Message = $"【{TableName.excelFileNameBusWorkOrderDetail}】" + response2.Message;
return response2;
}
//公共方法数据源,需要判断的数据源单独建一个
DataTable excelDtSourceDt2 = response2.Result.data;
DataTable titleVerifySourceDt2 = response2.Result.title;
#endregion
#region 创建dt、添加保存到数据库的dicDtSource 【修改项2】
var tableName2 = TableName.tableNameBusWorkOrderDetail;
var eqSaveDt2 = GetTableStructure(tableName2);
if (eqSaveDt2.Columns.Contains("Id")) eqSaveDt2.Columns.Remove("Id");
var temp2 = new SysDtAllCls()
{
dtData = eqSaveDt2
};
var dtSourceNameKey2 = tableName2 + TableName.tableSuffix;
sysDicDtSource.Add(dtSourceNameKey2, temp2);
#endregion
#region 去重 【修改项3 根据实际业务】
var tempExcelDtSourceDt2 = excelDtSourceDt2;//.Distinct("productHeaderCode");
#endregion
#region 逻辑判断
for (int i = 0; i < eqSaveDt.Rows.Count; i++)
{
//1、生产订单的产品号要先存在工艺路线的产品表中
var row = eqSaveDt.Rows[i];//取工序任务导入信息行
var product = Context.Queryable<base_product_header>().First(x => x.productCode == row["productHeaderCode"].ToString());
if (product == null)
{
response.ResponseError($"工艺路线产品表【产品编码productCode】[{row["productHeaderCode"]}]不存在,请填写正确的工艺线路基础数据!");
return response;
}
row["processHeadKeys"] = product.processHeadKeys;
//2、判断导入的线体是否存在线体基础表信息
var line = Context.Queryable<base_line>().First(x => x.otherCode == row["lineCode"].ToString());
if (line == null || string.IsNullOrEmpty(line.lineCode))
{
response.ResponseError($"没有查询到线体【line_code】和华恒线体一致的数据,请通知管理员在【工厂模型->线体设置】维护外部编码!");
return response;
}
row["lineCode"] = line.lineCode;//线体由外部线体编码换成内部lineCode
//3、生产订单查询工艺路线基础信息
processHead = null;
// Context.Queryable<base_process_product_rel>().First(x => x.productCode == row["productHeaderCode"].ToString() && x.lineCode == row["lineCode"].ToString());
if (processHead == null || string.IsNullOrEmpty(processHead.lineCode))
{
response.ResponseError($"没有查询到工艺路线【lineCode】【{row["lineCode"]}】【productHeaderCode】【{row["productHeaderCode"]}】对应的工艺路线,请先导入工艺路线接口数据!");
return response;
}
//4、生产订单数据
for (int j = 0; j < excelDtSourceDt2.Rows.Count; j++)
{
var isExt = Context.Queryable<base_material>().Any(x => x.materialCode == excelDtSourceDt2.Rows[j]["materialCode"].ToString());
if (isExt) continue;
response.ResponseError($"没有查询到物料主数据【mater_code】【{excelDtSourceDt2.Rows[j]["materialCode"]}】对应的信息,请先发送物料主数据接口数据!");
return response;
}
#region 从工艺路线明细查工序任务明细
processDetails = Context.Queryable<base_process_route_detail>().Where(x => x.headkeys == processHead.keys).ToList();//通过工艺路线编码查工序
var columns2 = tempExcelDtSourceDt2.Columns;
var newtempExcelDtSourceDt2 = tempExcelDtSourceDt2.AsEnumerable().Where(x => x.Field<string>("workOrderCode") == row["workOrderCode"].ToString()).ToList();
for (int j = 0; j < newtempExcelDtSourceDt2.Count; j++)
{
var dr = eqSaveDt2.NewRow();
for (int c = 0; c < columns2.Count; c++)
{
var colName = columns2[c].ColumnName;
dynamic colNameVal = newtempExcelDtSourceDt2[j][colName].ToString();
response2 = ImportOhter.SetDataTableDataBefore(response2, i, colName, colNameVal, titleVerifySourceDt2, TableName.excelFileNameBusWorkOrderDetail);
if (response2.Code != 200) return response;
colNameVal = ImportOhter.SetDataTableData(colNameVal, eqSaveDt2.Columns[colName].DataType.Name);
dr[colName] = colNameVal;
}
dr["bodyKeys"] = Guid.NewGuid();
dr["headKeys"] = row["keys"];
dr["createBy"] = user.Account;
dr["createTime"] = nowTime;
dr["lineCode"] = row["lineCode"];
foreach (var r in processDetails)
{
dr["oprSequenceCode"] = r.oprSequenceCode;//工序
dr["oprSequenceName"] = r.oprSequenceName;
}
dr["productHeaderCode"] = row["productHeaderCode"];
eqSaveDt2.Rows.Add(dr);
}
#endregion
}
#endregion
#endregion
response = SaveBusWorkOrderAfter(sysDicDtSource, sysWebUser);
return response;
}
#endregion
#region Save BusWorkOrder Success After
/// <summary>
/// 工序任务表保存之后
/// </summary>
/// <param name="sysDicDtSource"></param>
/// <param name="sysWebUser"></param>
/// <returns></returns>
public Response SaveBusWorkOrderAfter(Dictionary<string, SysDtAllCls> sysDicDtSource, dynamic sysWebUser)
{
var response = new Response();
response = ImportOhter.ImportMethodBefore(sysDicDtSource, response, ExcelName.bus_workOrder_head.ToString());
//获取表结构
var busWorkOrderDetailMaterialDt = GetTableStructure("bus_workOrder_detail_material");
var apiWorkOrderHeadDt = GetTableStructure("api_workOrder_head");
var apiWorkOrderDetailDt = GetTableStructure("api_workOrder_detail");
var dt = sysDicDtSource["bus_workOrder_head_source"].dtData;
var dt_detail = sysDicDtSource["bus_workOrder_detail_source"].dtData;
#region bus_workOrder_detail_material 工序任务明细物料表赋值
for (int i = 0; i < dt_detail.Rows.Count; i++)
{
var r = dt_detail.Rows[i];
var dr = busWorkOrderDetailMaterialDt.NewRow();
var processHead = dt.AsEnumerable().Where(x => x.Field<string>("workOrderCode") == r["workOrderCode"].ToString()).ToList();
dr["headKey"] = processHead[0]["keys"] ?? "";
dr["bodyKey"] = r["bodyKeys"];
dr["productCode"] = r["productHeaderCode"].ToString();
dr["materialCode"] = r["materialCode"].ToString();
dr["materialName"] = r["materialName"].ToString();
dr["num"] = Convert.ToDecimal(r["qty"]);
dr["wh_code"] = r["whCode"].ToString();
dr["lineCode"] = processHead[0]["lineCode"];
dr["workCenterCode"] = r["stationCode"].ToString();
dr["createBy"] = SystemVariable.DefaultCreated;
dr["createTime"] = DateTime.Now;
busWorkOrderDetailMaterialDt.Rows.Add(dr);
}
#endregion
#region api_workOrder_head、api_workOrder_detail原始数据赋值
for (int j = 0; j < dt.Rows.Count; j++)
{
var dr = dt.Rows[j];
var headDr = apiWorkOrderHeadDt.NewRow();
headDr["keys"] = Guid.NewGuid();
headDr["workOrderCode"] = dr["workOrderCode"].ToString();
headDr["productCode"] = dr["productHeaderCode"].ToString();
headDr["planCode"] = dr["planCode"].ToString();
headDr["lineCode"] = dr["lineCode"].ToString();
headDr["orderType"] = "";
headDr["playdate"] = Convert.ToDateTime(dr["planStartTime"]);
headDr["enddate"] = Convert.ToDateTime(dr["planEndTime"].ToString());
headDr["createTime"] = DateTime.Now;
headDr["createBy"] = SystemVariable.DefaultCreated;
var newdt_detail = dt_detail.AsEnumerable().Where(x => x.Field<string>("workOrderCode") == dr["workOrderCode"].ToString()).ToList();
for (int i = 0; i < newdt_detail.Count; i++)
{
var detailDr = apiWorkOrderDetailDt.NewRow();
var detailDt = newdt_detail[i];
detailDr["headKeys"] = headDr["keys"];
detailDr["planCode"] = dr["planCode"].ToString();
detailDr["stationCode"] = detailDt["stationCode"].ToString();
detailDr["materialCode"] = detailDt["materialCode"].ToString();
detailDr["materialName"] = detailDt["materialName"].ToString();
detailDr["qty"] = Convert.ToDecimal(detailDt["qty"].ToString());
detailDr["whCode"] = detailDt["whCode"].ToString();
detailDr["procedCode"] = detailDt["procedCode"].ToString();
detailDr["createTime"] = DateTime.Now;
detailDr["createBy"] = SystemVariable.DefaultCreated;
apiWorkOrderDetailDt.Rows.Add(detailDr);
}
apiWorkOrderHeadDt.Rows.Add(headDr);
}
#endregion
sysDicDtSource.Add("bus_workOrder_detail_material" + TableName.tableSuffix, new SysDtAllCls() { dtData = busWorkOrderDetailMaterialDt });
sysDicDtSource.Add("api_workOrder_head" + TableName.tableSuffix, new SysDtAllCls() { dtData = apiWorkOrderHeadDt });
sysDicDtSource.Add("api_workOrder_detail" + TableName.tableSuffix, new SysDtAllCls() { dtData = apiWorkOrderDetailDt });
return response;
}
#endregion
}
}