|
@@ -23,6 +23,8 @@ import cn.newfeifan.mall.module.distri.service.partitionbrothers.PartitionBrothe
|
|
|
import cn.newfeifan.mall.module.distri.service.partitionson.PartitionSonService;
|
|
|
import cn.newfeifan.mall.module.distri.service.ptprofit.PtProfitService;
|
|
|
import cn.newfeifan.mall.module.distri.service.ptprofitlog.PtProfitLogService;
|
|
|
+import cn.newfeifan.mall.module.member.dal.dataobject.user.MemberUserDO;
|
|
|
+import cn.newfeifan.mall.module.member.service.user.MemberUserService;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
import org.springframework.context.annotation.Lazy;
|
|
|
import org.springframework.stereotype.Service;
|
|
@@ -99,6 +101,8 @@ public class PartitionCrashServiceImpl implements PartitionCrashService {
|
|
|
|
|
|
@Resource
|
|
|
private DailyAwardRecordsService dailyAwardRecordsService;
|
|
|
+ @Resource
|
|
|
+ private MemberUserService memberUserService;
|
|
|
|
|
|
|
|
|
@Override
|
|
@@ -171,10 +175,16 @@ public class PartitionCrashServiceImpl implements PartitionCrashService {
|
|
|
List<PartitionBrothersSaveReqVO> partitionBrothersSaveReqVOS = new ArrayList<>();
|
|
|
List<PartitionCrashSaveReqVO> partitionCrashSaveReqVOS = new ArrayList<>();
|
|
|
|
|
|
+
|
|
|
+ IntegralDO ptIntegralDO = integralService.selectByUser(PT_ID);
|
|
|
+
|
|
|
duserDOS.forEach(k -> {
|
|
|
|
|
|
|
|
|
IntegralDO integralDO = integralService.selectByUser(k.getUserId());
|
|
|
+
|
|
|
+ MemberUserDO user = memberUserService.getUser(k.getUserId());
|
|
|
+
|
|
|
|
|
|
Long parent = sonAndParent.get(k.getUserId());
|
|
|
IntegralDO parentIntegralDo = integralService.selectByUser(parent);
|
|
@@ -217,7 +227,7 @@ public class PartitionCrashServiceImpl implements PartitionCrashService {
|
|
|
sonBuilder.price(sonSumPrice);
|
|
|
|
|
|
|
|
|
- List<OrderCalcDO> brothersOrderCalcDOS = sharePathService.selectBrothers(k.getUserId(), userId);
|
|
|
+ List<OrderCalcDO> brothersOrderCalcDOS = sharePathService.selectBrothers(k.getUserId(), userId, user);
|
|
|
if (brothersOrderCalcDOS.isEmpty()) {
|
|
|
|
|
|
brotherBuilder = addBrotherEmpty(brotherBuilder, k);
|
|
@@ -293,59 +303,84 @@ public class PartitionCrashServiceImpl implements PartitionCrashService {
|
|
|
integralDO.setAccumulatedQuota(integralDO.getAccumulatedQuota() + amount);
|
|
|
|
|
|
integralService.updateIntegral(BeanUtils.toBean(integralDO, IntegralSaveReqVO.class));
|
|
|
- Long logId = ptProfitLogService.addMessageFreeze(integralDO.getUserId(),integralDO.getUserId(), CaclEnum.SMALL_QUOTA_CRASH, amount,
|
|
|
+ Long logId = ptProfitLogService.addMessageFreeze(integralDO.getUserId(), integralDO.getUserId(), CaclEnum.SMALL_QUOTA_CRASH, amount,
|
|
|
integralDO.getFreezeQuota(), JsonUtils.toJsonString(orderPercentageDO), ptReplenish, -amount, highQuota - amount);
|
|
|
|
|
|
|
|
|
- dailyAwardRecordsService.addDailyAwardRecords(integralDO.getUserId(),integralDO.getUserId(),amount, logId,ptReplenish);
|
|
|
+ dailyAwardRecordsService.addDailyAwardRecords(integralDO.getUserId(), integralDO.getUserId(), amount, logId, ptReplenish);
|
|
|
+ }
|
|
|
+ if (!ptReplenish.equals(0L)) {
|
|
|
+ calcIntegral(ptReplenish, integralDO.getUserId(), JsonUtils.toJsonString(orderPercentageDO));
|
|
|
}
|
|
|
|
|
|
-
|
|
|
- Long parentAmount = 0L;
|
|
|
-
|
|
|
- Long parentPtReplenish = multiply.longValue();
|
|
|
-
|
|
|
- if (multiply.longValue() != 0) {
|
|
|
- if (parentHighQuota.compareTo(0L) > 0) {
|
|
|
- if (parentHighQuota.compareTo(multiply.longValue()) > 0) {
|
|
|
- parentAmount = multiply.longValue();
|
|
|
- parentPtReplenish = 0L;
|
|
|
- } else {
|
|
|
- parentAmount = highQuota;
|
|
|
- parentPtReplenish = multiply.longValue() - highQuota;
|
|
|
+
|
|
|
+ HashMap<Long, Long> map = new HashMap<>();
|
|
|
+
|
|
|
+
|
|
|
+ if (!user.getVisitor()) {
|
|
|
+
|
|
|
+ Long parentAmount = 0L;
|
|
|
+
|
|
|
+ Long parentPtReplenish = multiply.longValue();
|
|
|
+
|
|
|
+ if (multiply.longValue() != 0) {
|
|
|
+ if (parentHighQuota.compareTo(0L) > 0) {
|
|
|
+ if (parentHighQuota.compareTo(multiply.longValue()) > 0) {
|
|
|
+ parentAmount = multiply.longValue();
|
|
|
+ parentPtReplenish = 0L;
|
|
|
+ } else {
|
|
|
+ parentAmount = highQuota;
|
|
|
+ parentPtReplenish = multiply.longValue() - highQuota;
|
|
|
+ }
|
|
|
+ addHighQuota(userHighQuotaMap, parentIntegralDo.getUserId(), parentAmount);
|
|
|
}
|
|
|
- addHighQuota(userHighQuotaMap, parentIntegralDo.getUserId(), parentAmount);
|
|
|
+
|
|
|
+ parentIntegralDo.setHighQuota(parentIntegralDo.getHighQuota() - parentAmount);
|
|
|
+ parentIntegralDo.setFreezeQuota(parentIntegralDo.getFreezeQuota() + parentAmount);
|
|
|
+
|
|
|
+ parentIntegralDo.setAccumulatedQuota(parentIntegralDo.getAccumulatedQuota() + parentAmount);
|
|
|
+
|
|
|
+ integralService.updateIntegral(BeanUtils.toBean(parentIntegralDo, IntegralSaveReqVO.class));
|
|
|
+ Long logId = ptProfitLogService.addMessageFreeze(parentIntegralDo.getUserId(), integralDO.getUserId(), CaclEnum.SMALL_QUOTA_CRASH, parentAmount,
|
|
|
+ parentIntegralDo.getFreezeQuota(), JsonUtils.toJsonString(orderPercentageDO), parentPtReplenish, -parentAmount, parentHighQuota - parentAmount);
|
|
|
+
|
|
|
+
|
|
|
+ dailyAwardRecordsService.addDailyAwardRecords(parentIntegralDo.getUserId(), integralDO.getUserId(), parentAmount, logId, parentPtReplenish);
|
|
|
}
|
|
|
-
|
|
|
- parentIntegralDo.setHighQuota(parentIntegralDo.getHighQuota() - parentAmount);
|
|
|
- parentIntegralDo.setFreezeQuota(parentIntegralDo.getFreezeQuota() + parentAmount);
|
|
|
-
|
|
|
- parentIntegralDo.setAccumulatedQuota(parentIntegralDo.getAccumulatedQuota() + parentAmount);
|
|
|
-
|
|
|
- integralService.updateIntegral(BeanUtils.toBean(parentIntegralDo, IntegralSaveReqVO.class));
|
|
|
- Long logId = ptProfitLogService.addMessageFreeze(parentIntegralDo.getUserId(),integralDO.getUserId(), CaclEnum.SMALL_QUOTA_CRASH, parentAmount,
|
|
|
- parentIntegralDo.getFreezeQuota(), JsonUtils.toJsonString(orderPercentageDO), parentPtReplenish, -parentAmount, parentHighQuota - parentAmount);
|
|
|
|
|
|
-
|
|
|
- dailyAwardRecordsService.addDailyAwardRecords(parentIntegralDo.getUserId(),integralDO.getUserId(),parentAmount,logId,parentPtReplenish);
|
|
|
- }
|
|
|
+ if (!parentPtReplenish.equals(0L)) {
|
|
|
+ calcIntegral(parentPtReplenish, parentIntegralDo.getUserId(), JsonUtils.toJsonString(orderPercentageDO));
|
|
|
+ }
|
|
|
|
|
|
- if (!ptReplenish.equals(0L)) {
|
|
|
- calcIntegral(ptReplenish, integralDO.getUserId(), JsonUtils.toJsonString(orderPercentageDO));
|
|
|
- }
|
|
|
- if (!parentPtReplenish.equals(0L)) {
|
|
|
- calcIntegral(parentPtReplenish, parentIntegralDo.getUserId(), JsonUtils.toJsonString(orderPercentageDO));
|
|
|
+ if (!parentIntegralDo.getUserId().equals(PT_ID)) {
|
|
|
+ map.put(parentIntegralDo.getUserId(), parentAmount);
|
|
|
+ }
|
|
|
+ } else if (multiply.longValue() != 0) {
|
|
|
+
|
|
|
+ Long visitorEarnings = multiply.longValue();
|
|
|
+
|
|
|
+
|
|
|
+ PtProfitDO ptProfit = ptProfitService.getPtProfit();
|
|
|
+ ptProfit.setVisitorEarnings(ptProfit.getVisitorEarnings() + visitorEarnings);
|
|
|
+ ptProfit.setPtGrossAdd(ptProfit.getPtGrossAdd() - visitorEarnings);
|
|
|
+ ptProfitService.updatePtProfit(BeanUtils.toBean(ptProfit, PtProfitSaveReqVO.class));
|
|
|
+ ptIntegralDO.setCurrentQuota(ptIntegralDO.getCurrentQuota() - visitorEarnings);
|
|
|
+
|
|
|
+ ptProfitLogService.addMessage(parent, CaclEnum.AFTER_CRASH_CALC_PT_TOTAL_QUOTA
|
|
|
+ , -visitorEarnings, ptProfit.getPtTotalAdd() - visitorEarnings, JsonUtils.toJsonString(orderPercentageDO), null, null, null);
|
|
|
+ ptProfitLogService.addMessage(parent, CaclEnum.AFTER_CRASH_CALC_PT_TOTAL_GROSS_QUOTA
|
|
|
+ , -visitorEarnings, ptProfit.getPtGrossAdd(), JsonUtils.toJsonString(orderPercentageDO), null, null, null);
|
|
|
+
|
|
|
+
|
|
|
+ ptProfitLogService.addMessage(k.getUserId(), null ,CaclEnum.SMALL_QUOTA_CRASH_SETTLE, visitorEarnings, ptProfit.getVisitorEarnings()
|
|
|
+ , null, null, JsonUtils.toJsonString(orderPercentageDO),null, null);
|
|
|
}
|
|
|
|
|
|
-
|
|
|
- HashMap<Long, Long> map = new HashMap<>();
|
|
|
|
|
|
if (!k.getUserId().equals(PT_ID)) {
|
|
|
map.put(k.getUserId(), amount);
|
|
|
}
|
|
|
- if (!parentIntegralDo.getUserId().equals(PT_ID)) {
|
|
|
- map.put(parentIntegralDo.getUserId(), parentAmount);
|
|
|
- }
|
|
|
+
|
|
|
afterCrashMap.add(map);
|
|
|
|
|
|
log.info(k.getNickName() + "用户合赢奖已经计算: 该用户合赢奖为: \t" +
|
|
@@ -368,7 +403,7 @@ public class PartitionCrashServiceImpl implements PartitionCrashService {
|
|
|
|
|
|
|
|
|
PtProfitDO ptProfit = ptProfitService.getPtProfit();
|
|
|
- IntegralDO ptIntegralDO = integralService.selectByUser(PT_ID);
|
|
|
+
|
|
|
|
|
|
for (HashMap<Long, Long> longIntegerHashMap : afterCrashMap) {
|
|
|
for (Map.Entry<Long, Long> entry : longIntegerHashMap.entrySet()) {
|
|
@@ -538,7 +573,7 @@ public class PartitionCrashServiceImpl implements PartitionCrashService {
|
|
|
}
|
|
|
|
|
|
|
|
|
- public PartitionCrashDO crashYesterdayNo(Long userId,Integer yesterday) {
|
|
|
+ public PartitionCrashDO crashYesterdayNo(Long userId, Integer yesterday) {
|
|
|
LocalDateTime todayStart = LocalDateTime.of(LocalDate.now(), LocalTime.MIDNIGHT);
|
|
|
LocalDateTime localDateTime = todayStart.minusDays(yesterday);
|
|
|
String yesterdayString = "CRASH:" + userId + ":" + localDateTime;
|
|
@@ -549,8 +584,8 @@ public class PartitionCrashServiceImpl implements PartitionCrashService {
|
|
|
.apply("date(create_time) < date(now())")
|
|
|
);
|
|
|
|
|
|
- if(!partitionCrashDOS.isEmpty() && partitionCrashDO == null){
|
|
|
- return crashYesterdayNo(userId,++yesterday);
|
|
|
+ if (!partitionCrashDOS.isEmpty() && partitionCrashDO == null) {
|
|
|
+ return crashYesterdayNo(userId, ++yesterday);
|
|
|
}
|
|
|
|
|
|
return partitionCrashDO;
|