wanshenmean
2025-04-08 413b51f88d342dc90d92ebfa2e500b8f660db09c
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using WIDESEA_Common;
using WIDESEA_Common.Tools;
using WIDESEA_Core.EFDbContext;
using WIDESEA_Core.Utilities;
using WIDESEA_Entity.DomainModels;
using WIDESEA_Services.IRepositories;
using WIDESEA_Services.Repositories;
using WIDESEA_Services.Services;
using WIDESEA_WCS.WCSClient;
 
namespace WIDESEA_WCS.Jobs
{
    public partial class EquipmentExecutor : SchedulerExecuteBase
    {
        private static int _readZLJSignalso = 0;
        public static object requestFX = new object();
        public static object requestZX = new object();
        /// <summary>
        /// 中转料架逻辑流程
        /// </summary>
        /// <returns></returns>
        public static void Z_ZZLJ_Task()
        {
            if (Interlocked.Exchange(ref _readZLJSignalso, 1) == 0)
            {
                try
                {
                    VOLContext Context = new VOLContext();
                    WebResponseContent responseContent = new WebResponseContent();
                    Idt_task_numberRepository tasknumberRep = new dt_task_numberRepository(Context);
                    dt_task_numberService tasknumber = new dt_task_numberService(tasknumberRep);
                    Ibase_ware_locationRepository locRepository = new base_ware_locationRepository(Context);
                    Ibase_routing_tableRepository routingRepository = new base_routing_tableRepository(Context);
                    Ibill_pda_groupdiskRepository pdaRepository = new bill_pda_groupdiskRepository(Context);
                    Idt_agvtaskRepository agvRepository = new dt_agvtaskRepository(Context);
                    Ibill_group_stockRepository groupRepository = new bill_group_stockRepository(Context);
                    Idt_agvtask_htyRepository agvtask_HtyRepository = new dt_agvtask_htyRepository(Context);
                    if (WCSService.iswlx)
                    {
                        WriteLog.Info("Z_ZZLJ_Task").Write("Z_ZZLJ_Task_text" + 1+DateTime.Now, "Z_ZZLJ_Task_text");
                        WCSService.iswlx = false;
                        List<string> ZZLJS = new List<string> { "ZJXL-ZZLJ001", "ZJXL-ZZLJ002", "ZJXL-ZZLJ003", "ZJXL-ZZLJ004", "FJXL-ZZLJ001",
                        "FJXL-ZZLJ002", "FJXL-ZZLJ003", "FJXL-ZZLJ004" };
                        foreach (var ZZLJ in ZZLJS)
                        {
                            var location = locRepository.FindFirst(v => v.down_code == ZZLJ);
                            var stocks = groupRepository.Find(v => v.location_id == location.id);
                            var stock = new bill_group_stock();
                            if (stocks.Count() > 0)
                            {
                                stock = stocks.OrderByDescending(o => o.created_time).First();
                            }
                            else
                            {
                                continue;
                            }
                            //判断分切的状态
                            if (stock != null && (stock.FQ_Status == "OK" || stock.FQ_Status == "NG"))
                            {
                                string address = "";
                                bool choose = false;
                                var KClocation = new base_ware_location();
                                string toaddressnum = "";
                                if (location.location_state == LocationStateEnum.LocationState_Stored.ToString())
                                {
                                    if (ZZLJ.Contains("ZJXL"))
                                    {
                                        lock (requestZX)
                                        {
                                            var tasks = agvRepository.Find(f => f.agv_toaddress.Contains("ZX"));
                                            if (tasks.Count() == 0)
                                            {
                                                var taskthy = agvtask_HtyRepository.Find(f => f.agv_toaddress.Contains("ZX") && (f.agv_taskstate == "Finished" || f.agv_taskstate == "ManualCompletion")).OrderByDescending(o => o.agv_createtime).First();
                                                toaddressnum = taskthy.agv_toaddress.Substring(2, 1);
                                            }
                                            else
                                            {
                                                var task = tasks.OrderByDescending(o => o.agv_createtime).First();
                                                toaddressnum = task.agv_toaddress.Substring(2, 1);
                                            }
                                            List<string> nums = new List<string>() { "ZXD0101", "ZXB0101", "ZXC0101", "ZXA0101" };
                                            int count = 0;
                                            for (int i = 0; i < nums.Count(); i++)
                                            {
                                                var loc = locRepository.FindFirst(f => f.upper_code == nums[i]);
                                                if (loc.location_state == LocationStateEnum.LocationState_Empty.ToString())
                                                {
                                                    count = 1;
                                                }
                                            }
                                            if (count == 0) { continue; }
                                            for (int i = 1; i < 5; i++)
                                            {
                                                if (choose)
                                                {
                                                    KClocation = locRepository.FindFirst(v => v.upper_code == nums[i - 1]);
                                                    if (KClocation.location_state == LocationStateEnum.LocationState_Empty.ToString() && (DateTime.Now - KClocation.created_time).TotalSeconds > 60)
                                                    {
                                                        address = KClocation.upper_code;
                                                        choose = false;
                                                        break;
                                                    }
                                                    else
                                                    {
                                                        if (nums[i - 1].Contains("A")) { i = 0; }
                                                        continue;
                                                    }
                                                }
                                                else if (nums[i - 1].Contains(toaddressnum))
                                                {
                                                    choose = true;
                                                    if (toaddressnum == "A") { i = 0; }
                                                    continue;
                                                }
                                                else
                                                {
                                                    continue;
                                                }
                                            }
                                        }
                                    }
                                    else if (ZZLJ.Contains("FJXL"))
                                    {
                                        lock (requestFX)
                                        {
                                            var tasks = agvRepository.Find(f => f.agv_toaddress.Contains("FX"));
                                            if (tasks.Count() == 0)
                                            {
                                                var taskthy = agvtask_HtyRepository.Find(f => f.agv_toaddress.Contains("FX") && (f.agv_taskstate == "Finished" || f.agv_taskstate == "ManualCompletion")).OrderByDescending(o => o.agv_createtime).First();
                                                toaddressnum = taskthy.agv_toaddress.Substring(2, 1);
                                            }
                                            else
                                            {
                                                var task = tasks.OrderByDescending(o => o.agv_createtime).First();
                                                toaddressnum = task.agv_toaddress.Substring(2, 1);
                                            }
                                            List<string> nums = new List<string>() { "FXD0101", "FXB0101", "FXC0101", "FXA0101" };
                                            int count = 0;
                                            for (int i = 0; i < nums.Count(); i++)
                                            {
                                                var loc = locRepository.FindFirst(f => f.upper_code == nums[i]);
                                                if (loc.location_state == LocationStateEnum.LocationState_Empty.ToString())
                                                {
                                                    count = 1;
                                                }
                                            }
                                            if (count == 0) { continue; }
                                            for (int i = 1; i < 5; i++)
                                            {
                                                if (choose)
                                                {
                                                    KClocation = locRepository.FindFirst(v => v.upper_code == nums[i - 1]);
                                                    if (KClocation.location_state == LocationStateEnum.LocationState_Empty.ToString())
                                                    {
                                                        address = KClocation.upper_code;
                                                        choose = false;
                                                        break;
                                                    }
                                                    else
                                                    {
                                                        if (nums[i - 1].Contains("A")) { i = 0; }
                                                        continue;
                                                    }
                                                }
                                                else if (nums[i - 1].Contains(toaddressnum))
                                                {
                                                    choose = true;
                                                    if (toaddressnum == "A") { i = 0; }
                                                    continue;
                                                }
                                                else
                                                {
                                                    continue;
                                                }
                                            }
                                        }
                                    }
                                    if (!string.IsNullOrEmpty(address))
                                    {
                                        var tasknow = agvRepository.FindFirst(f => f.agv_toaddress== address);
                                        if (tasknow==null)
                                        {
                                            responseContent = locRepository.DbContextBeginTransaction(() =>
                                            {
                                                //条件全部通过,生成AGV任务
                                                dt_agvtask agvtask = new dt_agvtask
                                                {
                                                    agv_materbarcode = stock.BarCode,
                                                    agv_barcode = "",
                                                    agv_createtime = DateTime.Now,
                                                    agv_fromaddress = ZZLJ,
                                                    agv_grade = 1,
                                                    agv_materielid = stock.MaterialType,
                                                    agv_qty = 1,
                                                    agv_tasknum = "KH-" + tasknumber.GetTaskNumber(tasknumberRep),
                                                    agv_taskstate = "Create",
                                                    agv_tasktype = "TaskType_Outbound",
                                                    agv_toaddress = address,
                                                    agv_userid = "WCS",
                                                    agv_worktype = 1
                                                };
                                                if (ZZLJ.Contains("ZJXL"))
                                                {
                                                    agvtask.agv_code = "正极1号AGV";
                                                }
                                                else
                                                {
                                                    agvtask.agv_code = "负极1号AGV";
                                                }
                                                stock.FQ_Status = stock.FQ_Status + "doing";
                                                groupRepository.Update(stock, true);
                                                agvRepository.Add(agvtask, true);
                                                WriteLog.Info("Z_ZZLJ_Task").Write("Z_ZZLJ_Task" + agvtask.agv_tasknum + stock.BarCode + DateTime.Now, "Z_ZZLJ_Task");
                                                location.location_state = LocationStateEnum.LocationState_Lock.ToString();
                                                locRepository.Update(location, true);
                                                KClocation.location_state = LocationStateEnum.LocationState_Lock.ToString();
                                                locRepository.Update(KClocation, true);
                                                return WebResponseContent.Instance.OK();
                                            });
                                            break;
                                        }
                                    }
                                }
 
                            }
                        }
                    }
                    else
                    {
                        WriteLog.Info("Z_ZZLJ_Task").Write("Z_ZZLJ_Task_text" + 2 + DateTime.Now, "Z_ZZLJ_Task_text");
                        WCSService.iswlx = true;
                        List<string> WLXs = new List<string> { "ZJXL-WLX001", "FJXL-WLX001" };
                        foreach (var item in WLXs)
                        {
                            PLCClient plc = WCSService.Clients.Find(v => v.PLCName == "正极提升机");
                            if (plc == null)
                                continue;
                            //获取正极物流线下料请求
                            string isZWork = plc.ReadValue(ConveyorLineInfoDBName.R_ZWLX_Downrequest.ToString(), plc.PLCDescroption).ToString();
                            //string isZWork = "true";
                            //获取负极物流线下料请求
                            string isFWork = plc.ReadValue(ConveyorLineInfoDBName.R_FWLX_Downrequest.ToString(), plc.PLCDescroption).ToString();
                            GetEquipmentInfo("WLX001", "正极物流线下料请求:" + isZWork, "负极物流线下料请求:" + isFWork, "", "");
                            var tasks = agvRepository.FindFirst(v => v.agv_fromaddress == item || v.agv_toaddress == item);
                            if (tasks != null)
                                continue;
                            if (bool.Parse(isZWork) && item.Contains("Z"))
                            {
                                lock (requestZX)
                                {
                                    string address = "";
                                    bool choose = false;
                                    var location = new base_ware_location();
                                    string toaddressnum = "";
                                    var ztask = agvRepository.Find(f => f.agv_toaddress.Contains("ZX"));
                                    if (ztask.Count() == 0)
                                    {
                                        var taskthy = agvtask_HtyRepository.Find(f => f.agv_toaddress.Contains("ZX") && f.agv_toaddress.Contains("0101") && (f.agv_taskstate == "Finished" || f.agv_taskstate == "ManualCompletion")).OrderByDescending(o => o.agv_createtime).First();
                                        toaddressnum = taskthy.agv_toaddress.Substring(2, 1);
                                    }
                                    else
                                    {
                                        var task = ztask.OrderByDescending(o => o.agv_createtime).First();
                                        toaddressnum = task.agv_toaddress.Substring(2, 1);
                                    }
                                    List<string> nums = new List<string>() { "ZXD0101", "ZXB0101", "ZXC0101", "ZXA0101" };
                                    int count = 0;
                                    for (int i = 0; i < nums.Count(); i++)
                                    {
                                        var loc = locRepository.FindFirst(f => f.upper_code == nums[i]);
                                        if (loc.location_state == LocationStateEnum.LocationState_Empty.ToString())
                                        {
                                            count = 1;
                                        }
                                    }
                                    if (count == 0) { continue; }
                                    for (int i = 1; i < 5; i++)
                                    {
                                        if (choose)
                                        {
                                            location = locRepository.FindFirst(v => v.upper_code == nums[i - 1]);
                                            if (location.location_state == LocationStateEnum.LocationState_Empty.ToString())
                                            {
                                                address = location.upper_code;
                                                choose = false;
                                                break;
                                            }
                                            else
                                            {
                                                if (nums[i - 1].Contains("A")) { i = 0; }
                                                continue;
                                            }
                                        }
                                        else if (nums[i - 1].Contains(toaddressnum))
                                        {
                                            choose = true;
                                            if (toaddressnum == "A") { i = 0; }
                                            continue;
                                        }
                                        else
                                        {
                                            continue;
                                        }
                                    }
                                    if (!string.IsNullOrEmpty(address))
                                    {
                                        var taskwlxnow = agvRepository.FindFirst(f => f.agv_toaddress == address);
                                        if (taskwlxnow == null)
                                        {
                                            dt_agvtask agvtask = new dt_agvtask
                                            {
                                                agv_materbarcode = "",
                                                agv_barcode = "",
                                                agv_code = "正极1号AGV",
                                                agv_createtime = DateTime.Now,
                                                agv_fromaddress = item,
                                                agv_grade = 1,
                                                agv_materielid = "",
                                                agv_qty = 1,
                                                agv_tasknum = "KH-" + tasknumber.GetTaskNumber(tasknumberRep),
                                                agv_taskstate = "Create",
                                                agv_tasktype = "TaskType_Outbound",
                                                agv_toaddress = address,
                                                agv_userid = "WCS",
                                                agv_worktype = 2
                                            };
                                            location.location_state = LocationStateEnum.LocationState_Lock.ToString();
                                            locRepository.Update(location, true);
                                            agvRepository.Add(agvtask, true);
                                            WriteLog.Info("ZF_WLX_DownTask").Write("ZF_WLX_DownTask" + agvtask.agv_tasknum + DateTime.Now, "ZF_WLX_DownTask");
                                            continue;
                                        }
                                    }
                                }
                            }
                            else if (bool.Parse(isFWork) && item.Contains("F"))
                            {
                                lock (requestFX)
                                {
                                    string address = "";
                                    bool choose = false;
                                    var location = new base_ware_location();
                                    string toaddressnum = "";
                                    var ftask = agvRepository.Find(f => f.agv_toaddress.Contains("FX"));
                                    if (ftask.Count() == 0)
                                    {
                                        var taskthy = agvtask_HtyRepository.Find(f => f.agv_toaddress.Contains("FX") && f.agv_toaddress.Contains("0101") && (f.agv_taskstate == "Finished" || f.agv_taskstate == "ManualCompletion")).OrderByDescending(o => o.agv_createtime).First();
                                        toaddressnum = taskthy.agv_toaddress.Substring(2, 1);
                                    }
                                    else
                                    {
                                        var task = ftask.OrderByDescending(o => o.agv_createtime).First();
                                        toaddressnum = task.agv_toaddress.Substring(2, 1);
                                    }
                                    List<string> nums = new List<string>() { "FXD0101", "FXB0101", "FXC0101", "FXA0101" };
                                    int count = 0;
                                    for (int i = 0; i < nums.Count(); i++)
                                    {
                                        var loc = locRepository.FindFirst(f => f.upper_code == nums[i]);
                                        if (loc.location_state == LocationStateEnum.LocationState_Empty.ToString())
                                        {
                                            count = 1;
                                        }
                                    }
                                    if (count == 0) { continue; }
                                    for (int i = 1; i < 5; i++)
                                    {
                                        if (choose)
                                        {
                                            location = locRepository.FindFirst(v => v.upper_code == nums[i - 1]);
                                            if (location.location_state == LocationStateEnum.LocationState_Empty.ToString())
                                            {
                                                address = location.upper_code;
                                                choose = false;
                                                break;
                                            }
                                            else
                                            {
                                                if (nums[i - 1].Contains("A")) { i = 0; }
                                                continue;
                                            }
                                        }
                                        else if (nums[i - 1].Contains(toaddressnum))
                                        {
                                            choose = true;
                                            if (toaddressnum == "A") { i = 0; }
                                            continue;
                                        }
                                        else
                                        {
                                            continue;
                                        }
                                    }
                                    if (!string.IsNullOrEmpty(address))
                                    {
                                        var taskwlxnow = agvRepository.FindFirst(f => f.agv_toaddress == address);
                                        if (taskwlxnow==null)
                                        {
                                            dt_agvtask agvtask = new dt_agvtask
                                            {
                                                agv_materbarcode = "",
                                                agv_barcode = "",
                                                agv_code = "负极1号AGV",
                                                agv_createtime = DateTime.Now,
                                                agv_fromaddress = item,
                                                agv_grade = 1,
                                                agv_materielid = "",
                                                agv_qty = 1,
                                                agv_tasknum = "KH-" + tasknumber.GetTaskNumber(tasknumberRep),
                                                agv_taskstate = "Create",
                                                agv_tasktype = "TaskType_Outbound",
                                                agv_toaddress = address,
                                                agv_userid = "WCS",
                                                agv_worktype = 2
                                            };
                                            location.location_state = LocationStateEnum.LocationState_Lock.ToString();
                                            locRepository.Update(location, true);
                                            agvRepository.Add(agvtask, true);
                                            WriteLog.Info("F_WLX_DownTask").Write("F_WLX_DownTask" + agvtask.agv_tasknum + DateTime.Now, "F_WLX_DownTask");
                                            continue;
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
                catch (Exception ex)
                {
                    WriteLog.Info("Z_ZZLJ_Task").Write("Z_ZZLJ_Task" + ex.Message + DateTime.Now, "Z_ZZLJ_Task");
                }
                finally
                {
                    Interlocked.Exchange(ref _readZLJSignalso, 0);
                }
            }
        }
    }
}