Commit 337ecb01 by 陶光胜

Merge branch 'developer' into 'master'

Developer

See merge request !52
parents e647984e 6d596877
......@@ -150,6 +150,7 @@ public class StoreSearchUtils {
}else {
resultList.add(0);
}
log.info("storeSearchResult:{}", JSON.toJSONString(resultList));
return resultList;
}
......
......@@ -124,7 +124,7 @@ public class DataFormatUtils {
if (b == null || b == 0) {
return "--";
}
DecimalFormat df = new DecimalFormat("0.00");
DecimalFormat df = new DecimalFormat("0.0");
String sign = "";
if ((a - b) >= 0) {
sign = "+";
......
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