diff --git a/SGGL/BLL/HSSE/Manager/HSSELogService.cs b/SGGL/BLL/HSSE/Manager/HSSELogService.cs index dfaf88af..30638046 100644 --- a/SGGL/BLL/HSSE/Manager/HSSELogService.cs +++ b/SGGL/BLL/HSSE/Manager/HSSELogService.cs @@ -1023,7 +1023,7 @@ namespace BLL } if (!string.IsNullOrEmpty(CompileDate)) { - getInfoList = getInfoList.Where(x => x.CompileDate == CompileDate).ToList(); + getInfoList = getInfoList.Where(x => x.CompileDate.Contains(CompileDate)).ToList(); } return getInfoList;