qinchulong
2025-03-29 039a4a5433e7f80adc88b491b549e5d9486e4f9a
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
using System;
using System.Collections.Generic;
using System.Linq;
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;
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 _readWLXSignalso = 0;
        /// <summary>
        /// 正极和负极物流线入小极卷库逻辑
        /// </summary>
        /// <returns></returns>
        public static void ZF_WLX_DownTask()
        {
            if (Interlocked.Exchange(ref _readWLXSignalso, 1) == 0)
            {
                try
                {
                    VOLContext Context = new VOLContext();
                    Idt_task_numberRepository tasknumberRep = new dt_task_numberRepository(Context);
                    dt_task_numberService tasknumber = new dt_task_numberService(tasknumberRep);
                    Idt_agvtaskRepository agvRepository = new dt_agvtaskRepository(Context);
                    Ibase_routing_tableRepository routingRepository = new base_routing_tableRepository(Context);
                    Ibase_ware_locationRepository locRepository = new base_ware_locationRepository(Context);
                    Idt_agvtask_htyRepository agvtask_HtyRepository = new dt_agvtask_htyRepository(Context);
                    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))
                                {
                                    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))
                                {
                                    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("ZF_WLX_DownTask").Write("ZF_WLX_DownTask" + ex.Message + DateTime.Now, "ZF_WLX_DownTask");
                }
                finally
                {
                    Interlocked.Exchange(ref _readWLXSignalso, 0);
                }
            }
        }
    }
}