352 lines
18 KiB
C#
352 lines
18 KiB
C#
using System;
|
|
using System.Data;
|
|
using System.Dynamic;
|
|
using System.Security.Policy;
|
|
using Aop.Api.Domain;
|
|
using JNPF;
|
|
using JNPF.Common.Cache;
|
|
using JNPF.Common.Dtos.VisualDev;
|
|
using JNPF.FriendlyException;
|
|
using Microsoft.Extensions.Hosting;
|
|
using Microsoft.Extensions.Logging;
|
|
using NetTaste;
|
|
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Linq;
|
|
using Qiniu.Util;
|
|
using SqlSugar;
|
|
using Tnb.Common.Extension;
|
|
using Tnb.Common.Redis;
|
|
using Tnb.Common.Utils;
|
|
using Tnb.ProductionMgr.Entities;
|
|
using Tnb.ProductionMgr.Entities.Dto;
|
|
using Tnb.ProductionMgr.Entities.Enums;
|
|
using Tnb.ProductionMgr.Interfaces;
|
|
using Tnb.WarehouseMgr.Entities;
|
|
using Tnb.WarehouseMgr.Entities.Configs;
|
|
using Tnb.WarehouseMgr.Entities.Consts;
|
|
using Tnb.WarehouseMgr.Interfaces;
|
|
|
|
namespace Tnb.ProductionMgr
|
|
{
|
|
//redis定时获取数采数据
|
|
public class RedisBackGround : IHostedService, IDisposable
|
|
{
|
|
private Timer? Readtimer;
|
|
private Timer? CheckGettimer;
|
|
private Timer? Scantimer;
|
|
private Timer? SSXcodetimer;
|
|
private readonly RedisData _redisData;
|
|
private readonly IPrdInstockService _prdInstockService;
|
|
private readonly ISqlSugarRepository<RedisReadConfig> _repository;
|
|
private readonly IWmsPDAScanInStockService _wmsPDAScanInStock;
|
|
private readonly ElevatorControlConfiguration _eleCtlCfg = App.Configuration.Build<ElevatorControlConfiguration>();
|
|
public RedisBackGround(RedisData redisData, IPrdInstockService prdInstockService, ISqlSugarRepository<RedisReadConfig> repository, IWmsPDAScanInStockService wmsPDAScanInStock)
|
|
{
|
|
_redisData = redisData;
|
|
_prdInstockService = prdInstockService;
|
|
_repository = repository;
|
|
_wmsPDAScanInStock = wmsPDAScanInStock;
|
|
}
|
|
//获取redis数据
|
|
private void GetRedisData(object state)
|
|
{
|
|
var _redisReadConfigs = _repository.AsQueryable().Where(p => p.enabled == 1).ToList();
|
|
foreach (var config in _redisReadConfigs)
|
|
{
|
|
try
|
|
{
|
|
var json = _redisData.GetHash(config.dev_name!, config.tag_name!).Result;
|
|
JObject? res = JsonConvert.DeserializeObject<JObject>(json);
|
|
if (config.data_type == (int)DataType.INT)
|
|
{
|
|
if (config.check_type == (int)CheckType.相等)
|
|
{
|
|
if (res.Value<int>("Value") == int.Parse(config.data!))
|
|
{
|
|
InstockInput instockInput = new()
|
|
{
|
|
equip_code = res["DevName"]!.ToString(),
|
|
label_code = res["TagName"]!.ToString()
|
|
};
|
|
TriggerEvent((EventType)config.event_type, instockInput);
|
|
}
|
|
}
|
|
else if (config.check_type == (int)CheckType.包含)
|
|
{
|
|
int[] ints = Array.ConvertAll(config.data!.Replace("[", "").Replace("]", "").Split(",", StringSplitOptions.RemoveEmptyEntries), int.Parse);
|
|
if (ints.Contains(res.Value<int>("Value")))
|
|
{
|
|
InstockInput instockInput = new()
|
|
{
|
|
equip_code = res["DevName"]!.ToString(),
|
|
label_code = res["TagName"]!.ToString()
|
|
};
|
|
TriggerEvent((EventType)config.event_type, instockInput);
|
|
}
|
|
}
|
|
}
|
|
else if (config.data_type == (int)DataType.BOOL)
|
|
{
|
|
if (config.check_type == (int)CheckType.相等)
|
|
{
|
|
if (res.Value<bool>("Value") == bool.Parse(config.data!))
|
|
{
|
|
InstockInput instockInput = new()
|
|
{
|
|
equip_code = res["DevName"]!.ToString(),
|
|
label_code = res["TagName"]!.ToString()
|
|
};
|
|
TriggerEvent((EventType)config.event_type, instockInput);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
catch (Exception)
|
|
{
|
|
}
|
|
}
|
|
}
|
|
private void TriggerEvent(EventType eventType, InstockInput instockInput)
|
|
{
|
|
switch (eventType)
|
|
{
|
|
case EventType.注塑空满箱请求:
|
|
_prdInstockService.InstockTypeOne(instockInput);
|
|
break;
|
|
case EventType.挤出空满箱请求:
|
|
_prdInstockService.InstockTubeOne(instockInput);
|
|
break;
|
|
case EventType.限位请求:
|
|
_prdInstockService.InstockOutPack(instockInput);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
//ctu取货
|
|
private void CheckGet(object state)
|
|
{
|
|
Dictionary<string, string[]> getdic = new Dictionary<string, string[]>();
|
|
getdic.Add("SSX-021-005", new string[] { "YTCS", "AllowFullOut_CS05", "LiftCode" });
|
|
getdic.Add("SSX-011-002", new string[] { "YTCS", "AllowAgvFullIn_CS02", "Code_CS02" });
|
|
getdic.Add("SSX-011-004", new string[] { "YTCS", "AllowCtuFullOut_CS04", "Code_CS04" });
|
|
|
|
getdic.Add("SSX-011-008", new string[] { "东面提升机输送线", "入库输送线8允许出箱", "入库输送线7条码" });
|
|
|
|
getdic.Add("SSX-111-011", new string[] { "东面提升机输送线", "下升降机11允许出箱", "下升降机11条码" });
|
|
getdic.Add("SSX-111-012", new string[] { "东面提升机输送线", "下升降机12允许出箱", "下升降机12条码" });
|
|
getdic.Add("ZSSSXCTU02", new string[] { "YTCS", "AllowAgvEmptyOut_CS03", "" });
|
|
getdic.Add("ZSSSXCTU01", new string[] { "YTCS", "AllowAgvEmptyOut_CS01", "" });
|
|
|
|
|
|
foreach (var key in getdic.Keys)
|
|
{
|
|
try
|
|
{
|
|
var strs = getdic.Where(p => p.Key == key).First().Value;
|
|
bool flag = _redisData.HashExist(strs[0], strs[1]).Result;
|
|
string data = _redisData.GetHash(strs[0], strs[1]).Result;
|
|
JObject? res = JsonConvert.DeserializeObject<JObject>(data);
|
|
bool result = res != null && res["Value"] != null ? res.Value<bool>("Value") : false;
|
|
if (result)
|
|
{
|
|
if (!string.IsNullOrEmpty(strs[2]))
|
|
{
|
|
string codedata = _redisData.GetHash(strs[0], strs[2]).Result;
|
|
JObject? coderes = JsonConvert.DeserializeObject<JObject>(codedata);
|
|
string coderesult = coderes != null && coderes["Value"] != null ? coderes.Value<string>("Value")! : "";
|
|
coderesult = coderesult.Replace("\r", "");
|
|
var DistaskH = _repository.AsSugarClient().Queryable<WmsDistaskH>().Where(p => p.carry_code == coderesult && p.status == WmsWareHouseConst.TASK_BILL_STATUS_YXD_ID && string.IsNullOrEmpty(p.extras)).First();
|
|
if (DistaskH != null)
|
|
{
|
|
dynamic reqBody = new ExpandoObject();
|
|
reqBody.taskCode = DistaskH.bill_code;
|
|
reqBody.slotCode = key;
|
|
reqBody.containerCode = coderesult;
|
|
CancellationTokenSource Ctu = new();
|
|
dynamic respBody = HttpClientHelper.PostStreamAsync("http://192.168.11.104:1880/wcs/notify/cargo", reqBody, Ctu.Token).Result;
|
|
DistaskH.extras = respBody;
|
|
_repository.AsSugarClient().Updateable(DistaskH).ExecuteCommand();
|
|
Ctu.Dispose();
|
|
}
|
|
}
|
|
else {
|
|
var DistaskH = _repository.AsSugarClient().Queryable<WmsDistaskH>().Where(p => p.startlocation_code == key && p.status == WmsWareHouseConst.TASK_BILL_STATUS_YXD_ID && string.IsNullOrEmpty(p.extras)).First();
|
|
if (DistaskH != null)
|
|
{
|
|
dynamic reqBody = new ExpandoObject();
|
|
reqBody.taskCode = DistaskH.bill_code;
|
|
reqBody.slotCode = key;
|
|
reqBody.containerCode = DistaskH.carry_code;
|
|
CancellationTokenSource Ctu = new();
|
|
dynamic respBody = HttpClientHelper.PostStreamAsync("http://192.168.11.104:1880/wcs/notify/cargo", reqBody, Ctu.Token).Result;
|
|
DistaskH.extras = respBody;
|
|
_repository.AsSugarClient().Updateable(DistaskH).ExecuteCommand();
|
|
Ctu.Dispose();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
catch (Exception)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|
|
//扫码入库
|
|
private void ScanInStock(object state)
|
|
{
|
|
Dictionary<string, string[]> getdic = new Dictionary<string, string[]>();
|
|
getdic.Add("BGWRKYCL02", new string[] { "CP8", "AllowGetFullBox1", "code1", "PutDoneEmptyBox","false" });
|
|
getdic.Add("BGWRKYCL01", new string[] { "CP8", "AllowGetFullBox2", "code2", "PutDoneEmptyBox", "false" });
|
|
foreach (var key in getdic.Keys)
|
|
{
|
|
try
|
|
{
|
|
var strs = getdic.Where(p => p.Key == key).First().Value;
|
|
bool flag = _redisData.HashExist(strs[0], strs[1]).Result;
|
|
string data = _redisData.GetHash(strs[0], strs[1]).Result;
|
|
JObject? res = JsonConvert.DeserializeObject<JObject>(data);
|
|
bool result = res != null && res["Value"] != null ? res.Value<bool>("Value") : false;
|
|
if (result)
|
|
{
|
|
Dictionary<string, string> dicCommand = new(StringComparer.OrdinalIgnoreCase)
|
|
{
|
|
["DevName"] = strs[0],
|
|
["token"] = _eleCtlCfg.token,
|
|
["TagName"] = strs[3],
|
|
["Value"] = strs[4],
|
|
};
|
|
HttpClientHelper.GetRequestAsync(_eleCtlCfg.WriteTagUrl, dicCommand).Wait();
|
|
|
|
|
|
string codedata = _redisData.GetHash(strs[0], strs[2]).Result;
|
|
JObject? coderes = JsonConvert.DeserializeObject<JObject>(codedata);
|
|
string coderesult = coderes != null && coderes["Value"] != null ? coderes.Value<string>("Value")! : "";
|
|
WmsCarryH? carry = _repository.AsSugarClient().Queryable<WmsCarryH>().Single(it => it.carry_code == coderesult);
|
|
if (carry != null)
|
|
{
|
|
if (_repository.AsSugarClient().Queryable<WmsDistaskH>().Where(p => p.carry_id == carry.id && p.status != WmsWareHouseConst.TASK_BILL_STATUS_COMPLE_ID ).Any())
|
|
continue;
|
|
var WmsCarryCode = _repository.AsSugarClient().Queryable<WmsCarryCode>().Single(it => it.carry_id == carry.id);
|
|
if (WmsCarryCode != null)
|
|
{
|
|
VisualDevModelDataCrInput input = new VisualDevModelDataCrInput();
|
|
input.data = new Dictionary<string, object>();
|
|
input.data.Add("barcode", coderesult);
|
|
input.data.Add("codeqty", WmsCarryCode.codeqty);//条码数量
|
|
input.data.Add("material_code", WmsCarryCode.material_code);
|
|
input.data.Add("extras", key);//location_code
|
|
input.data.Add("warehouse_id", "1");//TEST
|
|
input.data.Add("bill_code", "");//采购收货单号
|
|
input.data.Add("code_batch", WmsCarryCode.code_batch!);//批次
|
|
input.data.Add("material_specification", WmsCarryCode.material_specification!);//规格型号
|
|
input.data.Add("container_no", WmsCarryCode.container_no!);//箱号
|
|
input.data.Add("material_id", WmsCarryCode.material_id);
|
|
input.data.Add("id", null);
|
|
_wmsPDAScanInStock.ScanInStockByRedis(input);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
catch (Exception)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
private void SSXcode(object state)
|
|
{
|
|
Dictionary<string, string[]> dic = new Dictionary<string, string[]>();
|
|
//有问题
|
|
dic.Add("东面提升机输送线", new string[] { "下升降机判断请求", "下升降机判断条码", "下升降机判断完毕", "下升降机判断结果" });
|
|
Dictionary<string, int> putdic = new Dictionary<string, int>();
|
|
putdic.Add("SSX-111-011", 11);
|
|
putdic.Add("SSX-111-012", 12);
|
|
foreach (var key in dic.Keys)
|
|
{
|
|
try
|
|
{
|
|
var strs = dic.Where(p => p.Key == key).First().Value;
|
|
string dataflag = _redisData.GetHash(key, strs[0]).Result;
|
|
JObject? resflag = JsonConvert.DeserializeObject<JObject>(dataflag);
|
|
bool re = resflag != null && resflag["Value"] != null ? resflag.Value<bool>("Value") : false;
|
|
if (!re)
|
|
continue;
|
|
string data = _redisData.GetHash(key, strs[1]).Result;
|
|
JObject? res = JsonConvert.DeserializeObject<JObject>(data);
|
|
string? result = res != null && res["Value"] != null ? res.Value<string>("Value") : "";
|
|
if (!string.IsNullOrEmpty(result))
|
|
{
|
|
result = result.Replace("\r", "");
|
|
var DistaskH = _repository.AsSugarClient().Queryable<WmsDistaskH>().Where(p => p.carry_code == result && p.status != WmsWareHouseConst.TASK_BILL_STATUS_COMPLE_ID).OrderByDescending(p => p.create_time).First();
|
|
if (DistaskH != null)
|
|
{
|
|
Dictionary<string, string> dicCommand2 = new(StringComparer.OrdinalIgnoreCase)
|
|
{
|
|
["DevName"] = key,
|
|
["token"] = _eleCtlCfg.token,
|
|
["TagName"] = strs[3],
|
|
["Value"] = putdic.Keys.Contains(DistaskH.startlocation_code) ? putdic.Where(p => p.Key == DistaskH.startlocation_code).First().Value.ToString() : "13",
|
|
};
|
|
HttpClientHelper.GetRequestAsync(_eleCtlCfg.WriteTagUrl, dicCommand2).Wait();
|
|
Dictionary<string, string> dicCommand = new(StringComparer.OrdinalIgnoreCase)
|
|
{
|
|
["DevName"] = key,
|
|
["token"] = _eleCtlCfg.token,
|
|
["TagName"] = strs[2],
|
|
["Value"] = "true",
|
|
};
|
|
HttpClientHelper.GetRequestAsync(_eleCtlCfg.WriteTagUrl, dicCommand).Wait();
|
|
}
|
|
else
|
|
{
|
|
Dictionary<string, string> dicCommand2 = new(StringComparer.OrdinalIgnoreCase)
|
|
{
|
|
["DevName"] = key,
|
|
["token"] = _eleCtlCfg.token,
|
|
["TagName"] = strs[3],
|
|
["Value"] = "13",
|
|
};
|
|
HttpClientHelper.GetRequestAsync(_eleCtlCfg.WriteTagUrl, dicCommand2).Wait();
|
|
Dictionary<string, string> dicCommand = new(StringComparer.OrdinalIgnoreCase)
|
|
{
|
|
["DevName"] = key,
|
|
["token"] = _eleCtlCfg.token,
|
|
["TagName"] = strs[2],
|
|
["Value"] = "true",
|
|
};
|
|
HttpClientHelper.GetRequestAsync(_eleCtlCfg.WriteTagUrl, dicCommand).Wait();
|
|
}
|
|
}
|
|
}
|
|
catch (Exception)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
Readtimer?.Dispose();
|
|
CheckGettimer?.Dispose();
|
|
Scantimer?.Dispose();
|
|
SSXcodetimer?.Dispose();
|
|
}
|
|
public Task StartAsync(CancellationToken cancellationToken)
|
|
{
|
|
Readtimer = new Timer(GetRedisData, null, TimeSpan.Zero, TimeSpan.FromSeconds(300));
|
|
CheckGettimer = new Timer(CheckGet, null, TimeSpan.Zero, TimeSpan.FromSeconds(10));
|
|
Scantimer = new Timer(ScanInStock, null, TimeSpan.Zero, TimeSpan.FromSeconds(30));
|
|
SSXcodetimer= new Timer(SSXcode, null, TimeSpan.Zero, TimeSpan.FromSeconds(10));
|
|
return Task.CompletedTask;
|
|
}
|
|
public Task StopAsync(CancellationToken cancellationToken)
|
|
{
|
|
return Task.CompletedTask;
|
|
}
|
|
|
|
}
|
|
} |