Merge branch 'Test.IRC' of http://192.168.3.68:2000/XCKJ/irc-netcore-api into Test.IRC
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
commit
b6676b92bf
|
@ -646,25 +646,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
|||
else if (calculate.GetDecimalNullFun != null)
|
||||
{
|
||||
var value = await calculate.GetDecimalNullFun(inDto);
|
||||
if (value == null)
|
||||
{
|
||||
if (typeNAList.Contains(item.QuestionType ?? QuestionType.SOD))
|
||||
{
|
||||
item.Answer = nameof(YesOrNoOrNa.NA);
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
item.Answer = this.nAString;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
else
|
||||
|
||||
{
|
||||
item.Answer = value==null?string.Empty: value.ToString();
|
||||
}
|
||||
item.Answer = value == null ? string.Empty : value.Value.ToString();
|
||||
}
|
||||
else if (calculate.GetStringFun != null)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue