稽查修改 OCT4
continuous-integration/drone/push Build is failing
Details
continuous-integration/drone/push Build is failing
Details
parent
334b2fe440
commit
662001accd
|
|
@ -112,17 +112,33 @@ namespace IRaCIS.Core.Infra.EFCore.Common
|
|||
return string.Empty;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
if (answerType == "upload")
|
||||
{
|
||||
return "❄❅❆❇❈❉❊" + answer;
|
||||
}
|
||||
|
||||
var answerList = answer.Split(new string[] { "," }, StringSplitOptions.RemoveEmptyEntries).ToList();
|
||||
|
||||
List<string> transList = new List<string>();
|
||||
foreach (var item in answerList)
|
||||
{
|
||||
if (unit == ValueUnit.Custom)
|
||||
{
|
||||
return answer + string.Empty + customUnit;
|
||||
transList.Add(answer + string.Empty + customUnit);
|
||||
}
|
||||
else
|
||||
{
|
||||
transList.Add(answer + string.Empty + unitDataList.Where(y => y.Unit == unit).Select(x => x.UnitName).FirstIsNullReturnEmpty());
|
||||
}
|
||||
|
||||
return answer + string.Empty + unitDataList.Where(y => y.Unit == unit).Select(x => x.UnitName).FirstIsNullReturnEmpty();
|
||||
|
||||
}
|
||||
|
||||
return string.Join(",", transList);
|
||||
|
||||
}
|
||||
public string GetEntityAuditOpt(EntityEntry entityEntry)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue