admin
2019-10-11 ee88b54979c633a4ade518d4c124a2d07d378562
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
package com.yeshi.fanli.service.impl.count;
 
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.List;
 
import javax.annotation.Resource;
 
import org.apache.commons.beanutils.PropertyUtils;
import org.springframework.stereotype.Service;
 
import com.yeshi.fanli.dao.mybatis.user.UserSystemCouponCountMapper;
import com.yeshi.fanli.dto.ChartTDO;
import com.yeshi.fanli.entity.bus.user.UserInfo;
import com.yeshi.fanli.entity.bus.user.UserSystemCoupon;
import com.yeshi.fanli.entity.bus.user.UserSystemCouponRecord;
import com.yeshi.fanli.entity.system.SystemCoupon.CouponTypeEnum;
import com.yeshi.fanli.service.inter.config.SystemCouponService;
import com.yeshi.fanli.service.inter.count.HongBaoV2CountService;
import com.yeshi.fanli.service.inter.count.UserSystemCouponCountService;
import com.yeshi.fanli.service.inter.order.CommonOrderCountService;
import com.yeshi.fanli.service.inter.order.OrderHongBaoMapService;
import com.yeshi.fanli.service.inter.user.UserInfoService;
import com.yeshi.fanli.vo.user.SystemCouponVO;
import com.yeshi.fanli.vo.user.UserSystemCouponCountVO;
 
@Service
public class UserSystemCouponCountServiceImpl implements UserSystemCouponCountService {
 
 
    @Resource
    private UserSystemCouponCountMapper userSystemCouponCountMapper;
 
    @Resource
    private UserInfoService userInfoService;
    
    @Resource
    private OrderHongBaoMapService orderHongBaoMapService;
    
    @Resource
    private CommonOrderCountService commonOrderCountService;
    
    @Resource
    private HongBaoV2CountService hongBaoV2CountService;
    
    @Resource
    private SystemCouponService systemCouponService;
    
    /**
     * 奖励券统计
     */
    @Override
    public List<UserSystemCouponCountVO> listRebateCoupon(long start,int count, String key, Integer keyType,
             Integer state,  Integer percent){
        
        List<UserSystemCouponCountVO> list = userSystemCouponCountMapper.listRebateCoupon(start, count, key,
                keyType, state, percent);
        
        if (list == null ) {
            list = new ArrayList<UserSystemCouponCountVO>();
        }
        
        for (UserSystemCouponCountVO userSystemCouponVO: list) {
            // 用户信息
            Long uid = userSystemCouponVO.getUid();
            UserInfo userInfo = userInfoService.selectByPKey(uid);
            if (userInfo == null) {
                userInfo = new UserInfo();
                userInfo.setId(uid);
            }
            userSystemCouponVO.setUserInfo(userInfo);
            
            UserSystemCouponRecord couponRecord = userSystemCouponVO.getUserSystemCouponRecord();
            if (couponRecord != null) {
                String orderNo = couponRecord.getOrderNo();
                // 获取奖励金额
                BigDecimal royaltyMoney = orderHongBaoMapService.getCouponHongbaoByOrderNo(orderNo, uid);
                if (royaltyMoney == null) {
                    royaltyMoney = new BigDecimal(0);
                }
                userSystemCouponVO.setRoyaltyMoney(royaltyMoney);
                
                BigDecimal orderMoney = commonOrderCountService.getMoneyByOrderNo(orderNo);
                if (orderMoney == null) {
                    orderMoney = new BigDecimal(0);
                }
                userSystemCouponVO.setOrderMoney(orderMoney);
                
            }
        }
        
        return list;
    }
    
    @Override
    public long countRebateCoupon(String key, Integer keyType,  Integer state, Integer percent){
        return userSystemCouponCountMapper.countRebateCoupon(key, keyType, state, percent);
    }
    
    
    /**
     * 系统奖励券统计
     */
    @Override
    public List<SystemCouponVO> listSystemCouponByRebate(long start,int count, String key, Integer sort){
        
        List<SystemCouponVO> list = userSystemCouponCountMapper.listSystemCouponByRebate(start, count, key, sort);
        
        if (list == null ) {
            list = new ArrayList<SystemCouponVO>();
        }
        
        for (SystemCouponVO systemCouponVO: list) {
            
            BigDecimal money = userSystemCouponCountMapper.countRebateMoneyByCouponId(systemCouponVO.getId());
            if (money == null) {
                money = new BigDecimal(0);
            }
            systemCouponVO.setMoney(money);
        }
        return list;
    }
    
    @Override
    public long countSystemCouponRebate(String key){
        return userSystemCouponCountMapper.countSystemCouponRebate(key);
    }
    
    
    /**
     * 系统免单券统计
     */
    @Override
    public List<SystemCouponVO> listSystemCouponByFree(long start,int count, String key, Integer sort){
        
        List<SystemCouponVO> list = userSystemCouponCountMapper.listSystemCouponByFree(start, count, key, sort);
        
        if (list == null ) {
            list = new ArrayList<SystemCouponVO>();
        }
        
        for (SystemCouponVO systemCouponVO: list) {
            BigDecimal money  = null;
            if (systemCouponVO.getType() != CouponTypeEnum.freeCouponGive) 
                money = userSystemCouponCountMapper.countFreeMoneyByCouponId(systemCouponVO.getId());
            
            if (money == null) 
                money = new BigDecimal(0);
            
            systemCouponVO.setMoney(money);
        }
        return list;
    }
    
    @Override
    public long countSystemCouponFree(String key){
        return userSystemCouponCountMapper.countSystemCouponFree(key);
    }
    
    
    
    @Override
    public List<UserSystemCouponCountVO> listFreeCoupon(long start,int count, String key, Integer keyType,
             Integer state, Integer activated){
        
        List<UserSystemCouponCountVO> list = userSystemCouponCountMapper.listFreeCoupon(start, count, key,
                keyType, state, activated);
        
        if (list == null ) {
            list = new ArrayList<UserSystemCouponCountVO>();
        }
        
        for (UserSystemCouponCountVO userSystemCouponVO: list) {
            // 用户信息
            Long uid = userSystemCouponVO.getUid();
            UserInfo userInfo = userInfoService.selectByPKey(uid);
            if (userInfo == null) {
                userInfo = new UserInfo();
                userInfo.setId(uid);
            }
            userSystemCouponVO.setUserInfo(userInfo);
            
            UserSystemCouponRecord couponRecord = userSystemCouponVO.getUserSystemCouponRecord();
            if (couponRecord != null) {
                String orderNo = couponRecord.getOrderNo();
                BigDecimal orderMoney = commonOrderCountService.getMoneyByOrderNo(orderNo);
                if (orderMoney == null) {
                    orderMoney = new BigDecimal(0);
                }
                userSystemCouponVO.setOrderMoney(orderMoney);
            }
        }
        
        return list;
    }
    
    
    @Override
    public long countFreeCoupon(String key, Integer keyType,  Integer state,Integer activated){
        return userSystemCouponCountMapper.countFreeCoupon(key, keyType, state, activated);
    }
    
    
    @Override
    public List<UserSystemCouponCountVO> listFreeCouponRecord(long start,int count, String key, Integer keyType,
             Integer state){
        
        List<UserSystemCouponRecord> list = userSystemCouponCountMapper.listFreeCouponRecord(start, count, key,
                keyType, state);
        
        if (list == null || list.size() == 0) {
            return null;
        }
        
        List<UserSystemCouponCountVO> listvo = new ArrayList<UserSystemCouponCountVO>();
        
        for (UserSystemCouponRecord couponRecord: list) {
            
            UserSystemCouponCountVO vo = new UserSystemCouponCountVO();
            UserSystemCoupon userSystemCoupon = couponRecord.getUserSystemCoupon();
            try {
                PropertyUtils.copyProperties(vo, userSystemCoupon);
            } catch (Exception e) {
                e.printStackTrace();
            }
            
            vo.setUserSystemCouponRecord(couponRecord);
            
//            SystemCoupon systemCoupon = userSystemCoupon.getSystemCoupon();
//            SystemCoupon baseCoupon = systemCouponService.selectByPrimaryKey(systemCoupon.getId());
//            if (baseCoupon == null || baseCoupon.getId() == null) {
//                continue;
//            }
//            vo.setSystemCoupon(baseCoupon);
            
            // 用户信息
            Long uid = userSystemCoupon.getUid();
            UserInfo userInfo = userInfoService.selectByPKey(uid);
            if (userInfo == null) {
                userInfo = new UserInfo();
                userInfo.setId(uid);
            }
            vo.setUserInfo(userInfo);
            
            String orderNo = couponRecord.getOrderNo();
            BigDecimal orderMoney = commonOrderCountService.getMoneyByOrderNo(orderNo);
            if (orderMoney == null) {
                orderMoney = new BigDecimal(0);
            }
            vo.setOrderMoney(orderMoney);
                
            listvo.add(vo);
        }
        return listvo;
    }
    
    
    @Override
    public long countFreeCouponRecord(String key, Integer keyType,  Integer state){
        return userSystemCouponCountMapper.countFreeCouponRecord(key, keyType, state);
    }
    
    
    @Override
    public List<ChartTDO> getRebateCouponUsedNumToCharts(Integer dateType,  String year, 
            String startTime, String endTime){
        return userSystemCouponCountMapper.getRebateCouponUsedNumToCharts(dateType, year, startTime, endTime);
    }
    
    @Override
    public List<ChartTDO> getRebateCouponMoneyToCharts(Integer dateType,  String year, 
            String startTime, String endTime){
        return userSystemCouponCountMapper.getRebateCouponMoneyToCharts(dateType, year, startTime, endTime);
    }
    
    @Override
    public List<ChartTDO> getFreeCouponMoneyToCharts(Integer dateType,  String year, String startTime, 
            String endTime, String couponType){
        return userSystemCouponCountMapper.getFreeCouponMoneyToCharts(dateType, year, startTime, endTime, couponType);
    }
    
}