tjx
2025-10-15 9057d0f6f3a46b93d62d0b71c7f4f03eca41f3a9
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
using System.Collections.Generic;
using System.Dynamic;
using System.Linq;
using MES.Service.Dto.service;
using MES.Service.Modes;
using MES.Service.service;
using MES.Service.service.QC;
using MES.Service.util;
using Microsoft.AspNetCore.Mvc;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
 
namespace MESApplication.Controllers.QC;
 
/// <summary>
///     SPI/AOI检测数据控制器
/// </summary>
[Route("api/[controller]")]
[ApiController]
public class SpiAoiController : ControllerBase
{
    private readonly MessageCenterManager _manager = new();
    private readonly SpiAoiService _service = new();
 
    private const string METHOD = "POST";
    private const string HeaderTableName = "MES_SPI_AOI_HEADER";
    private const string DetailTableName = "MES_SPI_AOI_DETAIL";
    private const string BaseUrl = "http://localhost:10054/api/QC/SpiAoi/";
 
    /// <summary>
    ///     Upload AOI header data.
    /// </summary>
    /// <param name="header">AOI header payload.</param>
    /// <returns>Upload result.</returns>
    [HttpPost("UploadAoiHeader")]
    public ResponseResult UploadAoiHeader(
        [FromBody] SpiAoiHeaderDto header)
    {
        var entity = new MessageCenter
        {
            TableName = HeaderTableName,
            Url = BaseUrl + "UploadAoiHeader",
            Method = METHOD,
            Data = JsonConvert.SerializeObject(header),
            Status = 1,
            CreateBy = "SPI_AOI_SYSTEM"
        };
 
        try
        {
            var response = _service.UploadAoiHeader(header);
 
            dynamic resultInfos = new ExpandoObject();
            resultInfos.headerId = response.HeaderId;
            resultInfos.message = "AOI header upload succeeded";
 
            entity.Result = 1;
            entity.DealWith = 1;
            entity.ResultData = JsonConvert.SerializeObject(response);
            _manager.save(entity);
 
            return new ResponseResult
            {
                status = 0,
                message = "OK",
                data = resultInfos
            };
        }
        catch (Exception ex)
        {
            entity.Result = 0;
            entity.DealWith = 0;
            entity.ResultData = ex.Message;
            _manager.save(entity);
 
            return ResponseResult.ResponseError(ex);
        }
    }
 
    /// <summary>
    ///     Batch upload AOI header data.
    /// </summary>
    /// <param name="headers">AOI header payload collection.</param>
    /// <returns>Upload result.</returns>
    [HttpPost("UploadAoiHeaderBatch")]
    public ResponseResult UploadAoiHeaderBatch(
        [FromBody] List<SpiAoiHeaderDto> headers)
    {
        var entity = new MessageCenter
        {
            TableName = HeaderTableName,
            Url = BaseUrl + "UploadAoiHeaderBatch",
            Method = METHOD,
            Data = JsonConvert.SerializeObject(headers),
            Status = 1,
            CreateBy = "SPI_AOI_SYSTEM"
        };
 
        try
        {
            var responses = _service.UploadAoiHeaderBatch(headers);
            dynamic resultInfos = new ExpandoObject();
            resultInfos.headerIds = responses.Select(r => r.HeaderId).ToList();
            resultInfos.message = "AOI header batch upload succeeded";
 
            entity.Result = 1;
            entity.DealWith = 1;
            entity.ResultData = JsonConvert.SerializeObject(responses);
            _manager.save(entity);
 
            return new ResponseResult
            {
                status = 0,
                message = "OK",
                data = resultInfos
            };
        }
        catch (Exception ex)
        {
            entity.Result = 0;
            entity.DealWith = 0;
            entity.ResultData = ex.Message;
            _manager.save(entity);
 
            return ResponseResult.ResponseError(ex);
        }
    }
 
    /// <summary>
    ///     Upload SPI detail data.
    /// </summary>
    /// <param name="request">SPI detail payload.</param>
    /// <returns>Upload result.</returns>
    [HttpPost("UploadSpiDetails")]
    public ResponseResult UploadSpiDetails(
        [FromBody] SpiAoiDetailDto request)
    {
        var entity = new MessageCenter
        {
            TableName = DetailTableName,
            Url = BaseUrl + "UploadSpiDetails",
            Method = METHOD,
            Data = JsonConvert.SerializeObject(request),
            Status = 1,
            CreateBy = "SPI_AOI_SYSTEM"
        };
 
        try
        {
            var response = _service.UploadSpiDetails(request);
 
            dynamic resultInfos = new ExpandoObject();
            resultInfos.detailCount = response.DetailCount;
            resultInfos.message = "SPI detail upload succeeded";
 
            entity.Result = 1;
            entity.DealWith = 1;
            entity.ResultData = JsonConvert.SerializeObject(response);
            _manager.save(entity);
 
            return new ResponseResult
            {
                status = 0,
                message = "OK",
                data = resultInfos
            };
        }
        catch (Exception ex)
        {
            entity.Result = 0;
            entity.DealWith = 0;
            entity.ResultData = ex.Message;
            _manager.save(entity);
 
            return ResponseResult.ResponseError(ex);
        }
    }
 
    /// <summary>
    ///     Batch upload SPI detail data.
    /// </summary>
    /// <param name="requests">SPI detail payload collection.</param>
    /// <returns>Upload result.</returns>
    [HttpPost("UploadSpiDetailsBatch")]
    public ResponseResult UploadSpiDetailsBatch(
        [FromBody] List<SpiAoiDetailDto> requests)
    {
        var entity = new MessageCenter
        {
            TableName = DetailTableName,
            Url = BaseUrl + "UploadSpiDetailsBatch",
            Method = METHOD,
            Data = JsonConvert.SerializeObject(requests),
            Status = 1,
            CreateBy = "SPI_AOI_SYSTEM"
        };
 
        try
        {
            var response = _service.UploadSpiDetailsBatch(requests);
 
            dynamic resultInfos = new ExpandoObject();
            resultInfos.detailCount = response.DetailCount;
            resultInfos.message = "SPI detail batch upload succeeded";
 
            entity.Result = 1;
            entity.DealWith = 1;
            entity.ResultData = JsonConvert.SerializeObject(response);
            _manager.save(entity);
 
            return new ResponseResult
            {
                status = 0,
                message = "OK",
                data = resultInfos
            };
        }
        catch (Exception ex)
        {
            entity.Result = 0;
            entity.DealWith = 0;
            entity.ResultData = ex.Message;
            _manager.save(entity);
 
            return ResponseResult.ResponseError(ex);
        }
    }
 
    /// <summary>
    ///     根据条码查询SPI/AOI检测数据
    /// </summary>
    /// <param name="request">请求参数</param>
    /// <returns>检测数据</returns>
    [HttpPost("GetByBarcode")]
    public ResponseResult GetByBarcode([FromBody] JObject request)
    {
        try
        {
            var boardBarcode = request["boardBarcode"]?.ToString();
            if (StringUtil.IsNullOrEmpty(boardBarcode))
            {
                return new ResponseResult
                {
                    status = 1,
                    message = "boardBarcode 不能为空",
                    data = null
                };
            }
 
            var (header, details) = _service.GetByBarcode(boardBarcode);
 
            if (header == null)
            {
                return new ResponseResult
                {
                    status = 1,
                    message = $"未找到条码 {boardBarcode} 的检测数据",
                    data = null
                };
            }
 
            dynamic resultInfos = new ExpandoObject();
            resultInfos.header = header;
            resultInfos.details = details;
 
            return new ResponseResult
            {
                status = 0,
                message = "OK",
                data = resultInfos
            };
        }
        catch (Exception ex)
        {
            return ResponseResult.ResponseError(ex);
        }
    }
 
    /// <summary>
    ///     根据ID查询SPI/AOI检测数据
    /// </summary>
    /// <param name="request">请求参数</param>
    /// <returns>检测数据</returns>
    [HttpPost("GetById")]
    public ResponseResult GetById([FromBody] JObject request)
    {
        try
        {
            var headerId = request["headerId"]?.ToObject<decimal>();
            if (!headerId.HasValue)
            {
                return new ResponseResult
                {
                    status = 1,
                    message = "headerId 不能为空",
                    data = null
                };
            }
 
            var (header, details) = _service.GetById(headerId.Value);
 
            if (header == null)
            {
                return new ResponseResult
                {
                    status = 1,
                    message = $"未找到ID {headerId} 的检测数据",
                    data = null
                };
            }
 
            dynamic resultInfos = new ExpandoObject();
            resultInfos.header = header;
            resultInfos.details = details;
 
            return new ResponseResult
            {
                status = 0,
                message = "OK",
                data = resultInfos
            };
        }
        catch (Exception ex)
        {
            return ResponseResult.ResponseError(ex);
        }
    }
 
    /// <summary>
    ///     分页查询SPI/AOI检测数据
    /// </summary>
    /// <param name="request">查询请求</param>
    /// <returns>分页数据</returns>
    [HttpPost("GetPage")]
    public ResponseResult GetPage([FromBody] JObject request)
    {
        try
        {
            var boardBarcode = request["boardBarcode"]?.ToString();
            var workOrder = request["workOrder"]?.ToString();
            var surface = request["surface"]?.ToString();
            var startDate = request["startDate"]?.ToString();
            var endDate = request["endDate"]?.ToString();
            var pageIndex = request["pageIndex"]?.ToObject<int>() ?? 1;
            var pageSize = request["pageSize"]?.ToObject<int>() ?? 20;
 
            DateTime? startDateTime = null;
            DateTime? endDateTime = null;
 
            if (StringUtil.IsNotNullOrEmpty(startDate) &&
                DateTime.TryParse(startDate, out var start))
            {
                startDateTime = start;
            }
 
            if (StringUtil.IsNotNullOrEmpty(endDate) &&
                DateTime.TryParse(endDate, out var end))
            {
                endDateTime = end;
            }
 
            var (items, totalCount) = _service.GetPage(
                boardBarcode, workOrder, surface, startDateTime, endDateTime,
                pageIndex, pageSize);
 
            dynamic resultInfos = new ExpandoObject();
            resultInfos.items = items;
 
            return new ResponseResult
            {
                status = 0,
                message = "OK",
                data = resultInfos,
                TotalCount = totalCount
            };
        }
        catch (Exception ex)
        {
            return ResponseResult.ResponseError(ex);
        }
    }
}