From e0623f1a914ecbc99d5926c0df3cf26032c02499 Mon Sep 17 00:00:00 2001
From: Pu Zhibing <393733352@qq.com>
Date: 星期三, 01 一月 2025 17:11:50 +0800
Subject: [PATCH] Merge branch 'master' of http://120.76.84.145:10101/gitblit/r/java/qijisheng

---
 ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/service/impl/ShopPointServiceImpl.java |   41 +++++++++++++++++++++++++++++++++++++++++
 1 files changed, 41 insertions(+), 0 deletions(-)

diff --git a/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/service/impl/ShopPointServiceImpl.java b/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/service/impl/ShopPointServiceImpl.java
index f9e435f..230aa4a 100644
--- a/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/service/impl/ShopPointServiceImpl.java
+++ b/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/service/impl/ShopPointServiceImpl.java
@@ -1,5 +1,6 @@
 package com.ruoyi.other.service.impl;
 
+import com.baomidou.mybatisplus.core.conditions.update.LambdaUpdateWrapper;
 import com.baomidou.mybatisplus.core.metadata.IPage;
 import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
 import com.ruoyi.other.api.domain.ShopPoint;
@@ -9,6 +10,10 @@
 import com.ruoyi.other.vo.ShopPointStatistics;
 import org.springframework.stereotype.Service;
 
+import java.time.LocalDateTime;
+import java.time.format.DateTimeFormatter;
+import java.util.ArrayList;
+import java.util.HashMap;
 import java.util.List;
 import java.util.Map;
 import java.util.stream.Collectors;
@@ -45,6 +50,42 @@
         IPage<ShopPoint> shopPointIPage = this.baseMapper.queryShpointPage(page, shopPoint);
         shopPointStatistics.setShopPointIPage(shopPointIPage);
 
+        LocalDateTime startTime = shopPoint.getStartTime();
+        LocalDateTime endTime = shopPoint.getEndTime();
+        if(null != startTime){
+            List<ShopPoint> list = this.list(new LambdaUpdateWrapper<ShopPoint>().eq(ShopPoint::getShopId, shopPoint.getShopId())
+                    .last(" and create_time between '" + startTime.format(DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss")) + "' and '" + endTime.format(DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss")) + "'"));
+            List<String> date = new ArrayList<>();
+            List<Map<String, Integer>> data = new ArrayList<>();
+            String format = "MM.dd";
+            while (true){
+                if(startTime.isAfter(endTime)){
+                    break;
+                }
+                date.add(startTime.format(DateTimeFormatter.ofPattern(format)));
+                Map<String, Integer> map = new HashMap<>();
+                //返佣积分
+                LocalDateTime finalStartTime = startTime;
+                List<ShopPoint> collect = list.stream().filter(s -> s.getCreateTime().format(DateTimeFormatter.ofPattern("yyyy-MM-dd"))
+                        .equals(finalStartTime.format(DateTimeFormatter.ofPattern("yyyy-MM-dd"))) && s.getType() == 2).collect(Collectors.toList());
+                map.put("fyjf", collect.stream().mapToInt(ShopPoint::getVariablePoint).sum());
+
+                //服务积分
+                List<ShopPoint> collect1 = list.stream().filter(s -> s.getCreateTime().format(DateTimeFormatter.ofPattern("yyyy-MM-dd"))
+                        .equals(finalStartTime.format(DateTimeFormatter.ofPattern("yyyy-MM-dd"))) && s.getType() == 4).collect(Collectors.toList());
+                map.put("fwjf", collect1.stream().mapToInt(ShopPoint::getVariablePoint).sum());
+                //绑定下级门店返佣积分
+                List<ShopPoint> collect2 = list.stream().filter(s -> s.getCreateTime().format(DateTimeFormatter.ofPattern("yyyy-MM-dd"))
+                        .equals(finalStartTime.format(DateTimeFormatter.ofPattern("yyyy-MM-dd"))) && s.getType() == 3).collect(Collectors.toList());
+                map.put("xjmdfyjf", collect2.stream().mapToInt(ShopPoint::getVariablePoint).sum());
+                data.add(map);
+                startTime = startTime.plusDays(1);
+            }
+            Map<String, Object> brokenLine = new HashMap<>();
+            brokenLine.put("date", date);
+            brokenLine.put("data", data);
+            shopPointStatistics.setBrokenLine(brokenLine);
+        }
         return shopPointStatistics;
     }
 }

--
Gitblit v1.7.1