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
570a6258
Commit
570a6258
authored
Oct 20, 2023
by
lisong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加检查项类别值
parent
b05aa847
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
3 deletions
+9
-3
PointServiceImpl.java
...n/amos/patrol/business/service/impl/PointServiceImpl.java
+9
-3
No files found.
amos-boot-module/amos-boot-module-biz/amos-boot-module-patrol-biz/src/main/java/com/yeejoin/amos/patrol/business/service/impl/PointServiceImpl.java
View file @
570a6258
...
...
@@ -932,7 +932,7 @@ public class PointServiceImpl implements IPointService {
List
<
RoutePoint
>
list
=
iRoutePointDao
.
queryRoutePoint
(
routeId
,
longs
);
String
excludeItems
=
list
.
get
(
0
).
getExcludeItems
();
if
(
excludeItems
!=
null
){
resList
.
forEach
(
e
->
{
resList
.
forEach
(
e
->
{
if
(
e
.
containsKey
(
"input_classify"
))
{
if
(
"WGJC"
.
equals
(
e
.
get
(
"input_classify"
).
toString
()))
{
e
.
put
(
"input_classify"
,
"外观检查"
);
...
...
@@ -940,9 +940,15 @@ public class PointServiceImpl implements IPointService {
e
.
put
(
"input_classify"
,
"功能测试"
);
}
else
if
(
"HJJC"
.
equals
(
e
.
get
(
"input_classify"
).
toString
()))
{
e
.
put
(
"input_classify"
,
"环境检查"
);
}
else
if
(
"dayControl"
.
equals
(
e
.
get
(
"input_classify"
).
toString
()))
{
e
.
put
(
"input_classify"
,
"日管控"
);
}
else
if
(
"monthlyScheduling"
.
equals
(
e
.
get
(
"input_classify"
).
toString
()))
{
e
.
put
(
"input_classify"
,
"月调度"
);
}
else
if
(
"weeklySurvey"
.
equals
(
e
.
get
(
"input_classify"
).
toString
()))
{
e
.
put
(
"input_classify"
,
"周排查"
);
}
else
{
e
.
put
(
"input_classify"
,
"其他"
);
}
}
else
{
e
.
put
(
"input_classify"
,
"其他"
);
}
if
(
excludeItems
.
contains
(
e
.
get
(
"itemId"
).
toString
())){
e
.
put
(
"checked"
,
true
);
...
...
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