Skip to content

Commit

Permalink
Initial v4 agreement
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Howes committed Jul 28, 2020
1 parent 0a35f7a commit 9c402b4
Show file tree
Hide file tree
Showing 3 changed files with 1,271 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,12 @@ BEGIN
INSERT INTO [employer_account].[EmployerAgreementTemplate] (Id, PartialViewName, VersionNumber, CreatedDate, PublishedDate)
VALUES (4, '_Agreement_V3', 3, GETDATE(), Convert(DateTime,'2020-1-9'))
SET IDENTITY_INSERT [employer_account].[EmployerAgreementTemplate] OFF
END

IF (NOT EXISTS (SELECT 1 FROM [employer_account].[EmployerAgreementTemplate] WHERE PartialViewName = '_Agreement_V4'))
BEGIN
SET IDENTITY_INSERT [employer_account].[EmployerAgreementTemplate] ON
INSERT INTO [employer_account].[EmployerAgreementTemplate] (Id, PartialViewName, VersionNumber, AgreementType, CreatedDate, PublishedDate)
VALUES (5, '_Agreement_V4', 4, 2, GETDATE(), Convert(DateTime,'2020-8-20'))
SET IDENTITY_INSERT [employer_account].[EmployerAgreementTemplate] OFF
END
Original file line number Diff line number Diff line change
Expand Up @@ -872,6 +872,7 @@
<Content Include="Views\EmployerTeam\Empty.cshtml" />
<Content Include="Views\EmployerAgreement\AcceptedEmployerAgreement.cshtml" />
<Content Include="Views\Shared\_ZenDeskApiPush.cshtml" />
<Content Include="Views\Shared\_Agreement_v4.cshtml" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SFA.DAS.Account.Api.Client\SFA.DAS.EAS.Account.Api.Client.csproj">
Expand Down
Loading

0 comments on commit 9c402b4

Please sign in to comment.