更新
This commit is contained in:
parent
c0c99b9271
commit
211cd296f2
@ -342,7 +342,9 @@ public class AppInspectionPartnerServiceImpl extends ServiceImpl<AppInspectionPa
|
||||
list1.removeIf(it -> {
|
||||
return it.getTitle().equals(orderInfo.getGoodsTitle());
|
||||
});
|
||||
seriesObjectData.add(Double.valueOf(orderInfo.getRealPayMoney()) / 100);
|
||||
if (orderInfo.getRealPayMoney() != null) {
|
||||
seriesObjectData.add(Double.valueOf(orderInfo.getRealPayMoney()) / 100);
|
||||
}
|
||||
}
|
||||
categories.addAll(list1.stream().map(it -> {
|
||||
return it.getTitle().indexOf("(") > 0 ? it.getTitle().substring(0, it.getTitle().indexOf("(")) : it.getTitle();
|
||||
|
Loading…
Reference in New Issue
Block a user