bugfix 小程序查询站点计费模板未筛选出非会员价

This commit is contained in:
Lemon
2025-03-24 09:48:52 +08:00
parent 2c8188a17a
commit 584d8ee6b7
2 changed files with 15 additions and 10 deletions

View File

@@ -632,6 +632,7 @@ public class PileBillingTemplateServiceImpl implements PileBillingTemplateServic
Optional<BillingTemplateVO> max = list.stream()
.filter(x -> StringUtils.equals(x.getDeviceType(), Constants.ONE)) // 过滤出汽车桩的计费模板
.filter(x -> StringUtils.isNotBlank(x.getPublishTime()))
.filter(x -> StringUtils.equals(Constants.ZERO, x.getMemberFlag())) // 过滤出非会员价格
.max(Comparator.comparing(BillingTemplateVO::getPublishTime));
return max.orElse(null);
}