From 5fd9ef45d47a43dc924b8e90412f502d2696419d Mon Sep 17 00:00:00 2001 From: roblo-cgi Date: Fri, 15 Sep 2023 16:52:53 -0700 Subject: [PATCH] added ccfriId to currentPcfCCfri in order to get 3% median to trigger --- frontend/src/components/mtfi/CurrentFeeVerification.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/components/mtfi/CurrentFeeVerification.vue b/frontend/src/components/mtfi/CurrentFeeVerification.vue index 4c1104df..ef6e2f70 100644 --- a/frontend/src/components/mtfi/CurrentFeeVerification.vue +++ b/frontend/src/components/mtfi/CurrentFeeVerification.vue @@ -471,7 +471,9 @@ export default { this.currentFacility = this.userProfileList?.find(el => el.facilityId == fac.facilityId); //facility from userProfile with old CCFRI this.currentPcfCcfri = await this.getPreviousApprovedFees({facilityId: this.currentFacility.facilityId, programYearId: this.programYearId}); + this.currentPcfCcfri.childCareTypes = this.currentPcfCcfri.childCareTypes.filter(el => el.programYearId == this.programYearId); //filter so only current fiscal years appear + this.currentPcfCcfri.ccfriApplicationId = this.$route.params.urlGuid; await this.loadCCFRIFacility(this.$route.params.urlGuid); await this.loadCCFisCCRIMedian(); //load the CCFRI median of the existing PCf (old) CCFRI await this.decorateWithCareTypes(this.CCFRIFacilityModel.facilityId);