File tree Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 32
32
:style =" { width: tooltipWidth }"
33
33
>
34
34
<div v-if =" activePeriod.challengeReportsSessionStatus === REPORT_STATUS_NOT_YET_AVAILABLE" >
35
- The ministry has not yet released the preliminary data on course challenges. Your district’s superintendent will be emailed when data is available.
35
+ The ministry has not yet released the preliminary data on course challenges. Your district’s Enrolment Data Collection Administrator will be emailed when data is available.
36
36
</div >
37
37
<div v-else-if =" activePeriod.challengeReportsSessionStatus === REPORT_STATUS_PRELIMINARY" >
38
38
Data corrections can be made through <strong >GRAD File Upload</strong > or a <a
42
42
>GRAD Change Form</a >.
43
43
Changes submitted before the due date will be reflected in the report data.
44
44
Changes submitted past the due date will not be reflected in the report and are not eligible for funding.
45
- Your district’s superintendent will be emailed when the final data is available.
45
+ Your district’s Enrolment Data Collection Administrator will be emailed when the final data is available.
46
46
</div >
47
47
<div v-else-if =" activePeriod.challengeReportsSessionStatus === REPORT_STATUS_FINAL" >
48
48
The data reported is final. It reflects the course challenges that will be funded for your district.
@@ -224,9 +224,9 @@ export default {
224
224
const currentMonth = currentDate .getMonth ();
225
225
226
226
if (currentMonth > 5 ) {
227
- this .startingYear = currentYear;
228
- } else {
229
227
this .startingYear = currentYear - 1 ;
228
+ } else {
229
+ this .startingYear = currentYear - 2 ;
230
230
}
231
231
this .endingYear = this .startingYear + 1 ;
232
232
},
Original file line number Diff line number Diff line change @@ -293,7 +293,7 @@ export default {
293
293
{
294
294
title: PAGE_TITLES .CHALLENGE_REPORTS ,
295
295
link: { name: ' challengeReports' , params: {districtID: this .userInfo .activeInstituteIdentifier }},
296
- authorized: this .hasRequiredPermission (PERMISSION .SUPERINT )
296
+ authorized: this .hasRequiredPermission (PERMISSION .CHALLENGE_REPORTS )
297
297
}
298
298
];
299
299
this .hasAnyItems = this .items .filter (obj => obj .authorized ).length > 0 ;
Original file line number Diff line number Diff line change @@ -40,8 +40,9 @@ export const PERMISSION = Object.freeze(
40
40
41
41
GRAD_DIS_RPT_VIEW : 'GRAD_DIS_RPT_VIEW' ,
42
42
43
- SUPERINT : 'SUPERINT'
43
+ SUPERINT : 'SUPERINT' ,
44
44
45
+ CHALLENGE_REPORTS : 'CHALLENGE_REPORTS' ,
45
46
}
46
47
) ;
47
48
You can’t perform that action at this time.
0 commit comments