Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
JSH ERP
Commits
6120a428
Commit
6120a428
authored
Sep 03, 2017
by
季圣华
Browse files
优化打印报表的标题
parent
50d43ab5
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/main/webapp/js/print/print.js
View file @
6120a428
...
...
@@ -4,7 +4,9 @@ function CreateFormPage(strPrintName, printDatagrid) {
var
beginDate
=
$
(
"
#searchBeginTime
"
).
val
();
var
endDate
=
$
(
"
#searchEndTime
"
).
val
();
var
getMonth
=
$
(
"
#searchMonth
"
).
val
();
var
tableString
=
'
<div class="div-title">上海某某某某有限责任公司
\n
</div>
'
;
var
listTitle
=
$
(
"
#tablePanel
"
).
prev
().
text
();
listTitle
=
listTitle
.
replace
(
"
列表
"
,
""
);
var
tableString
=
'
<div class="div-title">上海某某某某有限责任公司
'
+
listTitle
+
'
\n
</div>
'
;
if
(
beginDate
&&
endDate
)
{
tableString
+=
'
\n
<div class="div-time">日期:
'
+
beginDate
+
'
至
'
+
endDate
+
'
\n
</div>
'
;
}
...
...
src/main/webapp/pages/reports/account_report.jsp
View file @
6120a428
...
...
@@ -48,7 +48,7 @@
</div>
<!-- 数据显示table -->
<div
id =
"tablePanel"
class=
"easyui-panel"
style=
"padding:1px;top:300px;"
title=
"结算账户
查询
"
iconCls=
"icon-list"
collapsible=
"true"
closable=
"false"
>
<div
id =
"tablePanel"
class=
"easyui-panel"
style=
"padding:1px;top:300px;"
title=
"结算账户
列表
"
iconCls=
"icon-list"
collapsible=
"true"
closable=
"false"
>
<table
id=
"tableData"
style=
"top:300px;border-bottom-color:#FFFFFF"
></table>
</div>
...
...
Write
Preview
Supports
Markdown
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