Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
sunac_report
Overview
Overview
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
java-sunac-report
sunac_report
Commits
94ceb8ea
Commit
94ceb8ea
authored
Sep 04, 2019
by
sunxin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
跟踪页面 业务类型 类别 逻辑修复
parent
f61e2c34
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
2 deletions
+13
-2
ReportController.java
src/main/java/com/ejweb/modules/report/web/ReportController.java
+13
-2
reportTrack.jsp
src/main/webapp/WEB-INF/views/modules/report/reportTrack.jsp
+0
-0
No files found.
src/main/java/com/ejweb/modules/report/web/ReportController.java
View file @
94ceb8ea
...
...
@@ -654,26 +654,37 @@ public class ReportController extends BaseController {
}
}
/*封装业务类型map*/
Map
<
String
,
String
>
typeMap
=
new
HashMap
();
if
(
oldType
!=
""
){
String
[]
typeArr
=
oldType
.
split
(
","
);
CtBbtcBusType
ctBbtcBusType002
=
null
;
for
(
String
arr:
typeArr
)
{
ctBbtcBusType002
=
CtBbtcBusTypeService
.
get
(
arr
);
typeMap
.
put
(
ctBbtcBusType002
.
getName
(),
arr
);
if
(
ctBbtcBusType002
!=
null
){
typeMap
.
put
(
ctBbtcBusType002
.
getName
(),
arr
);
}
}
}
/*封装业务类别map*/
Map
<
String
,
String
>
catgoryMap
=
new
HashMap
();
if
(
oldCat
!=
""
){
String
[]
typeArr
=
oldCat
.
split
(
","
);
CtBbtcBusCategory
ctBbtcBusCategory002
=
null
;
for
(
String
arr:
typeArr
)
{
ctBbtcBusCategory002
=
ctBbtcBusCategoryService
.
get
(
arr
);
catgoryMap
.
put
(
ctBbtcBusCategory002
.
getName
(),
arr
);
if
(
ctBbtcBusCategory002
!=
null
){
catgoryMap
.
put
(
ctBbtcBusCategory002
.
getName
(),
arr
);
}
}
}
/*
System.out.println("类别map大小:"+catgoryMap.size());
System.out.println("类型map大小:"+typeMap.size());
*/
model
.
addAttribute
(
"page"
,
page
);
model
.
addAttribute
(
"user"
,
userEntity
);
model
.
addAttribute
(
"userName"
,
user
.
getName
());
...
...
src/main/webapp/WEB-INF/views/modules/report/reportTrack.jsp
View file @
94ceb8ea
This diff is collapsed.
Click to expand it.
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