|
@@ -384,7 +384,7 @@ public class StudentRepairServiceImpl extends BaseServiceImpl<Integer, StudentRe
|
|
|
BigDecimal totalGroupPurchasePrice = BigDecimal.ZERO;
|
|
|
|
|
|
for(String goodsIdStr : goodsIdsStr.split(",")){
|
|
|
- totalGroupPurchasePrice = totalGroupPurchasePrice.add(goodsMap.get(goodsIdStr).getGroupPurchasePrice());
|
|
|
+ totalGroupPurchasePrice = totalGroupPurchasePrice.add(goodsMap.get(Integer.parseInt(goodsIdStr)).getGroupPurchasePrice());
|
|
|
}
|
|
|
|
|
|
Goods goods = null;
|