This commit is contained in:
2024-05-21 17:22:09 +08:00
parent ccb52b157d
commit d013cbaa90
5 changed files with 23 additions and 2 deletions

View File

@@ -129,6 +129,10 @@ namespace Tnb.ProductionMgr
Log.Information("【EmptyCarryOutStk】左输送线空箱入呼叫成功");
//_redisData.Set("YTCS_CallCtuEmptyIn_CS01_flag", true, TimeSpan.FromMinutes(20));
}
else
{
Log.Error($"【EmptyCarryOutStk】左输送线空箱入呼叫失败:{result.msg}");
}
return Task.CompletedTask;
}
@@ -150,6 +154,10 @@ namespace Tnb.ProductionMgr
Log.Information("【EmptyCarryOutStk】右输送线空箱入呼叫成功");
//_redisData.Set("YTCS_CallCtuEmptyIn_CS03_flag", true, TimeSpan.FromMinutes(20));
}
else
{
Log.Error($"【EmptyCarryOutStk】右输送线空箱入呼叫失败:{result.msg}");
}
return Task.CompletedTask;
}
@@ -166,6 +174,7 @@ namespace Tnb.ProductionMgr
string startLocationCode = cs01==false ? "SSX-021-001" : cs03==false ? "SSX-021-003" : "";
if (startLocationCode.IsEmpty())
{
Log.Error($"起始库位为空");
return Task.CompletedTask;
}
@@ -193,6 +202,10 @@ namespace Tnb.ProductionMgr
Log.Information("【FixedPointDelivery】注塑定点配送成功");
//_redisData.Set("hxjC_DB100.132.3_flag", true, TimeSpan.FromMinutes(20));
}
else
{
Log.Error($"【FixedPointDelivery】注塑定点配送失败:{authResponse.msg}");
}
}