Replace score labels with TrueCV Score branding

- Remove score rating labels (Excellent, Good, Fair, Poor, Very Poor)
- Display "TrueCV Score" instead of rating text
- Remove Rating column from batch PDF report

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-20 23:38:54 +01:00
parent 5bfefdfd1d
commit 894b539002
2 changed files with 2 additions and 6 deletions

View File

@@ -61,7 +61,7 @@ public class PdfReportService
row.ConstantItem(120).Border(2).BorderColor(scoreColor).Padding(10).AlignCenter().Column(col =>
{
col.Item().AlignCenter().Text(report.OverallScore.ToString()).Bold().FontSize(28).FontColor(scoreColor);
col.Item().AlignCenter().Text(report.ScoreLabel).FontSize(10).FontColor(scoreColor);
col.Item().AlignCenter().Text("TrueCV Score").FontSize(10).FontColor(scoreColor);
});
});
@@ -261,7 +261,6 @@ public class PdfReportService
columns.RelativeColumn(3);
columns.RelativeColumn(2);
columns.ConstantColumn(50);
columns.RelativeColumn(2);
columns.ConstantColumn(45);
columns.ConstantColumn(45);
columns.ConstantColumn(45);
@@ -273,7 +272,6 @@ public class PdfReportService
header.Cell().Background(Colors.Blue.Darken2).Padding(5).Text("Candidate").Bold().FontColor(Colors.White);
header.Cell().Background(Colors.Blue.Darken2).Padding(5).Text("Date").Bold().FontColor(Colors.White);
header.Cell().Background(Colors.Blue.Darken2).Padding(5).AlignCenter().Text("Score").Bold().FontColor(Colors.White);
header.Cell().Background(Colors.Blue.Darken2).Padding(5).Text("Rating").Bold().FontColor(Colors.White);
header.Cell().Background(Colors.Blue.Darken2).Padding(5).AlignCenter().Text("Verified").Bold().FontColor(Colors.White);
header.Cell().Background(Colors.Blue.Darken2).Padding(5).AlignCenter().Text("Gaps").Bold().FontColor(Colors.White);
header.Cell().Background(Colors.Blue.Darken2).Padding(5).AlignCenter().Text("Critical").Bold().FontColor(Colors.White);
@@ -289,7 +287,6 @@ public class PdfReportService
table.Cell().Background(bgColor).Padding(5).Text(item.CandidateName);
table.Cell().Background(bgColor).Padding(5).Text(item.UploadDate.ToString("dd MMM yy"));
table.Cell().Background(bgColor).Padding(5).AlignCenter().Text(item.Score.ToString()).Bold().FontColor(scoreColor);
table.Cell().Background(bgColor).Padding(5).Text(item.ScoreLabel);
table.Cell().Background(bgColor).Padding(5).AlignCenter().Text(item.VerifiedEmployers + "/" + (item.VerifiedEmployers + item.UnverifiedEmployers));
table.Cell().Background(bgColor).Padding(5).AlignCenter().Text(item.GapMonths + "mo");
table.Cell().Background(bgColor).Padding(5).AlignCenter().Text(item.CriticalFlags.ToString()).FontColor(item.CriticalFlags > 0 ? Colors.Red.Darken1 : Colors.Grey.Medium);