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
966c9c12
Commit
966c9c12
authored
Aug 13, 2017
by
季圣华
Browse files
修复进销存报表的统计bug
parent
b14aa19f
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/webapp/pages/reports/in_out_stock_report.jsp
View file @
966c9c12
...
...
@@ -364,7 +364,9 @@
{
if(data && data.totalCount) {
var count = data.totalCount.toString();
count = count.substring(0,count.lastIndexOf('.')+3);
if(count.lastIndexOf('.')>-1) {
count = count.substring(0, count.lastIndexOf('.') + 3);
}
$(
"
#
searchPanel
.
total
-
count
"
).text(
"
本月合计金额
:
"
+ count +
"
元
"
);//本月合计金额
}
},
...
...
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