kingno
2025-03-31 f5bd202c943df54f160d3ae2dd44e8ef150a8b7a
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
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
using Bro.Common.Helper;
using Bro.Common.Interface;
using Bro.DataBase.Model;
using Newtonsoft.Json;
 
namespace Bro.M135.DBManager
{
    public class Manager_P_PRODUCT : ModelManager<P_PRODUCT, M135DB>
    {
        public bool NewProduct(P_PRODUCT p, List<P_PRODUCT_DETAIL> details, out string msg)
        {
            msg = "";
            try
            {
                using (var context = new M135DB())
                {
                    p.CREATE_TIME = DateTime.Now;
 
                    details.ForEach(d =>
                    {
                        d.PID = p.PID;
                        d.SN = p.SN;
                        d.CREATE_TIME = DateTime.Now;
                    });
 
                    context.P_PRODUCT.Add(p);
                    context.P_PRODUCT_DETAIL.AddRange(details);
 
                    context.SaveChanges();
                }
 
                return true;
            }
            catch (Exception ex)
            {
                msg = ex.GetExceptionMessage();
                return false;
            }
        }
 
        public bool NewProductDetails(List<P_PRODUCT_DETAIL> details, out string msg)
        {
            msg = "";
            try
            {
                using (var context = new M135DB())
                {
                    details.ForEach(d =>
                    {
                        d.CREATE_TIME = DateTime.Now;
                    });
 
                    context.P_PRODUCT_DETAIL.AddRange(details);
                    context.SaveChanges();
                }
 
                return true;
            }
            catch (Exception ex)
            {
                msg = ex.GetExceptionMessage();
                return false;
            }
        }
 
        public List<P_PRODUCT> QueryProduct(Request_P_Product request)
        {
            List<P_PRODUCT> pList = new List<P_PRODUCT>();
            using (var context = new M135DB())
            {
                IQueryable<P_PRODUCT> list = context.P_PRODUCT.Where(u => true);
 
                if (request.StartTime != null)
                {
                    list = list.Where(u => u.CREATE_TIME >= request.StartTime.Value);
                }
 
                if (request.EndTime != null)
                {
                    list = list.Where(u => u.CREATE_TIME <= request.EndTime.Value);
                }
 
                if (!string.IsNullOrWhiteSpace(request.SearchTxt))
                {
                    list = list.Where(u => u.SN.Contains(request.SearchTxt));
                }
 
                if (!string.IsNullOrWhiteSpace(request.ClassResult))
                {
                    list = list.Where(u => u.Result == request.ClassResult);
                }
 
                if (request.IsOrderAsc)
                {
                    list = list.OrderBy(u => u.ID);
                }
                else
                {
                    list = list.OrderByDescending(u => u.ID);
                }
 
                request.TotalNum = list.Count();
                if (request.PageSize > 0 && request.PageNum > 0)
                {
                    pList = list.Skip(request.PageSize * (request.PageNum - 1)).Take(request.PageSize).ToList();
                }
                else
                {
                    pList = list.ToList();
                }
 
                if (request.IsIncludeDetail)
                {
                    pList.ForEach(p =>
                    {
                        p.Details = context.P_PRODUCT_DETAIL.Where(u => u.PID == p.PID).ToList();
                    });
                }
            }
 
            return pList;
        }
 
        public void UpdatePositionResult(P_PRODUCT_DETAIL detail)
        {
            if (detail == null)
            {
                CommonLogger.LogAsync(DateTime.Now, EnumHelper.LogLevel.Error, $"检测工位明细结果上传对象为空");
                return;
            }
 
            try
            {
                using (var context = new M135DB())
                {
                    P_PRODUCT_DETAIL d = null;
                    if (detail.ID > 0)
                    {
                        d = context.P_PRODUCT_DETAIL.FirstOrDefault(u => u.ID == detail.ID);
                    }
                    else
                    {
                        d = context.P_PRODUCT_DETAIL.OrderByDescending(u => u.ID).FirstOrDefault(u => u.PID == detail.PID && u.STATION_CODE == detail.STATION_CODE && u.PositionName == detail.PositionName);
                    }
 
                    if (d == null)
                    {
                        CommonLogger.LogAsync(DateTime.Now, EnumHelper.LogLevel.Exception, $"产品{detail.PID} 工位{detail.PositionName}检测明细未能在数据库中查询获取");
                    }
                    else
                    {
                        if (string.IsNullOrWhiteSpace(d.SN) && !string.IsNullOrWhiteSpace(detail.SN))
                        {
                            d.SN = detail.SN;
                        }
 
                        List<ISpec> specList = detail.ResultList.SelectMany(u => u.Specs).ToList();
                        if (detail.SpecList != null)
                        {
                            specList.AddRange(detail.SpecList);
                        }
 
                        List<string> defectList = detail.ResultList.GetDefectDescList();
                        if (detail.DefectList != null)
                        {
                            defectList.AddRange(detail.DefectList);
                        }
 
                        d.IsDone = detail.IsDone;
 
                        //取消补偿值,避免反序列化时重复执行补偿
                        specList.ForEach(s =>
                        {
                            s.IsEnableCompensation = false;
                            s.CompensationValue = new List<double>() { 0,0};
                        });
 
                        d.FAIData = JsonConvert.SerializeObject(specList);
                        d.DefectDesc = JsonConvert.SerializeObject(defectList);
 
                        d.UPDATE_TIME = DateTime.Now;
 
                        context.SaveChanges();
                    }
                }
            }
            catch (Exception ex)
            {
                CommonLogger.LogAsync(DateTime.Now, EnumHelper.LogLevel.Exception, $"产品{detail?.PID} 条码{detail?.SN} 工位{detail?.PositionName} 检测结果保存异常,{ex.GetExceptionMessage()}");
            }
        }
 
        public P_PRODUCT QueryProductByBarcode(string sn)
        {
            try
            {
                using (var context = new M135DB())
                {
                    var p = context.P_PRODUCT.OrderByDescending(p => p.ID).FirstOrDefault(u => u.SN == sn);
 
                    if (p != null)
                    {
                        //var details = context.P_PRODUCT_DETAIL.Where(u => u.PID == p.PID);
 
                        //details.GroupBy(u => u.STATION_CODE).ToList().ForEach(u =>
                        //{
                        //    u.ToList().GroupBy(m => m.PositionName).ToList().ForEach(c =>
                        //    {
                        //        p.Details.Add(c.OrderByDescending(n => n.ID).FirstOrDefault());
                        //    });
                        //});
 
                        p.Details = context.P_PRODUCT_DETAIL.Where(u => u.PID == p.PID).ToList();
                    }
                    return p;
                }
            }
            catch (Exception ex)
            {
                CommonLogger.LogAsync(DateTime.Now, EnumHelper.LogLevel.Exception, $"数据库根据条码{sn}获取产品信息异常,{ex.GetExceptionMessage()}");
            }
 
            return null;
        }
 
        public P_PRODUCT QueryProductBySequence(string sequence)
        {
            try
            {
                using (var context = new M135DB())
                {
                    var p = context.P_PRODUCT.OrderByDescending(p => p.ID).FirstOrDefault(u => u.SEQUENCE == sequence);
 
                    if (p != null)
                    {
                        //var details = context.P_PRODUCT_DETAIL.Where(u => u.PID == p.PID);
 
                        //details.GroupBy(u => u.STATION_CODE).ToList().ForEach(u =>
                        //{
                        //    u.ToList().GroupBy(m => m.PositionName).ToList().ForEach(c =>
                        //    {
                        //        p.Details.Add(c.OrderByDescending(n => n.ID).FirstOrDefault());
                        //    });
                        //});
 
                        p.Details = context.P_PRODUCT_DETAIL.Where(u => u.PID == p.PID).ToList();
                    }
                    return p;
                }
            }
            catch (Exception ex)
            {
                CommonLogger.LogAsync(DateTime.Now, EnumHelper.LogLevel.Exception, $"数据库根据序列号{sequence}获取产品信息异常,{ex.GetExceptionMessage()}");
            }
 
            return null;
        }
 
        public P_PRODUCT QueryProductByPID(string pid)
        {
            try
            {
                using (var context = new M135DB())
                {
                    var p = context.P_PRODUCT.OrderByDescending(p => p.ID).FirstOrDefault(u => u.PID == pid);
 
                    if (p != null)
                    {
                        //var details = context.P_PRODUCT_DETAIL.Where(u => u.PID == p.PID);
 
                        //details.GroupBy(u => u.STATION_CODE).ToList().ForEach(u =>
                        //{
                        //    u.ToList().GroupBy(m => m.PositionName).ToList().ForEach(c =>
                        //    {
                        //        p.Details.Add(c.OrderByDescending(n => n.ID).FirstOrDefault());
                        //    });
                        //});
 
                        p.Details = context.P_PRODUCT_DETAIL.Where(u => u.PID == p.PID).ToList();
                    }
                    return p;
                }
            }
            catch (Exception ex)
            {
                CommonLogger.LogAsync(DateTime.Now, EnumHelper.LogLevel.Exception, $"数据库根据条码{pid}获取产品信息异常,{ex.GetExceptionMessage()}");
            }
 
            return null;
        }
 
        public void UpdateProductSN(string pid, string sn)
        {
            try
            {
                using (var context = new M135DB())
                {
                    var p = context.P_PRODUCT.OrderByDescending(p => p.ID).FirstOrDefault(u => u.PID == pid);
                    var details = context.P_PRODUCT_DETAIL.Where(u => u.PID == pid).ToList();
                    DateTime dt = DateTime.Now;
                    if (p != null)
                    {
                        p.SN = sn;
                        p.UPDATE_TIME = dt;
                    }
 
                    if (details.Count > 0)
                    {
                        List<P_PRODUCT_DETAIL> latestDetail = new List<P_PRODUCT_DETAIL>();
                        details.GroupBy(u => u.STATION_CODE).ToList().ForEach(u =>
                        {
                            u.ToList().GroupBy(m => m.PositionName).ToList().ForEach(c =>
                            {
                                latestDetail.Add(c.OrderByDescending(n => n.ID).FirstOrDefault());
                            });
                        });
 
                        latestDetail.ForEach(d =>
                        {
                            if (string.IsNullOrWhiteSpace(d.SN) && !string.IsNullOrWhiteSpace(sn))
                            {
                                d.SN = sn;
                                d.UPDATE_TIME = dt;
                            }
                        });
                    }
 
                    context.SaveChanges();
                }
            }
            catch (Exception ex)
            {
                CommonLogger.LogAsync(DateTime.Now, EnumHelper.LogLevel.Exception, $"产品{pid}更新条码{sn}时异常,{ex.GetExceptionMessage()}");
            }
        }
 
 
        public void UpdateProductPID(string pid, string newsen,string newpid)
        {
            try
            {
                using (var context = new M135DB())
                {
                    var p = context.P_PRODUCT.OrderByDescending(p => p.ID).FirstOrDefault(u => u.PID == pid);
                    var details = context.P_PRODUCT_DETAIL.Where(u => u.PID == pid).ToList();
                    DateTime dt = DateTime.Now;
                    if (p != null)
                    {
                        p.PID = newpid;
                        p.SEQUENCE = newsen;
                        p.UPDATE_TIME = dt;
                    }
 
                    if (details.Count > 0)
                    {
                        List<P_PRODUCT_DETAIL> latestDetail = new List<P_PRODUCT_DETAIL>();
                        details.GroupBy(u => u.STATION_CODE).ToList().ForEach(u =>
                        {
                            u.ToList().GroupBy(m => m.PositionName).ToList().ForEach(c =>
                            {
                                latestDetail.Add(c.OrderByDescending(n => n.ID).FirstOrDefault());
                            });
                        });
 
                        latestDetail.ForEach(d =>
                        {
                            //if (string.IsNullOrWhiteSpace(d.SN) && !string.IsNullOrWhiteSpace(newpid))
                            //{
                                d.PID = newpid;
                                d.UPDATE_TIME = dt;
                            //}
                        });
                    }
 
                    context.SaveChanges();
                }
            }
            catch (Exception ex)
            {
                CommonLogger.LogAsync(DateTime.Now, EnumHelper.LogLevel.Exception, $"产品{pid}更新条码{newpid}时异常,{ex.GetExceptionMessage()}");
            }
        }
 
        public void UpdateProductResult(int iD, string pid, string sn, string result)
        {
            try
            {
                using (var context = new M135DB())
                {
                    var p = context.P_PRODUCT.FirstOrDefault(u => u.ID == iD);
                    p.Result = result;
                    context.SaveChanges();
                }
            }
            catch (Exception ex)
            {
                CommonLogger.LogAsync(DateTime.Now, EnumHelper.LogLevel.Exception, $"产品{pid} 条码{sn} 最终结果{result}上传失败,{ex.GetExceptionMessage()}");
            }
        }
 
        public bool DeletOldData(DateTime timeLimit, int dataListCountOnce, out int deleteCount, out string msg, out bool isNoData)
        {
            deleteCount = 0;
            msg = "";
            isNoData = false;
            try
            {
                using (var context = new M135DB())
                {
                    var pList = context.P_PRODUCT.Where(u => u.CREATE_TIME < timeLimit).Take(dataListCountOnce);
                    if (!pList.Any())
                    {
                        isNoData = true;
                        return true;
                    }
 
                    var pidList = pList.Select(p => p.PID).ToList();
                    deleteCount = pidList.Count;
 
                    var details = context.P_PRODUCT_DETAIL.Where(u => pidList.Contains(u.PID));
 
                    context.P_PRODUCT_DETAIL.RemoveRange(details);
                    context.P_PRODUCT.RemoveRange(pList);
                    context.SaveChanges();
                }
            }
            catch (Exception ex)
            {
                msg = $"自动删除旧数据异常,{ex.GetExceptionMessage()}";
                return false;
            }
 
            return true;
        }
    }
 
    public class Request_P_Product : BaseRequest
    {
        public bool IsIncludeDetail { get; set; } = false;
 
        public string ClassResult { get; set; }
    }
}