|
@@ -348,7 +348,11 @@ public class StudentPaymentOrderDetailServiceImpl extends BaseServiceImpl<Long,
|
|
kitGroupPurchaseType = spod.getKitGroupPurchaseType();
|
|
kitGroupPurchaseType = spod.getKitGroupPurchaseType();
|
|
goodsId = spod.getGoodsIdList();
|
|
goodsId = spod.getGoodsIdList();
|
|
}else if(spod.getType() == OrderDetailTypeEnum.ACCESSORIES){
|
|
}else if(spod.getType() == OrderDetailTypeEnum.ACCESSORIES){
|
|
- accessoriesId = spod.getGoodsIdList() + ",";
|
|
|
|
|
|
+ if(StringUtils.isBlank(accessoriesId)){
|
|
|
|
+ accessoriesId = spod.getGoodsIdList();
|
|
|
|
+ }else{
|
|
|
|
+ accessoriesId = accessoriesId + "," + spod.getGoodsIdList();
|
|
|
|
+ }
|
|
}else{
|
|
}else{
|
|
withoutMusicalTotalAmount = withoutMusicalTotalAmount.add(spod.getPrice().subtract(spod.getRemitFee()));
|
|
withoutMusicalTotalAmount = withoutMusicalTotalAmount.add(spod.getPrice().subtract(spod.getRemitFee()));
|
|
}
|
|
}
|