|
@@ -788,7 +788,18 @@ public class WorkerLogic {
|
|
List<String> collect = websitUsers.stream()
|
|
List<String> collect = websitUsers.stream()
|
|
.map(WebsitUser::getWebsitId).collect(Collectors.toList());
|
|
.map(WebsitUser::getWebsitId).collect(Collectors.toList());
|
|
|
|
|
|
- List<PolicyWebsit> policyWebsits = policyWebsitService.lambdaQuery().in(PolicyWebsit::getWebsitId,collect ).list();
|
|
|
|
|
|
+ List<Policy> policies = policyService.lambdaQuery().eq(Policy::getType, "DS")
|
|
|
|
+ .ge(Policy::getEndTime, new Date())
|
|
|
|
+ .list();
|
|
|
|
+
|
|
|
|
+ if (CollectionUtils.isEmpty(policies))
|
|
|
|
+ return new ArrayList<>();
|
|
|
|
+
|
|
|
|
+ List<PolicyWebsit> policyWebsits = policyWebsitService.lambdaQuery()
|
|
|
|
+ .in(PolicyWebsit::getWebsitId,collect )
|
|
|
|
+ .in(PolicyWebsit::getPolicyId,policies.stream()
|
|
|
|
+ .map(Policy::getId).collect(Collectors.toList()) )
|
|
|
|
+ .list();
|
|
|
|
|
|
if (CollectionUtils.isEmpty(policyWebsits))
|
|
if (CollectionUtils.isEmpty(policyWebsits))
|
|
return new ArrayList<>();
|
|
return new ArrayList<>();
|
|
@@ -804,8 +815,14 @@ public class WorkerLogic {
|
|
|
|
|
|
if (policy == null)
|
|
if (policy == null)
|
|
return new ArrayList<>();
|
|
return new ArrayList<>();
|
|
|
|
+
|
|
|
|
+
|
|
for (WebsitUser websitUser : websitUsers) {
|
|
for (WebsitUser websitUser : websitUsers) {
|
|
|
|
|
|
|
|
+ if ( policyWebsits.stream().filter(item ->item.getWebsitId().equals(websitUser.getWebsitId())).count() <1) {
|
|
|
|
+ continue;
|
|
|
|
+ }
|
|
|
|
+
|
|
if ( policyOrderService.lambdaQuery()
|
|
if ( policyOrderService.lambdaQuery()
|
|
.eq(PolicyOrder::getWebsitUserId,websitUser.getId())
|
|
.eq(PolicyOrder::getWebsitUserId,websitUser.getId())
|
|
.eq(PolicyOrder::getType,"DS")
|
|
.eq(PolicyOrder::getType,"DS")
|