Pu Zhibing
2 天以前 e809f5955584e600d8612540ea814977c49774c2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
package com.stylefeng.guns.modular.system.service.impl;
 
import cn.hutool.system.UserInfo;
import com.baomidou.mybatisplus.mapper.EntityWrapper;
import com.baomidou.mybatisplus.mapper.Wrapper;
import com.stylefeng.guns.core.util.ToolUtil;
import com.stylefeng.guns.modular.system.model.*;
import com.stylefeng.guns.modular.system.dao.TDriverPromotionActivityMapper;
import com.stylefeng.guns.modular.system.service.*;
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
 
import java.math.BigDecimal;
import java.text.SimpleDateFormat;
import java.util.*;
import java.util.stream.Collectors;
 
/**
 * <p>
 * 司机推广活动主表 服务实现类
 * </p>
 *
 * @author stylefeng
 * @since 2025-07-31
 */
@Service
public class TDriverPromotionActivityServiceImpl extends ServiceImpl<TDriverPromotionActivityMapper, TDriverPromotionActivity> implements ITDriverPromotionActivityService {
 
    @Autowired
    private ITDriverService driverService;
    @Autowired
    private ITUserService userService;
    @Autowired
    private ITOrderPrivateCarService orderPrivateCarService;
    @Autowired
    private ITOrderTaxiService orderTaxiService;
    @Autowired
    private ITOrderCrossCityService orderCrossCityService;
 
    @Override
    public Object list(String beginTime, String endTime, String name, Integer status) {
        return this.baseMapper.list(beginTime, endTime, name, status);
    }
 
    @Override
    public List<DriverRankVo> list1(Long id, String driverName) {
        List<DriverRankVo> driverPromotionActivity = orderPrivateCarService.getDriverPromotionActivity(id.intValue(), driverName);
        return driverPromotionActivity;
    }
 
    @Override
    public  ArrayList<HashMap<String, Object>> list2(Long driverId, String name) {
        ArrayList<HashMap<String, Object>> hashMaps = new ArrayList<>();
 
        Wrapper<TUser> gt = new EntityWrapper<TUser>().eq("bindDriverId", driverId).gt("bindExpireDate", new Date());
        if (name != null && !"".equals(name)) {
            gt.like("nickName", name);
        }
 
        // 获取所有获得司机收益的订单
        List<TOrderPrivateCar> tOrderPrivateCars = orderPrivateCarService.selectList(new EntityWrapper<TOrderPrivateCar>().eq("promotionDriverId",driverId).isNotNull("successTime"));
        List<TOrderTaxi> tOrderTaxis = orderTaxiService.selectList(new EntityWrapper<TOrderTaxi>().eq("promotionDriverId",driverId).isNotNull("successTime"));
        List<TOrderCrossCity> tOrderCrossCities = orderCrossCityService.selectList(new EntityWrapper<TOrderCrossCity>().eq("promotionDriverId",driverId).isNotNull("successTime"));
 
        // 找出绑定这个司机的用户
        List<TUser> tUsers = userService.selectList(gt);
        SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        for (TUser tUser : tUsers) {
            HashMap<String, Object> map = new HashMap<>();
            map.put("userId", tUser.getId());
            map.put("userName", tUser.getNickName());
            map.put("userPhone", tUser.getPhone());
            map.put("bindDate",simpleDateFormat.format( tUser.getBindDate()));
            map.put("bindExpireDate",simpleDateFormat.format( tUser.getBindExpireDate()));
            BigDecimal reduce = tOrderPrivateCars.stream().filter(e -> e.getUserId().equals(tUser.getId())).map(TOrderPrivateCar::getPromotionMoney).reduce(BigDecimal.ZERO, BigDecimal::add);
            BigDecimal reduce1 = tOrderTaxis.stream().filter(e -> e.getUserId().equals(tUser.getId())).map(TOrderTaxi::getPromotionMoney).reduce(BigDecimal.ZERO, BigDecimal::add);
            BigDecimal reduce2 = tOrderCrossCities.stream().filter(e -> e.getUserId().equals(tUser.getId())).map(TOrderCrossCity::getPromotionMoney).reduce(BigDecimal.ZERO, BigDecimal::add);
            map.put("money", reduce.add(reduce1).add(reduce2));
            hashMaps.add( map);
        }
        return hashMaps;
    }
}