diff --git a/Controllers/ProfileReportController.cs b/Controllers/ProfileReportController.cs index da2760e..60fd321 100644 --- a/Controllers/ProfileReportController.cs +++ b/Controllers/ProfileReportController.cs @@ -341,6 +341,7 @@ namespace BMA.EHR.Report.Service.Controllers Area = "", Province = "", Telephone = p.TelephoneNumber, + CoupleLastNameOld = p == null ? "" : p.CoupleLastNameOld, CouplePrefix = c_pf == null ? "" : c_pf.Name, CoupleFullName = $"{p.CoupleFirstName} {p.CoupleLastName}".Trim(), FatherPrefix = f_pf == null ? "" : f_pf.Name, diff --git a/Models/HR/Profile.cs b/Models/HR/Profile.cs index 547e4b7..75b416e 100644 --- a/Models/HR/Profile.cs +++ b/Models/HR/Profile.cs @@ -65,6 +65,9 @@ namespace BMA.EHR.Profile.Service.Models.HR [MaxLength(100)] public string? CoupleLastName { get; set; } + [MaxLength(100)] + public string? CoupleLastNameOld { get; set; } + [MaxLength(100)] public string? CoupleCareer { get; set; } diff --git a/Report/Profile/rptKK1_Page1.trdp b/Report/Profile/rptKK1_Page1.trdp index 2978aa7..8063b02 100644 Binary files a/Report/Profile/rptKK1_Page1.trdp and b/Report/Profile/rptKK1_Page1.trdp differ