Browse Source

查报告问卷限制 格尔木

master
wxd 8 months ago
parent
commit
057856c737
  1. 2
      src/Shentun.WebPeis.Application/Persons/PersonAppService.cs

2
src/Shentun.WebPeis.Application/Persons/PersonAppService.cs

@ -584,7 +584,7 @@ namespace Shentun.WebPeis.Persons
}
#region 检查是否需要填写问卷
var isQuestion = _customerOrgRegisterRepository.FirstOrDefaultAsync(f => f.CustomerOrgRegisterId == entity.CustomerOrgRegisterId && f.IsQuestion == 'Y');
var isQuestion =await _customerOrgRegisterRepository.FirstOrDefaultAsync(f => f.CustomerOrgRegisterId == entity.CustomerOrgRegisterId && f.IsQuestion == 'Y');
if (isQuestion != null)
{
string baseAddress = _configuration.GetSection("MedicalHealthReport").GetSection("BaseAddress").Value;

Loading…
Cancel
Save