修改中心调研bug
continuous-integration/drone/push Build is passing Details

hang 2024-08-07 15:02:07 +08:00
parent b3e187b53c
commit d7d7a0af55
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ namespace IRaCIS.Core.Application.Contracts
{
var trialSiteEquipmentSurveyQueryable = _trialSiteEquipmentSurveyRepository.Where(t => t.TrialSiteSurveyId == trialSiteSurveyId)
.WhereIf(!string.IsNullOrEmpty(scannerType), t => t.ScannerType.Contains(scannerType!))
.ProjectTo<TrialSiteEquipmentSurveyView>(_mapper.ConfigurationProvider);
.ProjectTo<TrialSiteEquipmentSurveyView>(_mapper.ConfigurationProvider,new { isEn_Us = _userInfo.IsEn_Us });
return await trialSiteEquipmentSurveyQueryable.ToListAsync();
}