-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#4133 - SFAS to SIMS Bridge - PT App Cancellation Date & MSFAA (FT/PT) Change - Part 3 #4182
#4133 - SFAS to SIMS Bridge - PT App Cancellation Date & MSFAA (FT/PT) Change - Part 3 #4182
Conversation
andrepestana-aot
commented
Dec 26, 2024
•
edited
Loading
edited
- Changed logic to:
- Not consider part-time SFAS cancelled applications for program year totals;
- Not consider part-time application date overlap and;
- Ignore full-time and part-time applications in the MSFAA number process.
- Added E2E tests;
...rs/assessment/_tests_/e2e/assessment.controller-verifyAssessmentCalculationOrder.e2e-spec.ts
Outdated
Show resolved
Hide resolved
...rs/assessment/_tests_/e2e/assessment.controller-verifyAssessmentCalculationOrder.e2e-spec.ts
Outdated
Show resolved
Hide resolved
.../src/controllers/disbursement/_tests_/e2e/disbursement.controller.associateMSFAA.e2e-spec.ts
Outdated
Show resolved
Hide resolved
.../src/controllers/disbursement/_tests_/e2e/disbursement.controller.associateMSFAA.e2e-spec.ts
Outdated
Show resolved
Hide resolved
.../src/controllers/disbursement/_tests_/e2e/disbursement.controller.associateMSFAA.e2e-spec.ts
Outdated
Show resolved
Hide resolved
.../src/controllers/disbursement/_tests_/e2e/disbursement.controller.associateMSFAA.e2e-spec.ts
Outdated
Show resolved
Hide resolved
.../src/controllers/disbursement/_tests_/e2e/disbursement.controller.associateMSFAA.e2e-spec.ts
Outdated
Show resolved
Hide resolved
.../src/controllers/disbursement/_tests_/e2e/disbursement.controller.associateMSFAA.e2e-spec.ts
Outdated
Show resolved
Hide resolved
Great Work. Only minor comments. |
Quality Gate passedIssues Measures |
@@ -38,7 +38,10 @@ export class SFASPartTimeApplicationsService extends DataModelService<SFASPartTi | |||
.createQueryBuilder("sfasPTApplication") | |||
.select(["sfasPTApplication.id"]) | |||
.innerJoin("sfasPTApplication.individual", "sfasPTstudent") | |||
.where("lower(sfasPTstudent.lastName) = lower(:lastName)", { lastName }) | |||
.where("sfasPTApplication.applicationCancelDate IS NULL") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, nice work @andrepestana-aot
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for doing the changes. Looks good 👍