Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8297- Added help content for R35 & R36 #140

Merged
merged 3 commits into from
Nov 23, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions frontend/src/views/groupmember/CancelDependent.vue
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@
<template>
<AppHelp>
<ul>
<li>Use this screen to initiate the cancellation of a group member’s spouse or child from your MSP group account. To complete the cancellation, you must submit a Group Change Request form to Health Insurance BC. If you do not know the PHN, the PHN Lookup screen can be used.</li>
<li>The cancellation date must be no more than two months prior to current date. Note that MSP coverage can only be cancelled as of the end of the month with this screen. To cancel coverage as of the effective date please contact the help desk.</li>
<li>Most retroactive cancellations are limited to two months on group accounts. Group enrolment is cancelled on the last day of the month; however, if a group member leaves before becoming eligible, their group coverage can be cancelled as of the effective date.</li>
<li>Cancel reason is a drop-down box with a default Cancel Reason of "Divorced". You may leave the default or click and select a more appropriate Cancel Reason.</li>
<li>"No longer a child" is used when a child aged 19 to 24 with YES student status either leaves full-time studies or enters a marriage or marriage-like relationship</li>
<li>Contact the Help Desk if you need to change or correct a dependent's cancellation date.</li>
<li>
MSP requires the reason for cancellation, the person’s current address and, if the person has moved outside of BC, the date of the move. To complete a cancellation, you must submit a Group Change Request (HLTH 217, found at www.gov.bc.ca/mspgroupplanadministratorforms), along with all
weskubo-cgi marked this conversation as resolved.
Show resolved Hide resolved
required supporting documents to Health Insurance BC at:
</li>
<li>PO Box 9140 Stn Prov Govt</li>
<li>Victoria BC V8W 9E5</li>
weskubo-cgi marked this conversation as resolved.
Show resolved Hide resolved
<li>You can use the PHN with the Get Contract Periods screen to verify the cancellation.</li>
</ul>
</AppHelp>
<div id="cancelDependent" v-if="inputFormActive">
<form @submit.prevent="submitForm">
<AppRow>
Expand Down Expand Up @@ -48,6 +65,7 @@

<script>
import useVuelidate from '@vuelidate/core'
import AppHelp from '../../components/ui/AppHelp.vue'
import { helpers, required } from '@vuelidate/validators'
import { VALIDATE_GROUP_NUMBER_MESSAGE, VALIDATE_PHN_MESSAGE, validateGroupNumber, validatePHN } from '../../util/validators'
import GroupMemberService from '../../services/GroupMemberService'
Expand All @@ -56,6 +74,9 @@ import { handleServiceError } from '../../util/utils'

export default {
name: 'CancelDependent',
components: {
AppHelp,
},
setup() {
return {
alertStore: useAlertStore(),
Expand Down
23 changes: 23 additions & 0 deletions frontend/src/views/groupmember/CancelGroupMember.vue
Original file line number Diff line number Diff line change
@@ -1,4 +1,23 @@
<template>
<AppHelp>
<p>
Use this screen to initiate the cancellation of a group member from your MSP group account. To complete the cancellation, you must submit a Coverage Cancellation form to Health Insurance BC. Any dependents will automatically be cancelled, along with the group member. If you do not know the
PHN, the PHN Lookup screen can be used.
</p>
<p>Coverage Cancel Date</p>
<p>Most retroactive cancellations are limited to two months on group accounts. Note that MSP coverage can only be cancelled as of the end of the month with this screen. To cancel a group member’s coverage as of the effective date please contact the help desk.</p>
<p>Cancel Reason</p>
<p>This is a dropdown list box with a default Cancel Reason of "Employer's Request." The other available Cancel Reason is "Out of Province Move."</p>
<p>To change a cancel date, use the Change Cancel Date screen.</p>
<p>
MSP requires the reason for cancellation, the person’s current address and, if the person has moved outside of BC, the date of the move. To complete a cancellation, you must submit a Coverage Cancellation form (HLTH 217, found at <a>www.gov.bc.ca/mspgroupplanadministratorforms</a>), or submit
weskubo-cgi marked this conversation as resolved.
Show resolved Hide resolved
a written request including your group number, employee account number(s) and name(s), and all the information required on the form to Health Insurance BC at:
</p>
<p>PO Box 9140</p>
<p>Stn Prov Govt</p>
<p>Victoria BC V8W 9E5</p>
weskubo-cgi marked this conversation as resolved.
Show resolved Hide resolved
<p>You can use the PHN with the Get Contract Periods screen to verify the cancellation.</p>
</AppHelp>
<div id="cancelGroupMember" v-if="inputFormActive">
<form @submit.prevent="submitForm">
<AppRow>
Expand Down Expand Up @@ -38,6 +57,7 @@

<script>
import useVuelidate from '@vuelidate/core'
import AppHelp from '../../components/ui/AppHelp.vue'
import { helpers, required } from '@vuelidate/validators'
import { VALIDATE_GROUP_NUMBER_MESSAGE, VALIDATE_PHN_MESSAGE, validateGroupNumber, validatePHN } from '../../util/validators'
import GroupMemberService from '../../services/GroupMemberService'
Expand All @@ -46,6 +66,9 @@ import { handleServiceError } from '../../util/utils'

export default {
name: 'CancelGroupMember',
components: {
AppHelp,
},
setup() {
return {
alertStore: useAlertStore(),
Expand Down