Commit 5e805cf8 by zhiwj

修复bug

parent 1bdb4396
......@@ -135,7 +135,7 @@ public class EvaluateOverviewApiServiceImpl implements EvaluateOverviewApiServic
if (map != null) {
Long totalCount = (Long) e.get("totalCount");
Long orderCount = (Long) map.get("orderCount");
Long goodCount = (Long) map.get("goodCount");
Long goodCount = (Long) e.get("goodCount");
if (orderCount != null && orderCount != 0) {
e.put("evaluateRate", totalCount.doubleValue() / orderCount.doubleValue());
} else {
......
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