|
@@ -3353,7 +3353,6 @@ public class OrderDonServiceImpl extends ServiceImpl<OrderDonMapper, OrderDon> i
|
|
|
if (giftCardViews.size() != giftCards.size()) {
|
|
if (giftCardViews.size() != giftCards.size()) {
|
|
|
throw BusinessRuntimeException.getInstance("系统异常,请刷新页面重试");
|
|
throw BusinessRuntimeException.getInstance("系统异常,请刷新页面重试");
|
|
|
}
|
|
}
|
|
|
- payTitle.append("购买详情:");
|
|
|
|
|
BigDecimal gift_card_pay_money = BigDecimal.ZERO;
|
|
BigDecimal gift_card_pay_money = BigDecimal.ZERO;
|
|
|
for (GiftCardGoodsSkuFrontView data : giftCardViews) {
|
|
for (GiftCardGoodsSkuFrontView data : giftCardViews) {
|
|
|
//礼品卡数量
|
|
//礼品卡数量
|
|
@@ -3364,7 +3363,7 @@ public class OrderDonServiceImpl extends ServiceImpl<OrderDonMapper, OrderDon> i
|
|
|
gift_card_pay_money = gift_card_pay_money.add(data.getPrice().multiply(BigDecimal.valueOf(num)));
|
|
gift_card_pay_money = gift_card_pay_money.add(data.getPrice().multiply(BigDecimal.valueOf(num)));
|
|
|
|
|
|
|
|
//礼品卡关系
|
|
//礼品卡关系
|
|
|
- if (!payTitle.toString().endsWith("购买详情:")) {
|
|
|
|
|
|
|
+ if (payTitle.length() > 0) {
|
|
|
payTitle.append(" + ");
|
|
payTitle.append(" + ");
|
|
|
}
|
|
}
|
|
|
String gcDetail;
|
|
String gcDetail;
|