Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
simcaq
simcaq-node
Commits
fbdf9d94
Commit
fbdf9d94
authored
Nov 11, 2019
by
jvfpw18
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix diagnostic percentage passing 100 in classroomCount
parent
60d52213
Pipeline
#22316
failed with stage
in 60 minutes
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/libs/routes/classroomCount.js
src/libs/routes/classroomCount.js
+2
-2
No files found.
src/libs/routes/classroomCount.js
View file @
fbdf9d94
...
...
@@ -946,8 +946,8 @@ classroomCountApp.post('/', rqf.parse(), (req, res, next) => {
sum
+=
value
;
}
let
diff
=
1
-
sum
;
// Se for menor que 100 soma na P2 caso exista, se não na P1
if
(
diff
>
0.0001
)
{
// Se for menor
/maior
que 100 soma
/subtrai
na P2 caso exista, se não na P1
if
(
Math
.
abs
(
diff
)
>
0.0001
)
{
if
(
teacherByFormation
[
1
]
>
0
)
{
teacherByFormation
[
1
]
+=
diff
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment