稽查翻译修改

Test_Study_Net8
he 2024-05-23 15:01:16 +08:00
parent 5e613fd9d3
commit f945793d6d
1 changed files with 7 additions and 7 deletions

View File

@ -238,7 +238,7 @@ namespace IRaCIS.Core.Application.Service
var listIdentification = auditDatas.Select(x => x.Identification).Distinct().ToList();
//var listIdentification = auditDatas.Select(x => x.Identification).Distinct().ToList();
foreach (var item in auditDatas)
{
Dictionary<string, object> jsonDict = (JsonConvert.DeserializeObject<Dictionary<string, object>>(item.JsonStr)).IfNullThrowException();
@ -319,9 +319,9 @@ namespace IRaCIS.Core.Application.Service
{
continue;
}
str = await GetInspectionEnumValue(listIdentification, str);
str = await SetEnum(dto.TrialId, listIdentification, str);
str = await SetDataInspectionDateType(listIdentification, str);
str = await GetInspectionEnumValue(new List<string>() { item.Identification }, str);
str = await SetEnum(dto.TrialId, new List<string>() { item.Identification }, str);
str = await SetDataInspectionDateType(new List<string>() { item.Identification }, str);
jsonDict[nameof(InspectionJsonDetail.Data)] = JsonConvert.DeserializeObject<object>(str);
@ -331,9 +331,9 @@ namespace IRaCIS.Core.Application.Service
{
continue;
}
str2 = await GetInspectionEnumValue(listIdentification, str2);
str2 = await SetEnum(dto.TrialId, listIdentification, str2);
str2 = await SetDataInspectionDateType(listIdentification, str2);
str2 = await GetInspectionEnumValue(new List<string>() { item.Identification }, str2);
str2 = await SetEnum(dto.TrialId, new List<string>() { item.Identification }, str2);
str2 = await SetDataInspectionDateType(new List<string>() { item.Identification }, str2);
jsonDict[nameof(InspectionJsonDetail.CommonData)] = JsonConvert.DeserializeObject<object>(str2);
#endregion