From b89c3301e3434788c708bd9f47a68b44da5ee784 Mon Sep 17 00:00:00 2001 From: waruneeauy Date: Fri, 29 Mar 2024 14:54:33 +0700 Subject: [PATCH] fix bug report probation --- .../Repositories/Reports/ProbationReportRepository.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BMA.EHR.Application/Repositories/Reports/ProbationReportRepository.cs b/BMA.EHR.Application/Repositories/Reports/ProbationReportRepository.cs index 76cc89da..f7007514 100644 --- a/BMA.EHR.Application/Repositories/Reports/ProbationReportRepository.cs +++ b/BMA.EHR.Application/Repositories/Reports/ProbationReportRepository.cs @@ -79,7 +79,7 @@ namespace BMA.EHR.Application.Repositories.Reports Outputs = probation_assign.data.outputs.ToList(), OtherDesc = string.IsNullOrEmpty(probation_assign.data.assign.other_desc) ? string.Empty : probation_assign.data.assign.other_desc, Other4Desc = string.IsNullOrEmpty(probation_assign.data.assign.other4_desc) ? string.Empty : probation_assign.data.assign.other4_desc, - Other5No1Desc = string.IsNullOrEmpty(probation_assign.data.assign.other4_desc) ? string.Empty : probation_assign.data.assign.other4_desc, + Other5No1Desc = string.IsNullOrEmpty(probation_assign.data.assign.other5_no1_desc) ? string.Empty : probation_assign.data.assign.other5_no1_desc, Other5No2Desc = string.IsNullOrEmpty(probation_assign.data.assign.other5_no2_desc) ? string.Empty : probation_assign.data.assign.other5_no2_desc, }; }