Commit f7b11fe5 by guanzhenshan

解决小数点问题

parent b3fbef5d
...@@ -4844,7 +4844,7 @@ namespace Bailun.DC.Web.Areas.Reports.Controllers ...@@ -4844,7 +4844,7 @@ namespace Bailun.DC.Web.Areas.Reports.Controllers
var list = obj.Select(a => new { var list = obj.Select(a => new {
a.account_subject, a.account_subject,
amount = a.amount.ToString("N0"), amount = a.amount.ToString("N2"),
a.balance_impact, a.balance_impact,
createtime = a.createtime.ToString("yyyy-MM-dd HH:mm:ss"), createtime = a.createtime.ToString("yyyy-MM-dd HH:mm:ss"),
a.currency, a.currency,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment