修改
continuous-integration/drone/push Build is passing Details

Test_HIR_Net8
he 2025-09-26 17:17:56 +08:00
parent d72b28afc2
commit 02a49b2239
2 changed files with 3 additions and 3 deletions

View File

@ -610,7 +610,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
{
if (RowId == null)
{
return string.Empty;
return "-";
}
else
{

View File

@ -533,7 +533,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
bool isOrgan = false;
try
{
if (item2.Key == "Organ" && column["RowMark"] == string.Empty || column["RowMark"] == "-")
if (item2.Key == "Organ" && (column["RowMark"] == string.Empty || column["RowMark"] == "-"))
{
column[item2.Key] = string.Empty;
isOrgan = true;
@ -541,8 +541,8 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
}
catch (Exception)
{
column[item2.Key] = "-";
}
if (!isOrgan)
{