17
17
</v-col >
18
18
</v-row >
19
19
20
- <v-card v-if =" hasNonUnionFacilityGroupOrg" elevation =" 2" class =" supp-applications-card" >
21
- <v-card-text class =" px-8" py-6 >
22
- <v-row no-gutters class =" align-center" >
23
- <v-col cols =" 12" md =" 8" >
24
- <p >You may be eligible for additional Allowances. Would you like to apply?</p >
25
- <p class =" mt-4" >Available allowances:</p >
26
- <ul class =" pl-6" >
27
- <li >Indigenous programming</li >
28
- <li >Support needs programming</li >
29
- <li >Transportation allowance</li >
30
- </ul >
31
- <p class =" mt-4" >
32
- You may apply for one or more allowances. You can also apply through
33
- <router-link :to =" { name: 'applications-history' }" >Applications</router-link >
34
- at any time.
35
- </p >
36
- </v-col >
37
- <v-col cols =" 12" md =" 4" align =" right" class =" my-4" >
38
- <AppButton
39
- id =" apply-button"
40
- :primary =" false"
41
- size =" large"
42
- width =" 100px"
43
- :disabled =" !hasGoodStanding"
44
- :to =" { name: 'supp-allowances-form', params: { applicationGuid: $route.params.applicationGuid } }" >
45
- Apply
46
- </AppButton >
47
- </v-col >
48
- </v-row >
49
- </v-card-text >
50
- </v-card >
51
20
<v-row justify =" space-around" no-gutters class =" mt-10" >
52
21
<AppBackButton id =" back-home-button" :primary =" false" width =" 250px" :to =" { name: 'home' }" align =" center" >Home</AppBackButton >
53
22
<AppButton id =" view-applications-button" size =" large" width =" 250px" :to =" { name: 'applications-history' }" align =" center" class =" mt-2" >View Applications</AppButton >
@@ -61,7 +30,7 @@ import AppButton from '@/components/ui/AppButton.vue'
61
30
import AppBackButton from ' @/components/ui/AppBackButton.vue'
62
31
import AppAlertBanner from ' @/components/ui/AppAlertBanner.vue'
63
32
import alertMixin from ' @/mixins/alertMixin'
64
- import { APPLICATION_STATUS_CODES , GOOD_STANDING_STATUS_CODES , NOT_IN_GOOD_STANDING_WARNING_MESSAGE , PROVIDER_TYPE_CODES , UNION_TYPE_CODES } from ' @/utils/constants'
33
+ import { APPLICATION_STATUS_CODES , GOOD_STANDING_STATUS_CODES , NOT_IN_GOOD_STANDING_WARNING_MESSAGE } from ' @/utils/constants'
65
34
import { useOrgStore } from ' @/stores/org'
66
35
import { useAuthStore } from ' @/stores/auth'
67
36
import { useApplicationsStore } from ' @/stores/applications'
@@ -87,12 +56,6 @@ export default {
87
56
hasGoodStanding () {
88
57
return this .currentOrg ? .goodStandingStatusCode === this .GOOD_STANDING_STATUS_CODES .GOOD
89
58
},
90
- hasNonUnionFacilityGroupOrg () {
91
- if (this .currentOrg ? .providerType === PROVIDER_TYPE_CODES .FAMILY ) {
92
- return false
93
- }
94
- return this .currentApplication ? .isUnionized === UNION_TYPE_CODES .NO
95
- },
96
59
},
97
60
async created () {
98
61
try {
0 commit comments