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
29fa8494
Commit
29fa8494
authored
Jan 10, 2018
by
java-lixy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
统一“被举报项目/部门”
parent
d17fa2f9
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
13 additions
and
8 deletions
+13
-8
ReportEntity.java
src/main/java/com/ejweb/modules/report/entity/ReportEntity.java
+1
-1
ReportToWordController.java
src/main/java/com/ejweb/modules/report/web/ReportToWordController.java
+1
-1
reportDeliver.jsp
src/main/webapp/WEB-INF/views/modules/report/reportDeliver.jsp
+1
-1
reportDetail.jsp
src/main/webapp/WEB-INF/views/modules/report/reportDetail.jsp
+1
-1
reportList.jsp
src/main/webapp/WEB-INF/views/modules/report/reportList.jsp
+1
-1
reportTrack.jsp
src/main/webapp/WEB-INF/views/modules/report/reportTrack.jsp
+8
-3
No files found.
src/main/java/com/ejweb/modules/report/entity/ReportEntity.java
View file @
29fa8494
...
@@ -69,7 +69,7 @@ public class ReportEntity extends DataEntity<ReportEntity> {
...
@@ -69,7 +69,7 @@ public class ReportEntity extends DataEntity<ReportEntity> {
private
String
[]
types
;
//新业务类型
private
String
[]
types
;
//新业务类型
@ExcelField
(
title
=
"被举报项目/
被举报
部门"
,
align
=
2
,
sort
=
24
)
@ExcelField
(
title
=
"被举报项目/部门"
,
align
=
2
,
sort
=
24
)
public
String
getReportProject
()
{
public
String
getReportProject
()
{
return
reportProject
;
return
reportProject
;
}
}
...
...
src/main/java/com/ejweb/modules/report/web/ReportToWordController.java
View file @
29fa8494
...
@@ -93,7 +93,7 @@ public class ReportToWordController {
...
@@ -93,7 +93,7 @@ public class ReportToWordController {
//表格第一行
//表格第一行
XWPFTableRow
reportProject
=
basicInfoTable
.
getRow
(
0
);
XWPFTableRow
reportProject
=
basicInfoTable
.
getRow
(
0
);
reportProject
.
getCell
(
0
).
setText
(
"被举报项目:"
);
reportProject
.
getCell
(
0
).
setText
(
"被举报项目
/部门
:"
);
reportProject
.
addNewTableCell
().
setText
(
reportEntity
.
getReportProject
()==
null
?
""
:
reportEntity
.
getReportProject
());
reportProject
.
addNewTableCell
().
setText
(
reportEntity
.
getReportProject
()==
null
?
""
:
reportEntity
.
getReportProject
());
XWPFTableRow
supplementTitle
=
basicInfoTable
.
createRow
();
XWPFTableRow
supplementTitle
=
basicInfoTable
.
createRow
();
...
...
src/main/webapp/WEB-INF/views/modules/report/reportDeliver.jsp
View file @
29fa8494
...
@@ -116,7 +116,7 @@
...
@@ -116,7 +116,7 @@
<th>
ID
</th>
<th>
ID
</th>
<th>
标题
</th>
<th>
标题
</th>
<th>
业务类型
</th>
<th>
业务类型
</th>
<th>
被举报项目/
被举报
部门
</th>
<th>
被举报项目/部门
</th>
<th>
举报人
</th>
<th>
举报人
</th>
<th>
举报人电话
</th>
<th>
举报人电话
</th>
<th>
区域
</th>
<th>
区域
</th>
...
...
src/main/webapp/WEB-INF/views/modules/report/reportDetail.jsp
View file @
29fa8494
...
@@ -88,7 +88,7 @@
...
@@ -88,7 +88,7 @@
<sys:message
content=
"${message}"
/>
<sys:message
content=
"${message}"
/>
<span
class=
"title"
>
举报内容
</span>
<span
class=
"title"
>
举报内容
</span>
<div
class=
"control-group"
>
<div
class=
"control-group"
>
<label
class=
"control-label"
>
被举报项目:
</label>
<label
class=
"control-label"
>
被举报项目
/部门
:
</label>
<div
class=
"controls"
>
<div
class=
"controls"
>
<form:input
path=
"reportProject"
htmlEscape=
"false"
maxlength=
"200"
class=
"input-xlarge required"
/>
<form:input
path=
"reportProject"
htmlEscape=
"false"
maxlength=
"200"
class=
"input-xlarge required"
/>
</div>
</div>
...
...
src/main/webapp/WEB-INF/views/modules/report/reportList.jsp
View file @
29fa8494
...
@@ -130,7 +130,7 @@
...
@@ -130,7 +130,7 @@
<th>
ID
</th>
<th>
ID
</th>
<th>
标题
</th>
<th>
标题
</th>
<th>
业务类型
</th>
<th>
业务类型
</th>
<th>
被举报项目/
被举报
部门
</th>
<th>
被举报项目/部门
</th>
<th>
OA账号
</th>
<th>
OA账号
</th>
<th>
举报人
</th>
<th>
举报人
</th>
<th>
举报人电话
</th>
<th>
举报人电话
</th>
...
...
src/main/webapp/WEB-INF/views/modules/report/reportTrack.jsp
View file @
29fa8494
...
@@ -64,6 +64,11 @@
...
@@ -64,6 +64,11 @@
ck
[
number
[
i
]
-
1
].
checked
=
true
;
ck
[
number
[
i
]
-
1
].
checked
=
true
;
}
}
}
}
//管理员权限可选择处理结论
<%--
var
isAdmin
=
$
{
isAdmin
};
--%>
<%--
if
(
isAdmin
==
false
)
{
--%>
<%--
$
(
"#dealResult"
).
attr
(
"disabled"
,
true
);
--%>
<%--
}
--%>
// $("#reportDetail input[type='text']").each(function(){
// $("#reportDetail input[type='text']").each(function(){
// $(this).attr("disabled",true);
// $(this).attr("disabled",true);
// });
// });
...
@@ -261,7 +266,7 @@
...
@@ -261,7 +266,7 @@
path1
+=
"&body=Dear,%0D%0A附件是举报核查-"
+
supplementType
+
"-"
+
supplementInformant
+
"违规操作,请核实是否属实。%0D%0A谢谢!"
;
path1
+=
"&body=Dear,%0D%0A附件是举报核查-"
+
supplementType
+
"-"
+
supplementInformant
+
"违规操作,请核实是否属实。%0D%0A谢谢!"
;
path1
+=
"%0D%0A%0D%0A举报内容%0D%0A"
;
path1
+=
"%0D%0A%0D%0A举报内容%0D%0A"
;
path1
+=
"被举报项目:${report.reportProject}%0D%0A"
;
path1
+=
"被举报项目
/部门
:${report.reportProject}%0D%0A"
;
path1
+=
"标题:${report.supplementTitle}%0D%0A"
;
path1
+=
"标题:${report.supplementTitle}%0D%0A"
;
path1
+=
"被举报人:${report.supplementInformant}%0D%0A"
;
path1
+=
"被举报人:${report.supplementInformant}%0D%0A"
;
path1
+=
"举报时间:${report.reportTime}%0D%0A"
;
path1
+=
"举报时间:${report.reportTime}%0D%0A"
;
...
@@ -435,7 +440,7 @@
...
@@ -435,7 +440,7 @@
<div
id=
"reportDetail"
>
<div
id=
"reportDetail"
>
<span
class=
"title"
>
举报内容
</span>
<span
class=
"title"
>
举报内容
</span>
<div
class=
"control-group"
>
<div
class=
"control-group"
>
<label
class=
"control-label"
>
被举报项目:
</label>
<label
class=
"control-label"
>
被举报项目
/部门
:
</label>
<div
class=
"controls"
>
<div
class=
"controls"
>
<form:input
path=
"reportProject"
htmlEscape=
"false"
maxlength=
"200"
disabled=
"true"
class=
"input-xlarge required"
/>
<form:input
path=
"reportProject"
htmlEscape=
"false"
maxlength=
"200"
disabled=
"true"
class=
"input-xlarge required"
/>
</div>
</div>
...
@@ -589,7 +594,7 @@
...
@@ -589,7 +594,7 @@
<br>
<br>
<label
class=
"control-label"
>
处理结论:
</label>
<label
class=
"control-label"
>
处理结论:
</label>
<div
class=
"controls"
>
<div
class=
"controls"
>
<form:select
path=
"dealResult"
class=
"input-small required"
>
<form:select
path=
"dealResult"
id=
"dealResult"
class=
"input-small required"
>
<form:option
value=
" "
>
请选择
</form:option>
<form:option
value=
" "
>
请选择
</form:option>
<form:options
items=
"${fns:getDictList('deal_result')}"
itemLabel=
"label"
itemValue=
"value"
htmlEscape=
"false"
/>
<form:options
items=
"${fns:getDictList('deal_result')}"
itemLabel=
"label"
itemValue=
"value"
htmlEscape=
"false"
/>
</form:select>
</form:select>
...
...
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