稽查翻译修改 OCT06
continuous-integration/drone/push Build is passing

This commit is contained in:
he
2025-12-10 13:58:54 +08:00
parent 14ac852eee
commit 55a2301bb5
2 changed files with 39 additions and 8 deletions
@@ -137,11 +137,11 @@ namespace IRaCIS.Core.Infra.EFCore.Common
{
if (unit == ValueUnit.Custom)
{
transList.Add(answer + string.Empty + customUnit);
transList.Add(item + string.Empty + customUnit);
}
else
{
transList.Add(answer + string.Empty + unitDataList.Where(y => y.Unit == unit).Select(x => x.UnitName).FirstIsNullReturnEmpty());
transList.Add(item + string.Empty + unitDataList.Where(y => y.Unit == unit).Select(x => x.UnitName).FirstIsNullReturnEmpty());
}