Skip to content

Commit

Permalink
Merge pull request #262 from icefoganalytics/test
Browse files Browse the repository at this point in the history
Bug fixing
  • Loading branch information
datajohnson authored Jun 24, 2024
2 parents 19f8bb7 + a85cb99 commit 4c46e62
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -994,9 +994,6 @@ export class AssessmentCslftRepositoryV2 {
}

determineCategoryId(cslClassification: number, accomodationCode: number): number {
cslClassification = 1;
accomodationCode = 2;

if (cslClassification == 1 && accomodationCode == 1) {
return this.studentCategories.find((c: any) => c.code == "SDH")?.id || -1;
} else if (cslClassification == 1 && accomodationCode == 2) {
Expand Down
1 change: 0 additions & 1 deletion src/api/services/shared/documentation-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,6 @@ export class DocumentationService {
if (app.personal_details.category != 1) doc.meets_conditions = false;
break;
case "Has Dependant":
if (app.student_dependants.has_dependants == false) doc.meets_conditions = false;
if (app.student_dependants.has_dependants != true) doc.meets_conditions = false;
break;
case "Married/Common Law":
Expand Down

0 comments on commit 4c46e62

Please sign in to comment.