|
|
@@ -103,7 +103,7 @@ public class WxBusinessController extends BaseController { |
|
|
if(m.get("volume") != null) { |
|
|
if(m.get("volume") != null) { |
|
|
//单位转万 |
|
|
//单位转万 |
|
|
BigDecimal b = (BigDecimal)m.get("volume"); |
|
|
BigDecimal b = (BigDecimal)m.get("volume"); |
|
|
String dstr = b.divide(new BigDecimal(1000)).setScale(2, BigDecimal.ROUND_HALF_UP).toString(); |
|
|
|
|
|
|
|
|
String dstr = b.divide(new BigDecimal(10000)).setScale(2, BigDecimal.ROUND_HALF_UP).toString(); |
|
|
businessDataVo.setSale(dstr); |
|
|
businessDataVo.setSale(dstr); |
|
|
} |
|
|
} |
|
|
if(m.get("sale") != null) |
|
|
if(m.get("sale") != null) |
|
|
|