|
@@ -240,14 +240,14 @@ public class DailyAwardRecordsServiceImpl implements DailyAwardRecordsService {
|
|
|
|
|
|
IntegralDO integral = integralService.getIntegral(user.getUserId());
|
|
|
|
|
|
- Long highQuota = integral.getHighQuota();
|
|
|
+
|
|
|
|
|
|
- Long exceedAmount = 0L;
|
|
|
+
|
|
|
|
|
|
- if (highQuota < amount) {
|
|
|
- exceedAmount = highQuota;
|
|
|
- amount = highQuota;
|
|
|
- }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
|
|
|
Long yellowIntegral = (long) (amount * bonusYellowIntegral);
|
|
|
Long greenIntegral = (long) (amount * bonusGreenIntegral);
|
|
@@ -255,10 +255,10 @@ public class DailyAwardRecordsServiceImpl implements DailyAwardRecordsService {
|
|
|
log.info("{}-用户获得了幸运奖{}层 :¥{}", integral.getUserName(), user.getDepth(),amount);
|
|
|
|
|
|
|
|
|
- integral.setHighQuota(integral.getHighQuota() - amount);
|
|
|
+
|
|
|
integral.setYellowCurrentQuota(integral.getYellowCurrentQuota() + yellowIntegral);
|
|
|
integral.setGreenCurrentQuota(integral.getGreenCurrentQuota() + greenIntegral);
|
|
|
- integral.setLuckyQuota(integral.getLuckyQuota() + amount);
|
|
|
+
|
|
|
|
|
|
integralList.add(integral);
|
|
|
|
|
@@ -267,9 +267,9 @@ public class DailyAwardRecordsServiceImpl implements DailyAwardRecordsService {
|
|
|
.integralPoints(yellowIntegral)
|
|
|
.practicalIntegralPoints(yellowIntegral)
|
|
|
.afterIntegralPoints(integral.getYellowCurrentQuota())
|
|
|
- .maxAvailablePointsAmount(-amount)
|
|
|
- .afterMaxAvailablePointsAmount(integral.getHighQuota())
|
|
|
- .luckyQuotaAmount(exceedAmount)
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
.integralStatus(LUCKY_BONUS.getType())
|
|
|
.integralType(IntegralTypeEnum.YELLOW_INTEGRAL.getType())
|
|
|
.build();
|