We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08a1e97 commit a75e93fCopy full SHA for a75e93f
src/api/services/admin/nars-v17-2-reporting-service.ts
@@ -141,9 +141,9 @@ export class NarsV17_2ReportingService {
141
let date_left_high_school = moment(
142
`${app.high_school_left_year}-${`${app.high_school_left_month ?? 6}`.padStart(2, "0")}-01`
143
).format("YYYYMMDD");
144
- let app_status = [7, 40].includes(app.funding_request_status_id)
+ let app_status = [7, 40].includes(app.funding_request_status_id) // Awarded or CSG Only
145
? "A"
146
- : app.funding_request_status_id == 4
+ : [4, 5].includes(app.funding_request_status_id) // Rejected or Cancelled
147
? "R"
148
: "P";
149
0 commit comments