Skip to content

Commit b541a9c

Browse files
Merge pull request #1641 from bcgov/fix/summerRulesV04Dependent
summer rules dependent on v04
2 parents 6768523 + 9a314da commit b541a9c

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

api/src/main/java/ca/bc/gov/educ/studentdatacollection/api/constants/v1/ValidationRulesDependencyMatrix.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,14 +62,14 @@ public enum ValidationRulesDependencyMatrix {
6262
ENTRY54("V78", new String[]{DOB_INVALID_FORMAT.getCode(), ENROLLED_CODE_PARSE_ERR.getCode(), ENROLLED_CODE_INVALID.getCode()}),
6363
ENTRY55("V79", new String[]{DOB_INVALID_FORMAT.getCode(), SPED_ERR.getCode()}),
6464
ENTRY56("V90", new String[]{FUNDING_CODE_INVALID.getCode(), ENROLLED_CODE_PARSE_ERR.getCode(), ENROLLED_CODE_INVALID.getCode()}),
65-
ENTRY57("V93", new String[]{SUMMER_PUBLIC_SCHOOL_GRADE_ERROR.getCode()}),
66-
ENTRY58("V99", new String[]{SUMMER_PUBLIC_SCHOOL_GRADE_ERROR.getCode()}),
65+
ENTRY57("V93", new String[]{DOB_INVALID_FORMAT.getCode(), SUMMER_PUBLIC_SCHOOL_GRADE_ERROR.getCode()}),
66+
ENTRY58("V99", new String[]{DOB_INVALID_FORMAT.getCode(), SUMMER_PUBLIC_SCHOOL_GRADE_ERROR.getCode()}),
6767
ENTRY59("V94", new String[]{DOB_INVALID_FORMAT.getCode()}),
6868
ENTRY60("V92", new String[]{INVALID_GRADE_CODE.getCode()}),
6969
ENTRY61("V98", new String[]{DOB_INVALID_FORMAT.getCode()}),
7070
ENTRY62("V100", new String[]{ENROLLED_CODE_PARSE_ERR.getCode()}),
71-
ENTRY63("V102", new String[]{SUMMER_PUBLIC_SCHOOL_GRADE_ERROR.getCode(), SUMMER_STUDENT_REPORTED_NOT_IN_DISTRICT_ERROR.getCode()}),
72-
ENTRY64("V103", new String[]{SUMMER_PUBLIC_SCHOOL_GRADE_ERROR.getCode()}),
71+
ENTRY63("V102", new String[]{DOB_INVALID_FORMAT.getCode(), SUMMER_PUBLIC_SCHOOL_GRADE_ERROR.getCode(), SUMMER_STUDENT_REPORTED_NOT_IN_DISTRICT_ERROR.getCode()}),
72+
ENTRY64("V103", new String[]{DOB_INVALID_FORMAT.getCode(), SUMMER_PUBLIC_SCHOOL_GRADE_ERROR.getCode()}),
7373
;
7474

7575
@Getter

api/src/main/java/ca/bc/gov/educ/studentdatacollection/api/rules/validationrules/impl/SummerStudentOnlineLearningRule.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
/**
2525
* | ID | Severity | Rule | Dependent On |
2626
* |------|----------|-------------------------------------------------------------- |--------------|
27-
* | V102 | WARNING | The student is not reported in the Online School in July and | V92 , V99 |
27+
* | V102 | WARNING | The student is not reported in the Online School in July and | V04, V92 , V99 |
2828
* was not reported in the online school in any previous
2929
* collections this school year
3030
*

api/src/main/java/ca/bc/gov/educ/studentdatacollection/api/rules/validationrules/impl/SummerStudentReportedInAuthorityRule.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
/**
2626
* | ID | Severity | Rule | Dependent On |
2727
* |----- |----------|-------------------------------------------------------------- |--------------|
28-
* | V103 | ERROR | Student included in any collection in this school year | V92 |
28+
* | V103 | ERROR | Student included in any collection in this school year | V04, V92 |
2929
* for the authority with FTE > 0 in any school with type
3030
* different from online
3131
* OR if the student reported in Online school in the authority

api/src/main/java/ca/bc/gov/educ/studentdatacollection/api/rules/validationrules/impl/SummerStudentReportedInDistrictRule.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
/**
2626
* | ID | Severity | Rule | Dependent On |
2727
* |-----|----------|-------------------------------------------------------------- |--------------|
28-
* | V93 | ERROR | Student included in any collection in this school year | V92 |
28+
* | V93 | ERROR | Student included in any collection in this school year | V04, V92 |
2929
* for the district with FTE > 0 in any school with type
3030
* different from online
3131
* OR if the student reported in Online school in the district

api/src/main/java/ca/bc/gov/educ/studentdatacollection/api/rules/validationrules/impl/SummerStudentReportedInOtherDistrictRule.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
/**
2121
* | ID | Severity | Rule | Dependent On |
2222
* |-----|----------|-------------------------------------------------------------- |--------------|
23-
* | V99 | WARNING | Student must be reported in Grade 8 or 9 |V92 |
23+
* | V99 | WARNING | Student must be reported in Grade 8 or 9 | V04, V92 |
2424
* with FTE>0 in any other districts in previous
2525
* collection this school year to receive funding.
2626
*/

0 commit comments

Comments
 (0)