From 3edf05ee7fbec74a4e265a0c8bb0e09e064b2d62 Mon Sep 17 00:00:00 2001 From: Martin Lush Date: Thu, 23 Sep 2021 10:19:18 +0100 Subject: [PATCH 1/3] APR-2667 - Fixed section 6.2 so it retains answers for Main & Employers upon change route --- .../Assessor/AssessorLookupServiceTests.cs | 2 +- .../Apply/Roatp/RoatpPreambleQuestionBuilder.cs | 8 ++++---- .../Services/Assessor/AssessorLookupService.cs | 17 ++++------------- .../DataMart/LookupQuestionTitles.sql | 4 +++- .../Services/ResetRouteQuestionServiceTests.cs | 12 ++++++------ .../Services/ResetRouteQuestionsService.cs | 6 ++---- 6 files changed, 20 insertions(+), 29 deletions(-) diff --git a/src/SFA.DAS.ApplyService.Application.UnitTests/Services/Assessor/AssessorLookupServiceTests.cs b/src/SFA.DAS.ApplyService.Application.UnitTests/Services/Assessor/AssessorLookupServiceTests.cs index 4bf0535d5..2958a7107 100644 --- a/src/SFA.DAS.ApplyService.Application.UnitTests/Services/Assessor/AssessorLookupServiceTests.cs +++ b/src/SFA.DAS.ApplyService.Application.UnitTests/Services/Assessor/AssessorLookupServiceTests.cs @@ -38,7 +38,7 @@ public void GetTitleForSequence_when_invalid_sequence_returns_null(int invalidSe [TestCase(RoatpWorkflowPageIds.ProtectingYourApprentices.ContinuityPlan)] [TestCase(RoatpWorkflowPageIds.ReadinessToEngage.EngagedWithEmployers)] - [TestCase(RoatpWorkflowPageIds.PlanningApprenticeshipTraining.TypeOfApprenticeshipTraining_Main)] + [TestCase(RoatpWorkflowPageIds.PlanningApprenticeshipTraining.TypeOfApprenticeshipTraining_MainEmployer)] public void GetTitleForPage_when_valid_page_returns_title(string validPageId) { var actualTitle = _assessorLookupService.GetTitleForPage(validPageId); diff --git a/src/SFA.DAS.ApplyService.Application/Apply/Roatp/RoatpPreambleQuestionBuilder.cs b/src/SFA.DAS.ApplyService.Application/Apply/Roatp/RoatpPreambleQuestionBuilder.cs index 6b5cf56fa..186d95fbc 100644 --- a/src/SFA.DAS.ApplyService.Application/Apply/Roatp/RoatpPreambleQuestionBuilder.cs +++ b/src/SFA.DAS.ApplyService.Application/Apply/Roatp/RoatpPreambleQuestionBuilder.cs @@ -308,12 +308,12 @@ public static class ReadinessToEngage public static class PlanningApprenticeshipTraining { - public const string TypeOfApprenticeshipTraining_Main = "6201"; - public const string TypeOfApprenticeshipTraining_Employer = "6202"; + public const string TypeOfApprenticeshipTraining_MainEmployer = "6201"; + public const string TypeOfApprenticeshipTraining_Employer_OLD_PAGE_ID = "6202"; public const string TypeOfApprenticeshipTraining_Supporting = "6203"; public const string TypeOfApprenticeshipTraining_NewSupporting = "6204"; - public const string ApprenticeshipStandards_NewMain = "6205"; - public const string ApprenticeshipStandards_NewEmployer = "6206"; + public const string ApprenticeshipStandards_NewMainEmployer = "6205"; + public const string ApprenticeshipStandards_NewEmployer_OLD_PAGE_ID = "6206"; public const string ApprenticeshipStandards = "6230"; public const string ApplicationFrameworks_MainEmployer = "6250"; public const string ApplicationFrameworks_Supporting = "6260"; diff --git a/src/SFA.DAS.ApplyService.Application/Services/Assessor/AssessorLookupService.cs b/src/SFA.DAS.ApplyService.Application/Services/Assessor/AssessorLookupService.cs index c04103039..c6f85a235 100644 --- a/src/SFA.DAS.ApplyService.Application/Services/Assessor/AssessorLookupService.cs +++ b/src/SFA.DAS.ApplyService.Application/Services/Assessor/AssessorLookupService.cs @@ -76,28 +76,19 @@ public string GetTitleForPage(string pageId) case RoatpWorkflowPageIds.ReadinessToEngage.SubcontractorsDueDiligence: return "Due diligence on subcontractors"; - case RoatpWorkflowPageIds.PlanningApprenticeshipTraining.TypeOfApprenticeshipTraining_Main: - return "Type of apprenticeship training"; - case RoatpWorkflowPageIds.PlanningApprenticeshipTraining.TypeOfApprenticeshipTraining_Employer: - return "Type of apprenticeship training"; + case RoatpWorkflowPageIds.PlanningApprenticeshipTraining.TypeOfApprenticeshipTraining_MainEmployer: + case RoatpWorkflowPageIds.PlanningApprenticeshipTraining.TypeOfApprenticeshipTraining_Employer_OLD_PAGE_ID: case RoatpWorkflowPageIds.PlanningApprenticeshipTraining.TypeOfApprenticeshipTraining_Supporting: - return "Type of apprenticeship training"; case RoatpWorkflowPageIds.PlanningApprenticeshipTraining.TypeOfApprenticeshipTraining_NewSupporting: return "Type of apprenticeship training"; - case RoatpWorkflowPageIds.PlanningApprenticeshipTraining.ApprenticeshipStandards_NewMain: - return "Delivering training in apprenticeship standards"; - case RoatpWorkflowPageIds.PlanningApprenticeshipTraining.ApprenticeshipStandards_NewEmployer: - return "Delivering training in apprenticeship standards"; + case RoatpWorkflowPageIds.PlanningApprenticeshipTraining.ApprenticeshipStandards_NewMainEmployer: + case RoatpWorkflowPageIds.PlanningApprenticeshipTraining.ApprenticeshipStandards_NewEmployer_OLD_PAGE_ID: case RoatpWorkflowPageIds.PlanningApprenticeshipTraining.ApprenticeshipStandards: return "Delivering training in apprenticeship standards"; case RoatpWorkflowPageIds.PlanningApprenticeshipTraining.ApplicationFrameworks_MainEmployer: return "Offering apprenticeship frameworks"; - case RoatpWorkflowPageIds.PlanningApprenticeshipTraining.ApplicationFrameworks_Supporting: - return "Offering apprenticeship frameworks"; case RoatpWorkflowPageIds.PlanningApprenticeshipTraining.OrganisationTransition_Main: return "Transitioning from apprenticeship frameworks to apprenticeship standards"; - case RoatpWorkflowPageIds.PlanningApprenticeshipTraining.OrganisationTransition_Employer: - return "Transitioning from apprenticeship frameworks to apprenticeship standards"; case RoatpWorkflowPageIds.PlanningApprenticeshipTraining.OrganisationTransition_Supporting: return "Transitioning from apprenticeship frameworks to apprenticeship standards"; diff --git a/src/SFA.DAS.ApplyService.Database/AdhocScipts/DataMart/LookupQuestionTitles.sql b/src/SFA.DAS.ApplyService.Database/AdhocScipts/DataMart/LookupQuestionTitles.sql index c7b752652..9763c48b0 100644 --- a/src/SFA.DAS.ApplyService.Database/AdhocScipts/DataMart/LookupQuestionTitles.sql +++ b/src/SFA.DAS.ApplyService.Database/AdhocScipts/DataMart/LookupQuestionTitles.sql @@ -275,7 +275,9 @@ INSERT INTO LookupQuestionTitles ([SequenceNumber],[SectionNumber],[PageId],[Que (6, 2, '6201', 'PAT-21', 'Select all that apply'), (6, 2, '6202', 'PAT-22', 'Select all that apply'), (6, 2, '6203', 'PAT-23', 'Select all that apply'), -(6, 2, '6203', 'PAT-24', 'Select all that apply'), +(6, 2, '6204', 'PAT-24', 'Select all that apply'), +(6, 2, '6205', 'PAT-30', 'How'), +(6, 2, '6206', 'PAT-30', 'How'), (6, 2, '6230', 'PAT-30', 'How'), (6, 2, '6250', 'PAT-50', 'Has a transition plan'), (6, 2, '6252', 'PAT-52', 'How'), diff --git a/src/SFA.DAS.ApplyService.Web.UnitTests/Services/ResetRouteQuestionServiceTests.cs b/src/SFA.DAS.ApplyService.Web.UnitTests/Services/ResetRouteQuestionServiceTests.cs index 51818e3c6..5dbef9617 100644 --- a/src/SFA.DAS.ApplyService.Web.UnitTests/Services/ResetRouteQuestionServiceTests.cs +++ b/src/SFA.DAS.ApplyService.Web.UnitTests/Services/ResetRouteQuestionServiceTests.cs @@ -34,13 +34,13 @@ public async Task Check_reset_for_main_route_resets_employer_and_supporting_ques _qnaApiClient.Verify(x => x.ResetPageAnswersBySequenceAndSectionNumber(_applicationId, 1, 4, RoatpWorkflowPageIds.DescribeYourOrganisation.EmployerStartPage)); _qnaApiClient.Verify(x => x.ResetPageAnswersBySequenceAndSectionNumber(_applicationId, 1, 4, RoatpWorkflowPageIds.DescribeYourOrganisation.MainSupportingStartPage), Times.Never); - _qnaApiClient.Verify(x => x.ResetPageAnswersBySequenceAndSectionNumber(_applicationId, 6, 2, RoatpWorkflowPageIds.PlanningApprenticeshipTraining.TypeOfApprenticeshipTraining_Employer)); _qnaApiClient.Verify(x => x.ResetPageAnswersBySequenceAndSectionNumber(_applicationId, 6, 2, RoatpWorkflowPageIds.PlanningApprenticeshipTraining.TypeOfApprenticeshipTraining_Supporting)); _qnaApiClient.Verify(x => x.ResetPageAnswersBySequenceAndSectionNumber(_applicationId, 6, 2, RoatpWorkflowPageIds.PlanningApprenticeshipTraining.TypeOfApprenticeshipTraining_NewSupporting)); _qnaApiClient.Verify(x => x.ResetPageAnswersBySequenceAndSectionNumber(_applicationId, 6, 2, RoatpWorkflowPageIds.PlanningApprenticeshipTraining.ApplicationFrameworks_Supporting)); _qnaApiClient.Verify(x => x.ResetPageAnswersBySequenceAndSectionNumber(_applicationId, 6, 2, RoatpWorkflowPageIds.PlanningApprenticeshipTraining.OrganisationTransition_Supporting)); _qnaApiClient.Verify(x => x.ResetPageAnswersBySequenceAndSectionNumber(_applicationId, 6, 2, RoatpWorkflowPageIds.PlanningApprenticeshipTraining.OnlyDeliveringApprenticeshipFrameworks_Supporting)); - _qnaApiClient.Verify(x => x.ResetPageAnswersBySequenceAndSectionNumber(_applicationId, 6, 2, RoatpWorkflowPageIds.PlanningApprenticeshipTraining.TypeOfApprenticeshipTraining_Main), Times.Never); + _qnaApiClient.Verify(x => x.ResetPageAnswersBySequenceAndSectionNumber(_applicationId, 6, 2, RoatpWorkflowPageIds.PlanningApprenticeshipTraining.TypeOfApprenticeshipTraining_MainEmployer), Times.Never); + _qnaApiClient.Verify(x => x.ResetPageAnswersBySequenceAndSectionNumber(_applicationId, 6, 2, RoatpWorkflowPageIds.PlanningApprenticeshipTraining.ApprenticeshipStandards_NewMainEmployer), Times.Never); } @@ -53,8 +53,8 @@ public async Task Check_reset_for_supporting_route_resets_employer_and_main_ques _qnaApiClient.Verify(x => x.ResetPageAnswersBySequenceAndSectionNumber(_applicationId, 1, 4, RoatpWorkflowPageIds.DescribeYourOrganisation.EmployerStartPage)); _qnaApiClient.Verify(x => x.ResetPageAnswersBySequenceAndSectionNumber(_applicationId, 1, 4, RoatpWorkflowPageIds.DescribeYourOrganisation.MainSupportingStartPage), Times.Never); - _qnaApiClient.Verify(x => x.ResetPageAnswersBySequenceAndSectionNumber(_applicationId, 6, 2, RoatpWorkflowPageIds.PlanningApprenticeshipTraining.TypeOfApprenticeshipTraining_Employer)); - _qnaApiClient.Verify(x => x.ResetPageAnswersBySequenceAndSectionNumber(_applicationId, 6, 2, RoatpWorkflowPageIds.PlanningApprenticeshipTraining.TypeOfApprenticeshipTraining_Main)); + _qnaApiClient.Verify(x => x.ResetPageAnswersBySequenceAndSectionNumber(_applicationId, 6, 2, RoatpWorkflowPageIds.PlanningApprenticeshipTraining.TypeOfApprenticeshipTraining_MainEmployer)); + _qnaApiClient.Verify(x => x.ResetPageAnswersBySequenceAndSectionNumber(_applicationId, 6, 2, RoatpWorkflowPageIds.PlanningApprenticeshipTraining.ApprenticeshipStandards_NewMainEmployer)); _qnaApiClient.Verify(x => x.ResetPageAnswersBySequenceAndSectionNumber(_applicationId, 6, 2, RoatpWorkflowPageIds.PlanningApprenticeshipTraining.ApplicationFrameworks_MainEmployer)); _qnaApiClient.Verify(x => x.ResetPageAnswersBySequenceAndSectionNumber(_applicationId, 6, 2, RoatpWorkflowPageIds.PlanningApprenticeshipTraining.OrganisationTransition_Main)); _qnaApiClient.Verify(x => x.ResetPageAnswersBySequenceAndSectionNumber(_applicationId, 6, 2, RoatpWorkflowPageIds.PlanningApprenticeshipTraining.OrganisationTransition_Employer)); @@ -72,13 +72,13 @@ public async Task Check_reset_for_employer_route_resets_supporting_and_main_ques _qnaApiClient.Verify(x => x.ResetPageAnswersBySequenceAndSectionNumber(_applicationId, 1, 4, RoatpWorkflowPageIds.DescribeYourOrganisation.MainSupportingStartPage)); _qnaApiClient.Verify(x => x.ResetPageAnswersBySequenceAndSectionNumber(_applicationId, 1, 4, RoatpWorkflowPageIds.DescribeYourOrganisation.EmployerStartPage), Times.Never); - _qnaApiClient.Verify(x => x.ResetPageAnswersBySequenceAndSectionNumber(_applicationId, 6, 2, RoatpWorkflowPageIds.PlanningApprenticeshipTraining.TypeOfApprenticeshipTraining_Main)); _qnaApiClient.Verify(x => x.ResetPageAnswersBySequenceAndSectionNumber(_applicationId, 6, 2, RoatpWorkflowPageIds.PlanningApprenticeshipTraining.TypeOfApprenticeshipTraining_Supporting)); _qnaApiClient.Verify(x => x.ResetPageAnswersBySequenceAndSectionNumber(_applicationId, 6, 2, RoatpWorkflowPageIds.PlanningApprenticeshipTraining.TypeOfApprenticeshipTraining_NewSupporting)); _qnaApiClient.Verify(x => x.ResetPageAnswersBySequenceAndSectionNumber(_applicationId, 6, 2, RoatpWorkflowPageIds.PlanningApprenticeshipTraining.ApplicationFrameworks_Supporting)); _qnaApiClient.Verify(x => x.ResetPageAnswersBySequenceAndSectionNumber(_applicationId, 6, 2, RoatpWorkflowPageIds.PlanningApprenticeshipTraining.OrganisationTransition_Supporting)); _qnaApiClient.Verify(x => x.ResetPageAnswersBySequenceAndSectionNumber(_applicationId, 6, 2, RoatpWorkflowPageIds.PlanningApprenticeshipTraining.OnlyDeliveringApprenticeshipFrameworks_Supporting)); - _qnaApiClient.Verify(x => x.ResetPageAnswersBySequenceAndSectionNumber(_applicationId, 6, 2, RoatpWorkflowPageIds.PlanningApprenticeshipTraining.TypeOfApprenticeshipTraining_Employer), Times.Never); + _qnaApiClient.Verify(x => x.ResetPageAnswersBySequenceAndSectionNumber(_applicationId, 6, 2, RoatpWorkflowPageIds.PlanningApprenticeshipTraining.TypeOfApprenticeshipTraining_MainEmployer), Times.Never); + _qnaApiClient.Verify(x => x.ResetPageAnswersBySequenceAndSectionNumber(_applicationId, 6, 2, RoatpWorkflowPageIds.PlanningApprenticeshipTraining.ApprenticeshipStandards_NewMainEmployer), Times.Never); } } } diff --git a/src/SFA.DAS.ApplyService.Web/Infrastructure/Services/ResetRouteQuestionsService.cs b/src/SFA.DAS.ApplyService.Web/Infrastructure/Services/ResetRouteQuestionsService.cs index 84163c2e1..d7aa0de69 100644 --- a/src/SFA.DAS.ApplyService.Web/Infrastructure/Services/ResetRouteQuestionsService.cs +++ b/src/SFA.DAS.ApplyService.Web/Infrastructure/Services/ResetRouteQuestionsService.cs @@ -51,7 +51,6 @@ private async Task ResetTypeOfApprenticeshipTrainingSectionTags(Guid application switch (routeId) { case ApplicationRoute.MainProviderApplicationRoute: - await _qnaApiClient.ResetPageAnswersBySequenceAndSectionNumber(applicationId, sequenceNo, sectionNo, RoatpWorkflowPageIds.PlanningApprenticeshipTraining.TypeOfApprenticeshipTraining_Employer); await _qnaApiClient.ResetPageAnswersBySequenceAndSectionNumber(applicationId, sequenceNo, sectionNo, RoatpWorkflowPageIds.PlanningApprenticeshipTraining.TypeOfApprenticeshipTraining_Supporting); await _qnaApiClient.ResetPageAnswersBySequenceAndSectionNumber(applicationId, sequenceNo, sectionNo, RoatpWorkflowPageIds.PlanningApprenticeshipTraining.TypeOfApprenticeshipTraining_NewSupporting); await _qnaApiClient.ResetPageAnswersBySequenceAndSectionNumber(applicationId, sequenceNo, sectionNo, RoatpWorkflowPageIds.PlanningApprenticeshipTraining.ApplicationFrameworks_Supporting); @@ -60,15 +59,14 @@ private async Task ResetTypeOfApprenticeshipTrainingSectionTags(Guid application await _qnaApiClient.ResetPageAnswersBySequenceAndSectionNumber(applicationId, sequenceNo, sectionNo, RoatpWorkflowPageIds.PlanningApprenticeshipTraining.OnlyDeliveringApprenticeshipFrameworks_Supporting); break; case ApplicationRoute.SupportingProviderApplicationRoute: - await _qnaApiClient.ResetPageAnswersBySequenceAndSectionNumber(applicationId, sequenceNo, sectionNo, RoatpWorkflowPageIds.PlanningApprenticeshipTraining.TypeOfApprenticeshipTraining_Main); - await _qnaApiClient.ResetPageAnswersBySequenceAndSectionNumber(applicationId, sequenceNo, sectionNo, RoatpWorkflowPageIds.PlanningApprenticeshipTraining.TypeOfApprenticeshipTraining_Employer); + await _qnaApiClient.ResetPageAnswersBySequenceAndSectionNumber(applicationId, sequenceNo, sectionNo, RoatpWorkflowPageIds.PlanningApprenticeshipTraining.TypeOfApprenticeshipTraining_MainEmployer); + await _qnaApiClient.ResetPageAnswersBySequenceAndSectionNumber(applicationId, sequenceNo, sectionNo, RoatpWorkflowPageIds.PlanningApprenticeshipTraining.ApprenticeshipStandards_NewMainEmployer); await _qnaApiClient.ResetPageAnswersBySequenceAndSectionNumber(applicationId, sequenceNo, sectionNo, RoatpWorkflowPageIds.PlanningApprenticeshipTraining.ApplicationFrameworks_MainEmployer); await _qnaApiClient.ResetPageAnswersBySequenceAndSectionNumber(applicationId, sequenceNo, sectionNo, RoatpWorkflowPageIds.PlanningApprenticeshipTraining.OrganisationTransition_Employer); await _qnaApiClient.ResetPageAnswersBySequenceAndSectionNumber(applicationId, sequenceNo, sectionNo, RoatpWorkflowPageIds.PlanningApprenticeshipTraining.OrganisationTransition_Main); await _qnaApiClient.ResetPageAnswersBySequenceAndSectionNumber(applicationId, sequenceNo, sectionNo, RoatpWorkflowPageIds.PlanningApprenticeshipTraining.OnlyDeliveringApprenticeshipFrameworks_MainEmployer); break; case ApplicationRoute.EmployerProviderApplicationRoute: - await _qnaApiClient.ResetPageAnswersBySequenceAndSectionNumber(applicationId, sequenceNo, sectionNo, RoatpWorkflowPageIds.PlanningApprenticeshipTraining.TypeOfApprenticeshipTraining_Main); await _qnaApiClient.ResetPageAnswersBySequenceAndSectionNumber(applicationId, sequenceNo, sectionNo, RoatpWorkflowPageIds.PlanningApprenticeshipTraining.TypeOfApprenticeshipTraining_Supporting); await _qnaApiClient.ResetPageAnswersBySequenceAndSectionNumber(applicationId, sequenceNo, sectionNo, RoatpWorkflowPageIds.PlanningApprenticeshipTraining.TypeOfApprenticeshipTraining_NewSupporting); await _qnaApiClient.ResetPageAnswersBySequenceAndSectionNumber(applicationId, sequenceNo, sectionNo, RoatpWorkflowPageIds.PlanningApprenticeshipTraining.ApplicationFrameworks_Supporting); From 2c415a1416e593c17771f03e86f3137cf5541fab Mon Sep 17 00:00:00 2001 From: Martin Lush Date: Fri, 24 Sep 2021 08:24:47 +0100 Subject: [PATCH 2/3] APR-2667 - Tidied up page titles for PlanningApprenticeshipTraining section --- .../Services/Assessor/AssessorLookupService.cs | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/SFA.DAS.ApplyService.Application/Services/Assessor/AssessorLookupService.cs b/src/SFA.DAS.ApplyService.Application/Services/Assessor/AssessorLookupService.cs index c6f85a235..4abd6b813 100644 --- a/src/SFA.DAS.ApplyService.Application/Services/Assessor/AssessorLookupService.cs +++ b/src/SFA.DAS.ApplyService.Application/Services/Assessor/AssessorLookupService.cs @@ -86,16 +86,13 @@ public string GetTitleForPage(string pageId) case RoatpWorkflowPageIds.PlanningApprenticeshipTraining.ApprenticeshipStandards: return "Delivering training in apprenticeship standards"; case RoatpWorkflowPageIds.PlanningApprenticeshipTraining.ApplicationFrameworks_MainEmployer: + case RoatpWorkflowPageIds.PlanningApprenticeshipTraining.ApplicationFrameworks_Supporting: return "Offering apprenticeship frameworks"; case RoatpWorkflowPageIds.PlanningApprenticeshipTraining.OrganisationTransition_Main: - return "Transitioning from apprenticeship frameworks to apprenticeship standards"; - case RoatpWorkflowPageIds.PlanningApprenticeshipTraining.OrganisationTransition_Supporting: return "Transitioning from apprenticeship frameworks to apprenticeship standards"; case RoatpWorkflowPageIds.PlanningApprenticeshipTraining.OnlyDeliveringApprenticeshipFrameworks_MainEmployer: - return "Delivering apprenticeship frameworks only"; - case RoatpWorkflowPageIds.PlanningApprenticeshipTraining - .OnlyDeliveringApprenticeshipFrameworks_Supporting: + case RoatpWorkflowPageIds.PlanningApprenticeshipTraining.OnlyDeliveringApprenticeshipFrameworks_Supporting: return "Delivering apprenticeship frameworks only"; case RoatpWorkflowPageIds.PlanningApprenticeshipTraining.EngagingWithAwardingBodies: return "Engaging and work with awarding bodies"; @@ -104,7 +101,6 @@ public string GetTitleForPage(string pageId) case RoatpWorkflowPageIds.PlanningApprenticeshipTraining.TrainingApprentices: return "How apprentices will be trained"; case RoatpWorkflowPageIds.PlanningApprenticeshipTraining.EnsureApprenticesAreSupportedEmployer: - return "Supporting apprentices during apprenticeship training"; case RoatpWorkflowPageIds.PlanningApprenticeshipTraining.EnsureApprenticesAreSupportedMain: return "Supporting apprentices during apprenticeship training"; case RoatpWorkflowPageIds.PlanningApprenticeshipTraining.EnsureApprenticesAreSupportedHow: From 10ba4b0ba7c3cc4a237e9ddc9abceeb78b61130d Mon Sep 17 00:00:00 2001 From: Martin Lush Date: Fri, 24 Sep 2021 11:24:30 +0100 Subject: [PATCH 3/3] APR-2667 - Re-add missing title for OrganisationTransition_Employer --- .../Services/Assessor/AssessorLookupService.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/SFA.DAS.ApplyService.Application/Services/Assessor/AssessorLookupService.cs b/src/SFA.DAS.ApplyService.Application/Services/Assessor/AssessorLookupService.cs index 4abd6b813..94eb513ad 100644 --- a/src/SFA.DAS.ApplyService.Application/Services/Assessor/AssessorLookupService.cs +++ b/src/SFA.DAS.ApplyService.Application/Services/Assessor/AssessorLookupService.cs @@ -89,6 +89,7 @@ public string GetTitleForPage(string pageId) case RoatpWorkflowPageIds.PlanningApprenticeshipTraining.ApplicationFrameworks_Supporting: return "Offering apprenticeship frameworks"; case RoatpWorkflowPageIds.PlanningApprenticeshipTraining.OrganisationTransition_Main: + case RoatpWorkflowPageIds.PlanningApprenticeshipTraining.OrganisationTransition_Employer: case RoatpWorkflowPageIds.PlanningApprenticeshipTraining.OrganisationTransition_Supporting: return "Transitioning from apprenticeship frameworks to apprenticeship standards"; case RoatpWorkflowPageIds.PlanningApprenticeshipTraining.OnlyDeliveringApprenticeshipFrameworks_MainEmployer: