Skip to content

Commit

Permalink
SAVEPOINT (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
dniggeler committed Jun 29, 2024
1 parent af10b46 commit 6618831
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/BlazorBvgRevisionApp/Pages/Links.razor
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
{
readonly List<(string, string)> links =
[
("Bundesamt für Sozialversicherung","https://www.bsv.admin.ch/bsv/de/home/sozialversicherungen/bv/reformen-und-revisionen/bvg-reform.html"),
("Studie des Bundesamtes für Sozialversicherung zur Reform BVG 21 (PDF)", "https://www.bsv.admin.ch/bsv/de/home/publikationen-und-service/forschung/forschungspublikationen/_jcr_content/par/externalcontent_130482312.bitexternalcontent.exturl.pdf/aHR0cHM6Ly9mb3JzY2h1bmcuc296aWFsZS1zaWNoZXJoZWl0LW/Noc3MuY2gvd3AtY29udGVudC91cGxvYWRzLzIwMjAvMTEvMTNf/MjBEX2VCZXJpY2h0LnBkZg==.pdf"),
("alliance F: Studie zur beruflichen Vorsorge: Reform hat positive Auswirkungen für Teilzeitanstellungen, davon profitieren insbesondere viele Frauen", "https://de.alliancef.ch/medien/neue-bvg-studie"),
("PwC Schweiz: Die BVG-Reform in einen Bezugsrahmen setzen", "https://www.pwc.ch/de/insights/finanzdienstleistungen/bezugsrahmen-bvg-reform.html"),
Expand Down
6 changes: 5 additions & 1 deletion src/BlazorBvgRevisionApp/Pages/MyPension.razor
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
{
<MudExpansionPanel IsExpanded="true" Class="mt-4" Style="background-color: lightgrey;">
<TitleContent>
<MudText Class="mb-4" Typo="Typo.h5">BVG Berechnungsergebnis</MudText>
<MudText Class="mb-4" Typo="Typo.h5">Meine Leistungen</MudText>
</TitleContent>
<ChildContent>
<MudText Typo="Typo.body2">Das Ergebnis der Berechnung zeigt Ihre voraussichtlichen BVG-Altersleistungen. Die Leistungen sind auf Ihren ordentlichen Rentenbeginn gerechnet.</MudText>
Expand Down Expand Up @@ -125,6 +125,10 @@
Person = GetTestPerson();
PensionPlan = GetDefaultPensionPlan();
}
else
{
Person.ValidityYearCertificate = DateTime.Now.Year;
}

IsEnabledFeatureExperimentalRevision = await RevisionFeatureManager.IsEnabledAsync("BetaFullRevision");
}
Expand Down

0 comments on commit 6618831

Please sign in to comment.