diff --git a/backend/src/components/application.js b/backend/src/components/application.js index 2e1f1408..4d6869a7 100644 --- a/backend/src/components/application.js +++ b/backend/src/components/application.js @@ -321,7 +321,7 @@ async function postClosureDates(dates, ccfriApplicationGuid, res) { async function getECEWEApplication(req, res) { try { - let operation = 'ccof_applications(' + req.params.applicationId + ')?$select=ccof_ecewe_optin,ccof_ecewe_employeeunion,ccof_ecewe_selecttheapplicablefundingmodel,ccof_ecewe_selecttheapplicablesector,ccof_ecewe_confirmation&$expand=ccof_ccof_application_ccof_applicationecewe_application($select=ccof_name,_ccof_facility_value,ccof_optintoecewe,statuscode)'; + let operation = 'ccof_applications(' + req.params.applicationId + ')?$select=ccof_ecewe_optin,ccof_ecewe_employeeunion,ccof_ecewe_selecttheapplicablefundingmodel,ccof_ecewe_selecttheapplicablesector,ccof_public_sector_employer,ccof_ecewe_confirmation&$expand=ccof_ccof_application_ccof_applicationecewe_application($select=ccof_name,_ccof_facility_value,ccof_optintoecewe,statuscode)'; let eceweApp = await getOperation(operation); eceweApp = new MappableObjectForFront(eceweApp, ECEWEApplicationMappings); let forFrontFacilities = []; diff --git a/backend/src/components/user.js b/backend/src/components/user.js index eddf018a..acbb531d 100644 --- a/backend/src/components/user.js +++ b/backend/src/components/user.js @@ -183,6 +183,7 @@ function updateFacilityWithChangeRequestDetails(changeRequestList, returnValue, function parseFacilityData(application, facilities) { + //all the facilites let facilityMap = new Map(facilities?.map((m) => [m['accountid'], new MappableObjectForFront(m, UserProfileFacilityMappings).data])); if (application) { @@ -206,7 +207,10 @@ function parseFacilityData(application, facilities) { } let facilityList = []; facilityMap.forEach((facility) => { - if (!_.isEmpty(facility)) { + // //only add a facility to the application Facility List if they have an application id shown below. + // //otherwise that facility does not exist in this application year. + //if application status is incomplete, show all available facilties so CR fac's will also appear for the draft application + if (facility.ccofBaseFundingId || facility.ccfriApplicationId || facility.eceweApplicationId || application.statuscode_formatted == 'Incomplete') { facility.ccofBaseFundingStatus = getLabelFromValue(facility.ccofBaseFundingStatus, CCOF_STATUS_CODES); facility.ccfriStatus = getLabelFromValue(facility.ccfriStatus, CCFRI_STATUS_CODES, 'NOT STARTED'); facility.eceweStatus = getLabelFromValue(facility.eceweStatus, ECEWE_STATUS_CODES, 'NOT STARTED'); diff --git a/backend/src/util/mapping/Mappings.js b/backend/src/util/mapping/Mappings.js index c8799e87..c13fcbc0 100644 --- a/backend/src/util/mapping/Mappings.js +++ b/backend/src/util/mapping/Mappings.js @@ -242,6 +242,7 @@ const ECEWEApplicationMappings = [ { back: 'ccof_licensecomplete', front: 'isLicenseUploadComplete' }, { back: 'ccof_ecewe_eligibility_complete', front: 'isEceweComplete' }, { back: 'ccof_ecewe_selecttheapplicablesector', front: 'applicableSector' }, + { back: 'ccof_public_sector_employer', front: 'publicSector' }, //null, ]; const ECEWEFacilityMappings = [ @@ -342,6 +343,7 @@ const ProgramYearMappings = [ { back: 'ccof_intakeperiodstart', front: 'intakeStart' }, { back: 'ccof_intakeperiodend', front: 'intakeEnd' }, { back: 'ccof_declarationbstart', front: 'declarationbStart' }, + { back: 'ccof_ccfri_funding_guidelines', front: 'fundingGuidelinesUrl' }, ]; const MessageMappings = [ @@ -399,6 +401,7 @@ const ApplicationSummaryMappings = [ { back: 'ccof_ecewe_confirmation', front: 'confirmation' }, //null, { back: 'ccof_ecewe_employeeunion', front: 'belongsToUnion' }, //0, { back: 'ccof_ecewe_selecttheapplicablefundingmodel', front: 'fundingModel' }, //null, + { back: 'ccof_public_sector_employer', front: 'publicSector' }, //null, // Unlock Details { back: 'ccof_unlock_ccof', front: 'unlockBaseFunding' }, //null, { back: 'ccof_unlock_ecewe', front: 'unlockEcewe' }, //null, diff --git a/frontend/src/components/LandingPage.vue b/frontend/src/components/LandingPage.vue index ca64bda9..0cda01a4 100644 --- a/frontend/src/components/LandingPage.vue +++ b/frontend/src/components/LandingPage.vue @@ -99,8 +99,8 @@ -

By clicking continue, all of your application data will be deleted. You will have to re-enter all information. Please be sure about this!

-

Are you very very sure??

+

If you cancel your application, any information you entered will be deleted. If you create a new application, you will need to re-enter this information.

+

Are you sure you want to cancel your application and delete your information?

Back Continue
diff --git a/frontend/src/components/RFI/NMF.vue b/frontend/src/components/RFI/NMF.vue index 290506b9..3a9efd6f 100644 --- a/frontend/src/components/RFI/NMF.vue +++ b/frontend/src/components/RFI/NMF.vue @@ -11,7 +11,7 @@

- As outlined in the Funding Guidelines + As outlined in the Funding Guidelines , applications by New, New-to-CCFRI, and Modified Facilities will be assessed based on whether the facility’s parent fees are comparable to others in their region. To determine if this policy applies to your facility, please provide more information. @@ -141,7 +141,7 @@

4. Please tell us anything else you’d like us to know about how your facility’s business case - supports setting fees higher than the Affordability Benchmarks outlined in the 2023/24 Funding Guidelines. + supports setting fees higher than the Affordability Benchmarks outlined in the 2023/24 Funding Guidelines

You have entered a parent fee above the 2023/24 fee increase limit. Fee increases over the limit will be assessed under the Parent Fee Increase Exceptions policy. - See the CCFRI - Funding Guidelines for more information. + See the Funding Guidelines for more information.

Complete this section to provide more information about your fee increase, or click “Back” to return to the @@ -49,8 +48,7 @@


- As outlined in the Funding Guidelines, this exception applies to sudden and + As outlined in the Funding Guidelines, this exception applies to sudden and unexpected expenses that:

@@ -127,8 +125,7 @@ class="mr-5" > mdi-information - Note: See the Funding Guidelines for the list of eligible expenses + Note: See the Funding Guidelines for the list of eligible expenses
@@ -474,27 +471,27 @@
-
- - - - - - +
+
+ + + + +


-

Do you charge parent fees at this facility for any closures on business days (other than designated holidays)? Only indicate the date of closures where parent fees are charged.

+

Do you charge parent fees at this facility for any closures on business days (other than designated holidays)? Only indicate the date of closures where parent fees are charged.

+

Do you charge parent fees at this facility for any closures on business days (other than provincial statutory holidays)? Only indicate the date of closures where parent fees are charged.

You have entered a parent fee above the {{formattedProgramYear}} parent fee increase limit for the following care categories:

{{item}}

-

Parent fee increases over the limit will be assessed under the Parent Fee Increase Exceptions policy in the {{formattedProgramYear}} Funding Guidelines. You can continue to the Request for Information section or press back to update your fees.

+

Parent fee increases over the limit will be assessed under the Parent Fee Increase Exceptions policy in the {{formattedProgramYear}} Funding Guidelines. You can continue to the Request for Information section or press back to update your fees.

Please confirm you have provided your highest full-time (i.e. over 4 hours, 5 days a week) parent fee for each care category before CCFRI is applied. Submit your daily parent fee if you only offer care for 4 days or fewer per week.

Back Continue @@ -442,7 +443,7 @@ - diff --git a/frontend/src/components/eceweApplication/EceweEligibility.vue b/frontend/src/components/eceweApplication/EceweEligibility.vue index a11e8754..6d716870 100644 --- a/frontend/src/components/eceweApplication/EceweEligibility.vue +++ b/frontend/src/components/eceweApplication/EceweEligibility.vue @@ -1,5 +1,5 @@