using Masuit.Tools; using Microsoft.Extensions.Logging; using Quartz; using WIDESEA_Core.Const; using WIDESEA_DTO.WMS; using WIDESEA_IServices; using WIDESEAWCS_BasicInfoRepository; using WIDESEAWCS_Model.Models; namespace WIDESEA_StorageTaskServices { [DisallowConcurrentExecution] public class WhiteCarAutoOutJob : IJob { private ILogger _logger; private IDt_PalletStockInfoRepository _palletStockInfoRepository; private IDt_AreaInfoRepository _areaInfoRepository; //区域 private IDt_TaskRepository _taskRepository; private IDt_StationManagerRepository _stationManagerRepository; private ISys_ConfigService _configService; private ILocationInfoRepository _locationRepository; private IVV_StockInfoRepository _VVStockInfoRepository; private IUnitOfWorkManage _unitOfWorkManage; public WhiteCarAutoOutJob(ILogger logger, IDt_PalletStockInfoRepository palletStockInfoRepository, IDt_AreaInfoRepository areaInfoRepository, IDt_TaskRepository taskRepository, IDt_StationManagerRepository stationManagerRepository, ISys_ConfigService configService, ILocationInfoRepository locationRepository, IVV_StockInfoRepository vVStockInfoRepository, IUnitOfWorkManage unitOfWorkManage) { _logger = logger; _palletStockInfoRepository = palletStockInfoRepository; _areaInfoRepository = areaInfoRepository; _taskRepository = taskRepository; _stationManagerRepository = stationManagerRepository; _configService = configService; _locationRepository = locationRepository; _VVStockInfoRepository = vVStockInfoRepository; _unitOfWorkManage = unitOfWorkManage; } public Task Execute(IJobExecutionContext context) { try { //涂装不生产 则停止拉动出库 var area = _areaInfoRepository.QueryFirst(x => x.AreaCode == "2"); if (area.AreaStatus != 1l) { return Task.CompletedTask; } var stockInfo = _palletStockInfoRepository.Db.Queryable() //.Where(x => x.LockStatue == 0) .Includes(x => x.CarBodyInfo) .Where(x => x.CarBodyInfo.CarType == 1 && x.TaskStatus == 0) .OrderBy(x => x.CreateDate) // 排序 .ToList(); // 获取第一个元素 if (stockInfo.Where(x => x.TaskStatus == 1).Count() > 10) return Task.CompletedTask; if (stockInfo.Count == 0) return Task.CompletedTask; var OutCar = stockInfo.Where(x => x.TaskStatus == 0).FirstOrDefault(); if (OutCar == null) return Task.CompletedTask; var hasTask = _taskRepository.QueryFirst(x => x.PalletCode == OutCar.CarBodyInfo.PalletCode); if (hasTask != null) { Console.WriteLine("已存在出库任务"); return Task.CompletedTask; } List stationLists = null; if (OutCar.CarBodyInfo.CarType == 1) { stationLists = _stationManagerRepository.QueryData(x => x.RoadwayNo == OutCar.RoadwayNo && x.stationType == 2 && x.stationStatus == "1" && x.stationArea == "3"); } var stock = _VVStockInfoRepository.QueryFirst(x => x.carBodyID == OutCar.carBodyID); var lockStock = _palletStockInfoRepository.QueryFirst(x => x.carBodyID == OutCar.carBodyID); var location = _locationRepository.QueryFirst(x => x.LocationCode == stock.LocationCode); location.LocationStatus = (int)LocationEnum.InStockDisable; lockStock.TaskStatus = 1; if (stationLists == null || stationLists.Count == 0) throw new Exception("出库站台未配置或未启用"); Dt_StationManager Outstation = null; //if (stationLists.Count > 1) //{ // var Outtask = BaseDal.QueryData(x => x.Roadway == stationLists.FirstOrDefault().Roadway && x.TaskType == (int)TaskTypeEnum.Outbound).OrderByDescending(x => x.CreateDate).FirstOrDefault(); // if (Outtask != null) Outstation = stationLists.Where(x => x.stationChildCode != task.NextAddress && x.stationChildCode != Outtask.CurrentAddress).FirstOrDefault(); // else Outstation = stationLists.FirstOrDefault(); //} //else //{ Outstation = stationLists.FirstOrDefault(); //} //var stationInfo = stationInfos.FirstOrDefault(); // 创建并添加任务到数据库 hasTask = new Dt_Task { Grade = 1, Roadway = Outstation.Roadway, TargetAddress = Outstation.stationChildCode, Dispatchertime = DateTime.Now, NextAddress = Outstation.stationChildCode, OrderNo = null, PalletCode = stock.PalletCode, PVI = stock.PVI, SourceAddress = stock.LocationCode, CurrentAddress = stock.LocationCode, TaskState = (int)TaskOutStatusEnum.OutNew, TaskType = (int)TaskOutboundTypeEnum.Outbound, TaskNum = _taskRepository.GetTaskNo().Result, Creater = "System", CreateDate = DateTime.Now, TaskId = 0, CarType = stock.CarType, }; // 创建任务传输用的DTO对象 var taskDTO = CreateTaskDTO(hasTask); // 获取WMS IP地址用于发送任务请求 var wmsIpAddress = GetWCSIpReceiveTask(); if (wmsIpAddress == null) { throw new InvalidOperationException("WMS IP 未配置"); } var tasks = new List() { taskDTO }; // 发送任务请求到WMS var result = HttpHelper.PostAsync(wmsIpAddress, tasks.ToJsonString()).Result; WebResponseContent content = JsonConvert.DeserializeObject(result); if (content.Status) { _unitOfWorkManage.BeginTran(); // 添加任务到数据库 _taskRepository.AddData(hasTask); // 更新库位位置状态为不可用 _locationRepository.UpdateData(location); _palletStockInfoRepository.UpdateData(lockStock); _unitOfWorkManage.CommitTran(); } } catch (Exception ex) { ConsoleHelper.WriteErrorLine($"白车身自动出车错误信息:" + ex.Message); } finally { ConsoleHelper.WriteSuccessLine($"白车身自动出车:" + DateTime.Now.ToString()); } return Task.CompletedTask; } /// /// 创建任务DTO /// private WMSTaskDTO CreateTaskDTO(Dt_Task task) { return new WMSTaskDTO { TaskNum = task.TaskNum.Value, Grade = task.Grade.Value, PalletCode = task.PalletCode, RoadWay = task.Roadway, SourceAddress = task.SourceAddress, TargetAddress = task.TargetAddress, TaskState = task.TaskState.Value, Id = 0, TaskType = task.TaskType, pvi = task.PVI, NextAddress = task.NextAddress, CarType = task.CarType }; } private string GetWCSIpReceiveTask() { var configs = _configService.GetConfigsByCategory(CateGoryConst.CONFIG_SYS_IPAddress); var wmsBase = configs.FirstOrDefault(x => x.ConfigKey == SysConfigConst.WCSIPAddress)?.ConfigValue; var ipAddress = configs.FirstOrDefault(x => x.ConfigKey == SysConfigConst.ReceiveTask)?.ConfigValue; if (wmsBase == null || ipAddress == null) { return null; } return wmsBase + ipAddress; } } }