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
362cb994
Commit
362cb994
authored
Aug 22, 2019
by
sunxin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
举报列表 跟踪 业务类型 类别相对变更
parent
77b9efc4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
27 additions
and
0 deletions
+27
-0
ReportEntity.java
src/main/java/com/ejweb/modules/report/entity/ReportEntity.java
+10
-0
ReportDao.xml
src/main/resources/mappings/modules/report/ReportDao.xml
+17
-0
reportList.jsp
src/main/webapp/WEB-INF/views/modules/report/reportList.jsp
+0
-0
reportQyList.jsp
src/main/webapp/WEB-INF/views/modules/report/reportQyList.jsp
+0
-0
reportTrack.jsp
src/main/webapp/WEB-INF/views/modules/report/reportTrack.jsp
+0
-0
No files found.
src/main/java/com/ejweb/modules/report/entity/ReportEntity.java
View file @
362cb994
...
@@ -33,6 +33,16 @@ public class ReportEntity extends DataEntity<ReportEntity> {
...
@@ -33,6 +33,16 @@ public class ReportEntity extends DataEntity<ReportEntity> {
private
String
supplementTitle
;
//标题
private
String
supplementTitle
;
//标题
private
String
supplementType
;
//业务类型地产 物业 酒店 商业
private
String
supplementType
;
//业务类型地产 物业 酒店 商业
private
String
transferGroup
;
//移交部门所属集团
private
String
transferGroup
;
//移交部门所属集团
private
String
transferArea
;
//移交区域
public
String
getTransferArea
()
{
return
transferArea
;
}
public
void
setTransferArea
(
String
transferArea
)
{
this
.
transferArea
=
transferArea
;
}
private
String
transferDepartment
;
//移交部门 1 营销 2 工程 3 成本 4 招采 5人力 6物业 7投诉
private
String
transferDepartment
;
//移交部门 1 营销 2 工程 3 成本 4 招采 5人力 6物业 7投诉
private
String
supplementArea
;
//被举报区域
private
String
supplementArea
;
//被举报区域
private
String
supplementProject
;
//被举报项目
private
String
supplementProject
;
//被举报项目
...
...
src/main/resources/mappings/modules/report/ReportDao.xml
View file @
362cb994
...
@@ -20,6 +20,7 @@
...
@@ -20,6 +20,7 @@
/*r.supplement_type AS "supplementType",*/
/*r.supplement_type AS "supplementType",*/
ct.name AS "transferDepartment",
ct.name AS "transferDepartment",
b2.label AS "transferGroup",
b2.label AS "transferGroup",
b3.name AS "transferArea",
/*r.supplement_area AS "supplementArea",*/
/*r.supplement_area AS "supplementArea",*/
r.supplement_project AS "supplementProject",
r.supplement_project AS "supplementProject",
r.supplement_content AS "supplementContent",
r.supplement_content AS "supplementContent",
...
@@ -68,6 +69,7 @@
...
@@ -68,6 +69,7 @@
LEFT JOIN ct_bbtc_bus_type CT ON r.transfer_department = CT.id
LEFT JOIN ct_bbtc_bus_type CT ON r.transfer_department = CT.id
LEFT JOIN ct_bbtc_sys_dict b on b.id = r.supplement_group
LEFT JOIN ct_bbtc_sys_dict b on b.id = r.supplement_group
LEFT JOIN ct_bbtc_sys_dict b2 on b2.id = r.TRANSFERGROUP
LEFT JOIN ct_bbtc_sys_dict b2 on b2.id = r.TRANSFERGROUP
LEFT JOIN ct_bbtc_region b3 on b3.id = r.transferArea
/* LEFT JOIN ct_bbtc_bus_type CT
/* LEFT JOIN ct_bbtc_bus_type CT
ON R.supplement_group = CT.supplement_group
ON R.supplement_group = CT.supplement_group
...
@@ -90,6 +92,7 @@
...
@@ -90,6 +92,7 @@
ON RL.ID = UR.ROLE_ID
ON RL.ID = UR.ROLE_ID
LEFT JOIN ct_bbtc_sys_dict b on b.id = r.supplement_group
LEFT JOIN ct_bbtc_sys_dict b on b.id = r.supplement_group
LEFT JOIN ct_bbtc_sys_dict b2 on b2.id = r.TRANSFERGROUP
LEFT JOIN ct_bbtc_sys_dict b2 on b2.id = r.TRANSFERGROUP
LEFT JOIN ct_bbtc_region b3 on b3.id = r.transferArea
LEFT JOIN ct_bbtc_region CR
LEFT JOIN ct_bbtc_region CR
ON r.supplement_area = CR.id
ON r.supplement_area = CR.id
LEFT JOIN ct_bbtc_bus_type CT
LEFT JOIN ct_bbtc_bus_type CT
...
@@ -178,6 +181,10 @@
...
@@ -178,6 +181,10 @@
AND r.transferGroup = #{transferGroup}
AND r.transferGroup = #{transferGroup}
</if>
</if>
<if
test=
"transferArea != null and transferArea != ''"
>
AND r.transferArea = #{transferArea}
</if>
<if
test=
"transferDepartment != null and transferDepartment != ''"
>
<if
test=
"transferDepartment != null and transferDepartment != ''"
>
AND r.transfer_department LIKE
AND r.transfer_department LIKE
<if
test=
"dbName == 'oracle'"
>
'%'||#{transferDepartment}||'%'
</if>
<if
test=
"dbName == 'oracle'"
>
'%'||#{transferDepartment}||'%'
</if>
...
@@ -220,6 +227,7 @@
...
@@ -220,6 +227,7 @@
ON RL.ID = UR.ROLE_ID
ON RL.ID = UR.ROLE_ID
LEFT JOIN ct_bbtc_sys_dict b on b.id = r.supplement_group
LEFT JOIN ct_bbtc_sys_dict b on b.id = r.supplement_group
LEFT JOIN ct_bbtc_sys_dict b2 on b2.id = r.TRANSFERGROUP
LEFT JOIN ct_bbtc_sys_dict b2 on b2.id = r.TRANSFERGROUP
LEFT JOIN ct_bbtc_region b3 on b3.id = r.transferArea
LEFT JOIN ct_bbtc_region CR
LEFT JOIN ct_bbtc_region CR
ON r.supplement_area = CR.id
ON r.supplement_area = CR.id
LEFT JOIN ct_bbtc_bus_type CT
LEFT JOIN ct_bbtc_bus_type CT
...
@@ -247,6 +255,9 @@
...
@@ -247,6 +255,9 @@
<if
test=
"transferGroup != null and transferGroup != ''"
>
<if
test=
"transferGroup != null and transferGroup != ''"
>
AND r.transferGroup = #{transferGroup}
AND r.transferGroup = #{transferGroup}
</if>
</if>
<if
test=
"transferArea != null and transferArea != ''"
>
AND r.transferArea = #{transferArea}
</if>
<if
test=
"transferDepartment != null and transferDepartment != ''"
>
<if
test=
"transferDepartment != null and transferDepartment != ''"
>
AND r.transfer_department LIKE
AND r.transfer_department LIKE
...
@@ -270,6 +281,7 @@
...
@@ -270,6 +281,7 @@
ON RL.ID = UR.ROLE_ID
ON RL.ID = UR.ROLE_ID
LEFT JOIN ct_bbtc_sys_dict b on b.id = r.supplement_group
LEFT JOIN ct_bbtc_sys_dict b on b.id = r.supplement_group
LEFT JOIN ct_bbtc_sys_dict b2 on b2.id = r.TRANSFERGROUP
LEFT JOIN ct_bbtc_sys_dict b2 on b2.id = r.TRANSFERGROUP
LEFT JOIN ct_bbtc_region b3 on b3.id = r.transferArea
LEFT JOIN ct_bbtc_region CR
LEFT JOIN ct_bbtc_region CR
ON r.supplement_area = CR.id
ON r.supplement_area = CR.id
LEFT JOIN ct_bbtc_bus_type CT
LEFT JOIN ct_bbtc_bus_type CT
...
@@ -387,6 +399,9 @@
...
@@ -387,6 +399,9 @@
<if
test=
"transferGroup != null and transferGroup != ''"
>
<if
test=
"transferGroup != null and transferGroup != ''"
>
AND r.transferGroup = #{transferGroup}
AND r.transferGroup = #{transferGroup}
</if>
</if>
<if
test=
"transferArea != null and transferArea != ''"
>
AND r.transferArea = #{transferArea}
</if>
<if
test=
"transferDepartment != null and transferDepartment != ''"
>
<if
test=
"transferDepartment != null and transferDepartment != ''"
>
AND r.transfer_department LIKE
AND r.transfer_department LIKE
...
@@ -426,6 +441,7 @@
...
@@ -426,6 +441,7 @@
ON r.transfer_department = CT.id
ON r.transfer_department = CT.id
LEFT JOIN ct_bbtc_sys_dict b on b.id = r.supplement_group
LEFT JOIN ct_bbtc_sys_dict b on b.id = r.supplement_group
LEFT JOIN ct_bbtc_sys_dict b2 on b2.id = r.TRANSFERGROUP
LEFT JOIN ct_bbtc_sys_dict b2 on b2.id = r.TRANSFERGROUP
LEFT JOIN ct_bbtc_region b3 on b3.id = r.transferArea
/* LEFT JOIN ct_bbtc_bus_type CT
/* LEFT JOIN ct_bbtc_bus_type CT
ON R.supplement_group = CT.supplement_group
ON R.supplement_group = CT.supplement_group
LEFT JOIN ct_bbtc_bus_category CC
LEFT JOIN ct_bbtc_bus_category CC
...
@@ -546,6 +562,7 @@
...
@@ -546,6 +562,7 @@
supplement_informant = #{supplementInformant},
supplement_informant = #{supplementInformant},
supplement_type = #{supplementType},
supplement_type = #{supplementType},
transferGroup=#{transferGroup},
transferGroup=#{transferGroup},
transferArea=#{transferArea},
transfer_department=#{transferDepartment},
transfer_department=#{transferDepartment},
supplement_area = #{supplementArea},
supplement_area = #{supplementArea},
supplement_project = #{supplementProject},
supplement_project = #{supplementProject},
...
...
src/main/webapp/WEB-INF/views/modules/report/reportList.jsp
View file @
362cb994
This diff is collapsed.
Click to expand it.
src/main/webapp/WEB-INF/views/modules/report/reportQyList.jsp
View file @
362cb994
This diff is collapsed.
Click to expand it.
src/main/webapp/WEB-INF/views/modules/report/reportTrack.jsp
View file @
362cb994
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