bcgov / SIMS

Student Information Management System. Post-Secondary Student Financial Aid System
Apache License 2.0
23 stars 13 forks source link

Handling federal fulltime lifetime maximum restrictions. #1749

Open JasonCTang opened 1 year ago

JasonCTang commented 1 year ago

This has been postponed for a more simplified approach for MVP. Parking this ticket for post launch review and implementation.

Federal Government is in charge of tracking a student against their fulltime federal lifetime maximums and they will notify us when to apply a restriction or not. In other words, there is no need to perform any calculation to reduce an award at time of ECERT generation. If funding is restricted, the award amount will just become zero.

Additional context

Logic for when and how to apply federal restriction codes At time of ECERT generation: if (Application = Aviation Program & Restriction AV= True) {stop disbursements & record reason} else if (PD Status = True ) {   if (Restriction 5 = True or Restriction B7 = True) {stop disbursements & record reason} } else if (Application = Non-Doctorate Credential & Restriction 7 = True) {stop disbursements & record reason} else If (Application = Doctorate Credential & Restriction 9 = True) {stop disbursements & record reason}

Acceptance Criteria:

2f51e903-8dd1-4f5e-9291-dbf44bd67067.jpg 842615d8-a2dc-4497-85e3-e7c87972ef59.jpg 124aedf9-e992-4b0c-8ebe-13f5532f52e5.jpg

JasonCTang commented 1 year ago

This has been postponed for a more simplified approach for MVP. Parking this ticket for post launch review and implementation.