tjx
2025-11-05 682e7301250701c55c0f645d8de849cc4663d8e8
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
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
using System.Linq;
using MES.Service.DB;
using MES.Service.Dto.service;
using MES.Service.Modes;
using MES.Service.util;
 
namespace MES.Service.service.QC;
 
/// <summary>
///     SPI/AOI检测数据服务
/// </summary>
public class SpiAoiService
{
    /// <summary>
    ///     Upload AOI header data.
    /// </summary>
    /// <param name="header">Header DTO.</param>
    /// <returns>Header upload response.</returns>
    public SpiAoiHeaderUploadResponse UploadAoiHeader(SpiAoiHeaderDto header)
    {
        if (header == null)
        {
            throw new Exception("header cannot be null");
        }
 
        try
        {
            return UploadAoiHeaderBatchInternal(
                new List<SpiAoiHeaderDto> { header })[0];
        }
        catch (Exception ex)
        {
            throw new Exception($"Failed to upload AOI header: {ex.Message}",
                ex);
        }
    }
 
    /// <summary>
    ///     Upload multiple AOI header records within a single transaction.
    /// </summary>
    /// <param name="headers">Header DTO collection.</param>
    /// <returns>Header upload responses.</returns>
    public List<SpiAoiHeaderUploadResponse> UploadAoiHeaderBatch(
        List<SpiAoiHeaderDto> headers)
    {
        if (headers == null)
        {
            throw new Exception("headers cannot be null");
        }
 
        try
        {
            return UploadAoiHeaderBatchInternal(headers);
        }
        catch (Exception ex)
        {
            throw new Exception(
                $"Failed to upload AOI header batch: {ex.Message}", ex);
        }
    }
 
    private List<SpiAoiHeaderUploadResponse> UploadAoiHeaderBatchInternal(
        List<SpiAoiHeaderDto> headers)
    {
        var headerList = headers.ToList();
        if (headerList.Count == 0)
        {
            throw new Exception("headers cannot be empty");
        }
 
        foreach (var header in headerList)
        {
            ValidateHeader(header);
        }
 
        var duplicateBarcodes = headerList
            .GroupBy(h => h.BoardBarcode)
            .Where(g => g.Count() > 1)
            .Select(g => g.Key)
            .ToList();
 
        if (duplicateBarcodes.Any())
        {
            throw new Exception(
                $"Duplicate board barcodes in request: {string.Join(", ",
                    duplicateBarcodes)}.");
        }
 
        var responses = new List<SpiAoiHeaderUploadResponse>();
 
        SqlSugarHelper.UseTransactionWithOracle(db =>
        {
            var boardBarcodes = headerList.Select(h => h.BoardBarcode)
                .ToList();
 
            if (boardBarcodes.Any())
            {
                var existingBarcodes = db.Queryable<MesSpiAoiHeader>()
                    .Where(x => boardBarcodes.Contains(x.BoardBarcode))
                    .Select(x => x.BoardBarcode)
                    .ToList();
 
                if (existingBarcodes.Any())
                {
                    throw new Exception(
                        $"Board barcodes {string.Join(", ", existingBarcodes)} already exist; duplicate AOI uploads are not allowed.");
                }
            }
 
            foreach (var headerDto in headerList)
            {
                var entity = ConvertHeaderDtoToEntity(headerDto);
                var timestamp = DateTime.Now;
                entity.CreatedAt = timestamp;
                entity.UpdatedAt = timestamp;
 
                var headerId = db.Insertable(entity).ExecuteReturnIdentity();
                responses.Add(new SpiAoiHeaderUploadResponse
                {
                    HeaderId = headerId
                });
            }
 
            return responses.Count;
        });
 
        if (responses.Count == 0)
        {
            throw new Exception("AOI upload returned no result.");
        }
 
        return responses;
    }
 
    /// <summary>
    ///     Upload SPI detail data.
    /// </summary>
    /// <param name="request">Detail upload DTO.</param>
    /// <returns>Detail upload response.</returns>
    public SpiAoiDetailUploadResponse UploadSpiDetails(SpiAoiDetailDto request)
    {
        if (request == null)
        {
            throw new Exception("request cannot be null");
        }
 
        try
        {
            return UploadSpiDetailsInternal(
                new List<SpiAoiDetailDto> { request });
        }
        catch (Exception ex)
        {
            throw new Exception($"Failed to upload SPI details: {ex.Message}",
                ex);
        }
    }
 
    /// <summary>
    ///     Upload multiple SPI detail records within a single transaction.
    /// </summary>
    /// <param name="requests">Detail DTO collection.</param>
    /// <returns>Aggregated upload response.</returns>
    public SpiAoiDetailUploadResponse UploadSpiDetailsBatch(
        List<SpiAoiDetailDto> requests)
    {
        if (requests == null)
        {
            throw new Exception("details cannot be null");
        }
 
        try
        {
            return UploadSpiDetailsInternal(requests);
        }
        catch (Exception ex)
        {
            throw new Exception(
                $"Failed to upload SPI detail batch: {ex.Message}", ex);
        }
    }
 
    private SpiAoiDetailUploadResponse UploadSpiDetailsInternal(
        List<SpiAoiDetailDto> requests)
    {
        var detailList = requests.ToList();
        if (detailList.Count == 0)
        {
            throw new Exception("details cannot be empty");
        }
 
        ValidateDetailData(detailList);
 
        var affectedRows = SqlSugarHelper.UseTransactionWithOracle(db =>
        {
            var total = 0;
            foreach (var detail in detailList)
            {
                var detailEntity = ConvertDetailDtoToEntity(detail);
                total += db.Insertable(detailEntity).ExecuteCommand();
            }
 
            return total;
        });
 
        if (affectedRows <= 0)
        {
            throw new Exception(
                "SPI detail insert returned no affected rows.");
        }
 
        return new SpiAoiDetailUploadResponse
        {
            DetailCount = affectedRows
        };
    }
 
    /// <summary>
    ///     Retrieve SPI/AOI data by board barcode.
    /// </summary>
    /// <param name="boardBarcode">Board barcode.</param>
    /// <returns>Header and detail tuple.</returns>
    public (MesSpiAoiHeader header, List<MesSpiAoiDetail> details) GetByBarcode(
        string boardBarcode)
    {
        try
        {
            var db = SqlSugarHelper.GetInstance();
 
            var header = db.Queryable<MesSpiAoiHeader>()
                .Where(x => x.BoardBarcode == boardBarcode)
                .First();
 
            if (header == null)
            {
                return (null, null);
            }
 
            var details = db.Queryable<MesSpiAoiDetail>()
                .Where(x => x.HeaderId == header.Id)
                .ToList();
 
            return (header, details);
        }
        catch (Exception ex)
        {
            throw new Exception($"查询SPI/AOI检测数据失�? {ex.Message}", ex);
        }
    }
 
    public (MesSpiAoiHeader header, List<MesSpiAoiDetail> details) GetById(
        decimal headerId)
    {
        try
        {
            var db = SqlSugarHelper.GetInstance();
 
            var header = db.Queryable<MesSpiAoiHeader>()
                .Where(x => x.Id == headerId)
                .First();
 
            if (header == null)
            {
                return (null, null);
            }
 
            var details = db.Queryable<MesSpiAoiDetail>()
                .Where(x => x.HeaderId == headerId)
                .ToList();
 
            return (header, details);
        }
        catch (Exception ex)
        {
            throw new Exception($"查询SPI/AOI检测数据失�? {ex.Message}", ex);
        }
    }
 
    /// <summary>
    ///     分页查询SPI/AOI检测数�?
    /// </summary>
    /// <param name="boardBarcode">条码(可选)</param>
    /// <param name="workOrder">工单(可选)</param>
    /// <param name="surface">板面(可选)</param>
    /// <param name="startDate">开始日�?可选)</param>
    /// <param name="endDate">结束日期(可选)</param>
    /// <param name="pageIndex">页码</param>
    /// <param name="pageSize">页大�?/param>
    /// <returns>分页数据</returns>
    public (List<MesSpiAoiHeader> items, int totalCount) GetPage(
        string boardBarcode = null,
        string workOrder = null,
        string surface = null,
        DateTime? startDate = null,
        DateTime? endDate = null,
        int pageIndex = 1,
        int pageSize = 20)
    {
        try
        {
            var db = SqlSugarHelper.GetInstance();
            var totalCount = 0;
 
            var data = db.Queryable<MesSpiAoiHeader>()
                .WhereIF(StringUtil.IsNotNullOrEmpty(boardBarcode),
                    x => x.BoardBarcode.Contains(boardBarcode))
                .WhereIF(StringUtil.IsNotNullOrEmpty(workOrder),
                    x => x.WorkOrder.Contains(workOrder))
                .WhereIF(StringUtil.IsNotNullOrEmpty(surface),
                    x => x.Surface == surface)
                .WhereIF(startDate.HasValue,
                    x => x.TestDate >= startDate.Value)
                .WhereIF(endDate.HasValue,
                    x => x.TestDate <= endDate.Value)
                .OrderBy(x => x.CreatedAt, SqlSugar.OrderByType.Desc)
                .ToPageList(pageIndex, pageSize, ref totalCount);
 
            return (data, totalCount);
        }
        catch (Exception ex)
        {
            throw new Exception($"分页查询SPI/AOI检测数据失�? {ex.Message}", ex);
        }
    }
 
    #region 私有方法
 
    /// <summary>
    ///     Validate AOI header payload.
    /// </summary>
    /// <param name="header">Header DTO.</param>
    private void ValidateHeader(SpiAoiHeaderDto header)
    {
        if (header == null)
        {
            throw new Exception("header cannot be null");
        }
 
        if (StringUtil.IsNullOrEmpty(header.TestDate))
        {
            throw new Exception("testDate is required");
        }
 
        if (StringUtil.IsNullOrEmpty(header.TestTime))
        {
            throw new Exception("testTime is required");
        }
 
        if (StringUtil.IsNullOrEmpty(header.TestResult))
        {
            throw new Exception("testResult is required");
        }
 
        if (StringUtil.IsNullOrEmpty(header.BoardBarcode))
        {
            throw new Exception("boardBarcode is required");
        }
 
        if (StringUtil.IsNullOrEmpty(header.Surface))
        {
            throw new Exception("surface is required");
        }
 
        if (header.Surface != "T" && header.Surface != "B")
        {
            throw new Exception("surface must be T or B");
        }
 
        if (header.BoardBarcode.Length > 128)
        {
            throw new Exception("boardBarcode cannot exceed 128 characters");
        }
 
        if (!StringUtil.IsNullOrEmpty(header.TestResult) &&
            header.TestResult.Length > 12)
        {
            throw new Exception("testResult cannot exceed 12 characters");
        }
    }
 
    
    private MesSpiAoiHeader ConvertHeaderDtoToEntity(SpiAoiHeaderDto dto)
    {
        return new MesSpiAoiHeader
        {
            TestDate = DateTime.Parse(dto.TestDate),
            TestTime = dto.TestTime,
            TestResult = dto.TestResult,
            Surface = dto.Surface,
            TotalPoints = dto.TotalPoints,
            ActualDefects = dto.ActualDefects,
            EquipmentModel = dto.EquipmentModel,
            WorkOrder = dto.WorkOrder,
            ProductModel = dto.ProductModel,
            BoardBarcode = dto.BoardBarcode,
            SmtGroup = dto.SmtGroup,
            LineName = dto.LineName
        };
    }
 
    /// <summary>
    ///     Perform non-blocking SPI detail checks (warnings only).
    /// </summary>
    /// <param name="details">Detail DTO list.</param>
    private void ValidateDetailData(List<SpiAoiDetailDto> details)
    {
        foreach (var detail in details)
        {
            // Validate passBoards <= inputBoards
            if (detail.PassBoards > detail.InputBoards)
            {
                Console.WriteLine(
                    $"[Warning] passBoards({detail.PassBoards}) is greater than inputBoards({detail.InputBoards}).");
            }
 
            // Validate defectBoards = inputBoards - passBoards
            var expectedDefectBoards = detail.InputBoards - detail.PassBoards;
            if (Math.Abs(detail.DefectBoards - expectedDefectBoards) > 0)
            {
                Console.WriteLine(
                    $"[Warning] defectBoards({detail.DefectBoards}) does not match the expected value ({expectedDefectBoards}).");
            }
 
            // Validate passRate deviation stays within +/- 1.0
            if (detail.InputBoards > 0 && detail.PassRate.HasValue)
            {
                var expectedPassRate = (decimal)detail.PassBoards /
                    detail.InputBoards * 100;
                var deviation =
                    Math.Abs(detail.PassRate.Value - expectedPassRate);
                if (deviation > 1.0m)
                {
                    Console.WriteLine(
                        $"[Warning] passRate({detail.PassRate}) deviates from the expected value ({expectedPassRate:F2}) by more than 1.0.");
                }
            }
        }
    }
 
    private MesSpiAoiDetail ConvertDetailDtoToEntity(SpiAoiDetailDto dto)
    {
        var now = DateTime.Now;
        return new MesSpiAoiDetail
        {
            HeaderId = dto.HeaderId ?? 0,
            AreaOverflowCount = dto.AreaOverflowCount,
            AreaUnderflowCount = dto.AreaUnderflowCount,
            ExceedingHeightCount = dto.ExceedingHeightCount,
            InsufficientHeightCount = dto.InsufficientHeightCount,
            XDeviationCount = dto.XDeviationCount,
            YDeviationCount = dto.YDeviationCount,
            CollapseCount = dto.CollapseCount,
            SolderPullTipCount = dto.SolderPullTipCount,
            AbnormalityCount = dto.AbnormalityCount,
            LineDisplayName = dto.LineDisplayName,
            MachineName = dto.MachineName,
            InputBoards = dto.InputBoards,
            OkBoards = dto.OkBoards,
            PassBoards = dto.PassBoards,
            PassRate = dto.PassRate,
            DefectBoards = dto.DefectBoards,
            DefectRate = dto.DefectRate,
            DefectPpm = dto.DefectPpm,
            DefectPoints = dto.DefectPoints,
            MeasuredPoints = dto.MeasuredPoints,
            PendingPoints = dto.PendingPoints,
            CreatedAt = now,
            UpdatedAt = now
        };
    }
 
    #endregion
}