Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-boot-biz
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
项目统一框架
amos-boot-biz
Commits
c06d5df8
Commit
c06d5df8
authored
Aug 16, 2024
by
李秀明
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: BUG#21583 设备管理>消防系统,正常占比数据应该保留2位小数
parent
90f3eb25
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
SystemStatisticController.java
...oin/equipmanage/controller/SystemStatisticController.java
+1
-2
No files found.
amos-boot-module/amos-boot-module-biz/amos-boot-module-equip-biz/src/main/java/com/yeejoin/equipmanage/controller/SystemStatisticController.java
View file @
c06d5df8
...
@@ -55,7 +55,7 @@ public class SystemStatisticController extends AbstractBaseController {
...
@@ -55,7 +55,7 @@ public class SystemStatisticController extends AbstractBaseController {
if
(
total
.
compareTo
(
BigDecimal
.
ZERO
)
==
0
)
{
if
(
total
.
compareTo
(
BigDecimal
.
ZERO
)
==
0
)
{
map
.
put
(
"abs"
,
BigDecimal
.
ZERO
);
map
.
put
(
"abs"
,
BigDecimal
.
ZERO
);
}
else
{
}
else
{
map
.
put
(
"abs"
,
normal
.
divide
(
total
,
2
,
RoundingMode
.
HALF_UP
).
movePointRight
(
2
));
map
.
put
(
"abs"
,
normal
.
divide
(
total
,
4
,
RoundingMode
.
HALF_UP
).
multiply
(
new
BigDecimal
(
100
)).
setScale
(
2
,
RoundingMode
.
HALF_UP
));
}
}
return
CommonResponseUtil
.
success
(
map
);
return
CommonResponseUtil
.
success
(
map
);
}
}
...
@@ -115,5 +115,4 @@ public class SystemStatisticController extends AbstractBaseController {
...
@@ -115,5 +115,4 @@ public class SystemStatisticController extends AbstractBaseController {
}
}
return
CommonResponseUtil
.
success
(
map
);
return
CommonResponseUtil
.
success
(
map
);
}
}
}
}
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