@@ -36,7 +36,6 @@ public FteCalculationResult calculateFte(StudentRuleData studentData) {
36
36
FteCalculationResult fteCalculationResult = new FteCalculationResult ();
37
37
38
38
// v93
39
- log .info ("CollectionAndFacilityTypeCalculator: FTE Zero; running query for V93. :: " + studentData .getSdcSchoolCollectionStudentEntity ().getSdcSchoolCollectionStudentID ());
40
39
var includedInCollectionThisSchoolYearForDistrictWithNonZeroFteWithSchoolTypeNotOnline = fteCalculatorUtils .includedInCollectionThisSchoolYearForDistrictWithNonZeroFteWithSchoolTypeNotOnline (studentData );
41
40
// The student was included in any collection in this school year for the district with a non-zero FTE
42
41
// and was reported in any school with a type different than Online.
@@ -48,7 +47,6 @@ public FteCalculationResult calculateFte(StudentRuleData studentData) {
48
47
}
49
48
50
49
// v93
51
- log .info ("CollectionAndFacilityTypeCalculator: FTE Zero; running second query for V93. :: " + studentData .getSdcSchoolCollectionStudentEntity ().getSdcSchoolCollectionStudentID ());
52
50
var includedInCollectionThisSchoolYearForDistrictWithNonZeroFteWithSchoolTypeOnlineInGradeKto9 = fteCalculatorUtils .includedInCollectionThisSchoolYearForDistrictWithNonZeroFteWithSchoolTypeOnlineInGradeKto9 (studentData );
53
51
// The student was included in any collection in this school year for the district with a non-zero FTE
54
52
// and was reported in an Online school in grade K to 9.
@@ -60,7 +58,6 @@ public FteCalculationResult calculateFte(StudentRuleData studentData) {
60
58
}
61
59
62
60
// v99
63
- log .info ("CollectionAndFacilityTypeCalculator: FTE Zero; running query for V99. :: " + studentData .getSdcSchoolCollectionStudentEntity ().getSdcSchoolCollectionStudentID ());
64
61
// The student was not reported in grade 8 or 9 with FTE>0 in any other districts in any previous collections this school year.
65
62
var studentExistsInCurrentFiscalInGrade8Or9 = fteCalculatorUtils .reportedInOtherDistrictsInPreviousCollectionThisSchoolYearInGrade8Or9WithNonZeroFte (studentData );
66
63
if (!studentExistsInCurrentFiscalInGrade8Or9 ) {
@@ -71,9 +68,7 @@ public FteCalculationResult calculateFte(StudentRuleData studentData) {
71
68
}
72
69
73
70
// v102
74
- log .info ("CollectionAndFacilityTypeCalculator: FTE Zero; running query for V102. :: " + studentData .getSdcSchoolCollectionStudentEntity ().getSdcSchoolCollectionStudentID ());
75
71
var reportedInOnlineSchoolInAnyPreviousCollectionThisSchoolYear = fteCalculatorUtils .reportedInOnlineSchoolInAnyPreviousCollectionThisSchoolYear (studentData );
76
- log .info ("CollectionAndFacilityTypeCalculator: FTE Zero; running second query for V102. :: " + studentData .getSdcSchoolCollectionStudentEntity ().getSdcSchoolCollectionStudentID ());
77
72
var reportedInOnlineSchoolInCurrentCollection = fteCalculatorUtils .reportedInOnlineSchoolInCurrentCollection (studentData );
78
73
// The student was not reported in the Online School in July and was not reported in the online school in any previous collections this school year.
79
74
// v102: trigger for students that are not enrolled with positive FTE in any online schools during the current school year (in any of the collections: Sep, Feb, May, or July)
@@ -85,7 +80,6 @@ public FteCalculationResult calculateFte(StudentRuleData studentData) {
85
80
}
86
81
87
82
// v103
88
- log .info ("CollectionAndFacilityTypeCalculator: FTE Zero; running query for V103. :: " + studentData .getSdcSchoolCollectionStudentEntity ().getSdcSchoolCollectionStudentID ());
89
83
var includedInCollectionThisSchoolYearForAuthWithNonZeroFteWithSchoolTypeNotOnline = fteCalculatorUtils .includedInCollectionThisSchoolYearForAuthWithNonZeroFteWithSchoolTypeNotOnline (studentData );
90
84
// The student was included in any collection in this school year for the auth with a non-zero FTE
91
85
// and was reported in any school with a type different than Online.
@@ -97,7 +91,6 @@ public FteCalculationResult calculateFte(StudentRuleData studentData) {
97
91
}
98
92
99
93
// v103
100
- log .info ("CollectionAndFacilityTypeCalculator: FTE Zero; running second query for V102. :: " + studentData .getSdcSchoolCollectionStudentEntity ().getSdcSchoolCollectionStudentID ());
101
94
var includedInCollectionThisSchoolYearForAuthWithNonZeroFteWithSchoolTypeOnlineInGradeKto9 = fteCalculatorUtils .includedInCollectionThisSchoolYearForAuthWithNonZeroFteWithSchoolTypeOnlineInGradeKto9 (studentData );
102
95
// The student was included in any collection in this school year for the auth with a non-zero FTE
103
96
// and was reported in an Online school in grade K to 9.
@@ -108,8 +101,6 @@ public FteCalculationResult calculateFte(StudentRuleData studentData) {
108
101
return fteCalculationResult ;
109
102
}
110
103
111
- log .info ("CollectionAndFacilityTypeCalculator: done running queries" );
112
-
113
104
log .debug ("CollectionAndFacilityTypeCalculator: No FTE result, moving to next calculation for student :: " + studentData .getSdcSchoolCollectionStudentEntity ().getSdcSchoolCollectionStudentID ());
114
105
return this .nextCalculator .calculateFte (studentData );
115
106
} else {
0 commit comments