|
|
|
@ -410,7 +410,12 @@ namespace DS.WMS.Core.TaskPlat
|
|
|
|
|
.Where(x => allConfigModuleIdList.Contains(x.Id) && x.TaskType == currentTaskType.ToString())
|
|
|
|
|
.Select(x => x.Id)
|
|
|
|
|
.FirstAsync();
|
|
|
|
|
configId = allConfigList.First(x => x.ExecuteModuleId == currentModuleId).Id;
|
|
|
|
|
var currentConfig = allConfigList.FirstOrDefault(x => x.ExecuteModuleId == currentModuleId);
|
|
|
|
|
if (currentConfig == null)
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
configId = currentConfig.Id;
|
|
|
|
|
}
|
|
|
|
|
List<TaskFlowConfig> waitMatchConfigList = new();
|
|
|
|
|
for (int i = 0; i < allConfigList.Count; i++)
|
|
|
|
|