Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
simcaq-node
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
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