修改
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) if (RowId == null)
{ {
return string.Empty; return "-";
} }
else else
{ {

View File

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