diff --git a/frontend/src/components/RFI/NMF.vue b/frontend/src/components/RFI/NMF.vue index e79c74ebc..9b07e2b3b 100644 --- a/frontend/src/components/RFI/NMF.vue +++ b/frontend/src/components/RFI/NMF.vue @@ -4,9 +4,9 @@

Child Care Operating Funding Program - {{ formattedProgramYear }} Program Confirmation Form

Parent Fees – Request for Information

-

Facility ID: {{currentFacility?.facilityAccountNumber}}

-

Facility Name: {{currentFacility?.facilityName}}

-

Licence Number: {{currentFacility?.licenseNumber}}

+
+ +
@@ -167,10 +167,12 @@ import alertMixin from '@/mixins/alertMixin'; import { mapActions, mapState, mapMutations, mapGetters } from 'vuex'; import NavButton from '@/components/util/NavButton'; +import FacilityHeader from '../guiComponents/FacilityHeader.vue'; let model = { x: [], }; export default { + components: { NavButton, FacilityHeader }, name: 'CcfriRequestMoreInfo', mixins: [alertMixin], data() { @@ -259,7 +261,7 @@ export default { this.isProcessing = false; } }, - components: { NavButton } + }; diff --git a/frontend/src/components/RFI/RFILanding.vue b/frontend/src/components/RFI/RFILanding.vue index c15338651..2850baf3e 100644 --- a/frontend/src/components/RFI/RFILanding.vue +++ b/frontend/src/components/RFI/RFILanding.vue @@ -14,12 +14,8 @@

Child Care Operating Funding Program - {{ formattedProgramYear }} Program Confirmation Form

Parent Fee Increase – Request for Information

-

Facility ID: - {{ currentFacility?.facilityAccountNumber }}

-

Facility Name: - {{ currentFacility?.facilityName }}

-

Licence Number: - {{ currentFacility?.licenseNumber }}

+
+
@@ -1501,6 +1497,7 @@ import rules from '@/utils/rules'; import RFIDocumentUpload from '@/components/RFI/RFIDocumentUpload'; import NavButton from '@/components/util/NavButton'; import {PROGRAM_YEAR_LANGUAGE_TYPES } from '@/utils/constants'; +import FacilityHeader from '../guiComponents/FacilityHeader.vue'; let model = { expansionList: [], @@ -1514,6 +1511,7 @@ let model = { // let model = {x: [], q1, q2, q3, datePicker, expenseList, fundingList, IndigenousExpenseList, expansionList,model.wageList}; export default { + components: {FacilityHeader, RFIDocumentUpload, NavButton}, mixins: [alertMixin, globalMixin], name: 'CcfriRequestMoreInfo', data() { @@ -1901,7 +1899,7 @@ export default { }, }, - components: {RFIDocumentUpload, NavButton} + }; diff --git a/frontend/src/components/ccfriApplication/group/AddNewFees.vue b/frontend/src/components/ccfriApplication/group/AddNewFees.vue index 1475bb8c1..24d71c05d 100644 --- a/frontend/src/components/ccfriApplication/group/AddNewFees.vue +++ b/frontend/src/components/ccfriApplication/group/AddNewFees.vue @@ -9,21 +9,18 @@
Child Care Fee Reduction Initiative (CCFRI)
-
-
- {{currentFacility.facilityAccountNumber}} -
-
-

Facility Name: {{currentFacility.facilityName}}



-

- Enter the fees you charged a new parent for full-time care at this facility for the months below.

- If you have more than one fee for the same category, enter the highest fee.

- Enter the fee before CCFRI is applied.

- New for 2024/25: CCFRI regions align with the BCSSA's grouping of school districts into 6 regional chapters. Use the BCSSA region lookup to find your region.

- Note: Fee increases will be reviewed and additional information may be requested, which may result in increased processing times. If approved, this fee will be posted on the Ministry website.

-

- - +

+ +

+

+ Enter the fees you charged a new parent for full-time care at this facility for the months below.

+ If you have more than one fee for the same category, enter the highest fee.

+ Enter the fee before CCFRI is applied.

+ New for 2024/25: CCFRI regions align with the BCSSA's grouping of school districts into 6 regional chapters. Use the BCSSA region lookup to find your region.

+ Note: Fee increases will be reviewed and additional information may be requested, which may result in increased processing times. If approved, this fee will be posted on the Ministry website.

+

+ +
-

{{ facilityAccountNumber }}

+

Facility ID: {{ facilityAccountNumber }}

Facility Name: {{ facilityName }}

-

Licence: {{ licenseNumber }}

+

Licence Number: {{ licenseNumber }}

Opt In: {{ ccfriOptInStatus == "IN" ? "IN" : ccfriOptInStatus == "1" ? "IN" : ccfriOptInStatus == "0" ? "OUT" : "NOT SELECTED" }}

diff --git a/frontend/src/components/ccfriApplication/group/ExistingFacilityFees.vue b/frontend/src/components/ccfriApplication/group/ExistingFacilityFees.vue index 5776147e9..60b14ebda 100644 --- a/frontend/src/components/ccfriApplication/group/ExistingFacilityFees.vue +++ b/frontend/src/components/ccfriApplication/group/ExistingFacilityFees.vue @@ -14,6 +14,7 @@


+ -

- Facility ID: {{currentFacility.facilityAccountNumber}} -

-

- {{currentFacility.facilityName}} -

-

- Licence Number: {{currentFacility.licenseNumber}} -

+

@@ -116,17 +109,19 @@ + + + diff --git a/frontend/src/components/mtfi/CurrentFeeVerification.vue b/frontend/src/components/mtfi/CurrentFeeVerification.vue index e751f02c0..5b7a87ed5 100644 --- a/frontend/src/components/mtfi/CurrentFeeVerification.vue +++ b/frontend/src/components/mtfi/CurrentFeeVerification.vue @@ -8,22 +8,14 @@

Child Care Fee Reduction Initiative (CCFRI)
+

+
-
- Facility Name: {{ currentFacility?.facilityName }} -
-
- Licence Number: {{ currentFacility?.licenseNumber }} -
-
- -
New for 2024/25: CCFRI regions align with the BCSSA's grouping of school districts into 6 regional chapters. Use the BCSSA region lookup to find your region.

-

Our records show this facility's approved parent fees are as follows: @@ -682,6 +674,7 @@ import NavButton from '@/components/util/NavButton'; import { deepCloneObject } from '../../utils/common'; import { isEqual } from 'lodash'; import ApiService from '@/common/apiService'; +import FacilityHeader from '../guiComponents/FacilityHeader.vue'; function dateFunction (date1, date2){ @@ -705,6 +698,7 @@ let model = { }; export default { name: 'MTFI-Fees', + components: { NavButton, FacilityHeader }, mixins: [alertMixin, globalMixin], data() { return { @@ -1062,7 +1056,6 @@ export default { async beforeRouteLeave(_to, _from, next) { next(); }, - components: {NavButton} }; diff --git a/frontend/src/components/mtfi/MtfiSelectFacility.vue b/frontend/src/components/mtfi/MtfiSelectFacility.vue index fcfae2c3a..7cc314c4d 100644 --- a/frontend/src/components/mtfi/MtfiSelectFacility.vue +++ b/frontend/src/components/mtfi/MtfiSelectFacility.vue @@ -38,9 +38,9 @@ -

Facility ID: {{facilityAccountNumber}}

+

Facility ID: {{facilityAccountNumber}}

Facility Name: {{facilityName}}

-

Licence #: {{licenseNumber}}

+

Licence Number: {{licenseNumber}}