935090232@qq.com
2021-06-06 e83f7fa1f5648745940863444fed16f7f9135ce7
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
package com.matrix.system.hive.service.imp;
 
import com.matrix.core.constance.MatrixConstance;
import com.matrix.core.exception.GlobleException;
import com.matrix.core.pojo.PaginationVO;
import com.matrix.core.tools.WebUtil;
import com.matrix.system.common.bean.SysUsers;
import com.matrix.system.constance.Dictionary;
import com.matrix.system.hive.bean.*;
import com.matrix.system.hive.dao.*;
import com.matrix.core.tools.DateUtil;
import com.matrix.system.hive.plugin.util.MoneyUtil;
import com.matrix.system.hive.service.MoneyCardUseService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
 
import java.text.DecimalFormat;
import java.util.Date;
import java.util.List;
 
 
/**
 * @date 2016-09-17 10:17
 */
@Service("moneyCardUseService")
public class MoneyCardUseServiceImpl implements MoneyCardUseService {
 
 
    @Autowired
    private MoneyCardUseDao moneyCardUseDao;
 
    @Autowired
    private MoneyCardUseFreezeDao moneyCardUseFreezeDao;
 
 
    @Autowired
    private SysVipInfoDao infoDao;
    @Autowired
    private SysOrderItemDao orderItemDao;
 
    @Autowired
    private SysVipLevelDao viplevelDao;
 
 
 
 
 
    @Override
    public int add(MoneyCardUse moneyCardUse) {
 
        return moneyCardUseDao.insert(moneyCardUse);
 
    }
 
    @Override
    public int modify(MoneyCardUse moneyCardUse) {
 
        return moneyCardUseDao.update(moneyCardUse);
 
    }
 
    @Override
    public int remove(List<Long> list) {
 
        return moneyCardUseDao.deleteByIds(list);
 
    }
 
    @Override
    public int removeById(Long id) {
 
        return moneyCardUseDao.deleteById(id);
 
    }
 
    @Override
    public List<MoneyCardUse> findInPage(MoneyCardUse moneyCardUse, PaginationVO pageVo) {
 
        return moneyCardUseDao.selectInPage(moneyCardUse, pageVo);
 
    }
 
    @Override
    public List<MoneyCardUse> findByModel(MoneyCardUse moneyCardUse) {
 
        return moneyCardUseDao.selectByModel(moneyCardUse);
 
    }
 
    @Override
    public int findTotal(MoneyCardUse moneyCardUse) {
 
        return moneyCardUseDao.selectTotalRecord(moneyCardUse);
 
    }
 
    @Override
    public MoneyCardUse findById(Long id) {
        return moneyCardUseDao.selectById(id);
 
    }
 
    @Override
    public MoneyCardUse findByVipId(Long id) {
        return moneyCardUseDao.selectVipCard(id);
    }
 
    @Override
    public List<MoneyCardUse> findVipCardUseInPage(MoneyCardUse moneyCardUse, PaginationVO pageVo) {
        return moneyCardUseDao.selectVipCardUseInPage(moneyCardUse, pageVo);
    }
 
    @Override
    public List<MoneyCardUse> findVipCardUse(MoneyCardUse moneyCardUse) {
        return moneyCardUseDao.selectVipCardUse(moneyCardUse);
    }
 
    @Override
    public Integer findTotalVipCardUse(MoneyCardUse moneyCardUse) {
        return moneyCardUseDao.selectVipCardUseTotal(moneyCardUse);
    }
 
    @Override
    @Transactional(rollbackFor = Exception.class)
    public int freeze(MoneyCardUse moneyCardUse) {
        // 态为有效的才能冻结
        MoneyCardUse moneyCard = moneyCardUseDao.selectById(moneyCardUse.getId());
        if (!moneyCard.getStatus().equals(Dictionary.TAOCAN_STATUS_YX)) {
            throw new GlobleException("不是有效充值卡");
        }
 
        // 将充值卡的状态改为冻结
        moneyCard.setStatus(Dictionary.TAOCAN_STATUS_DJ);
        moneyCardUseDao.update(moneyCard);
        // 冻结记录
        MoneyCardUseFreeze freeze = new MoneyCardUseFreeze();
        freeze.setFreezeTime(new Date());
        freeze.setCardUseId(moneyCard.getId());
        ;
        MoneyCardUseFreeze getfreeze = moneyCardUseFreezeDao.selectByMoneyCardUseId(moneyCard.getId());
 
        //更新会员等级
        moneyCard.getVipInfo().setLevelId(0L);
        infoDao.update(moneyCard.getVipInfo());
 
        int i = 0;
        if (getfreeze != null) {
            freeze.setId(getfreeze.getId());
            i = moneyCardUseFreezeDao.update(freeze);
        } else {
            i = moneyCardUseFreezeDao.insert(freeze);
        }
        //记录流水
        String content = moneyCard.getCardName() + "冻结";
        return i;
    }
 
    //转让充值卡
    @Override
    @Transactional(rollbackFor = Exception.class)
    public void transfer(MoneyCardUse moneyCardUse, Long vipId2, Double money) {
        Long oldId = moneyCardUse.getId();
        moneyCardUse = moneyCardUseDao.selectById(moneyCardUse.getId());
        if (moneyCardUse.getVipId().equals(vipId2)) {
            throw new GlobleException("转让人不能是该充值卡拥有者!");
        }
        System.out.println("id ====== " + moneyCardUse.getId());
        // 查询要转让的充值卡
        MoneyCardUse getObj = moneyCardUseDao.selectById(moneyCardUse.getId());
 
        //检测商品是否已付款完成
        if (getObj.getOrderItemId() != 1) {//不是数据迁移过来的判断付款状态
            checkOrderStatu(getObj.getOrderItemId());
        }
 
        if (!(getObj.getStatus().equals(Dictionary.TAOCAN_STATUS_YX))) {
            throw new GlobleException("不是有效的充值卡!");
        }
        SysVipInfo info = infoDao.selectById(vipId2);
 
        if (money >= getObj.getRealMoney()) {//如果全部转让出去
            //更新状态
            moneyCardUse.setStatus(Dictionary.TAOCAN_SOURCE_ZR);
            moneyCardUseDao.update(moneyCardUse);
        }
 
        //更新会员等级
        getObj.getVipInfo().setLevelId(0L);
        infoDao.update(getObj.getVipInfo());
        //新增转让流水
        StringBuilder content = new StringBuilder();
 
        content.append(getObj.getCardName() + "转让给会员" + getObj.getCardName());
 
 
        MoneyCardUse infoCard = moneyCardUseDao.selectVipCard(info.getId());
        //清空content
 
 
        //判断会员没有会籍卡,或者该充值卡不为会籍卡
        if (infoCard == null || Dictionary.FLAG_YES_Y.equals(getObj.getIsVipCar())) {
            //添加一条接受转让的记录到充值卡使用情况表中
 
            if (!getObj.getSource().contains(Dictionary.TAOCAN_STATUS_ZR)) {
                getObj.setSource(getObj.getSource() + Dictionary.TAOCAN_STATUS_ZR);
            }
            getObj.setVipId(vipId2);
            getObj.setId(null);
            content = new StringBuilder();
            moneyCardUseDao.insert(getObj);
            content.append("获取会员" + getObj.getVipInfo().getVipName() + "的" + getObj.getCardName())
                    .append(",余次:" + getObj.getLastCountName())
                    .append(",本金余额:" + getObj.getRealMoney())
                    .append(",有效期:" + DateUtil.dateToString(getObj.getFailTime(), DateUtil.DATE_FORMAT_MM))
                    .append(",是否赠送:" + getObj.getSourceName());
        }
    }
 
 
 
    //设置为有效
    @Override
    public void active(MoneyCardUse proj) {
 
        proj.setStatus(Dictionary.TAOCAN_STATUS_YX);
        if (Dictionary.FLAG_YES_Y.equals(proj.getIsVipCar())) {
            MoneyCardUse cardUse = moneyCardUseDao.selectVipCard(proj.getVipId());
            if (cardUse != null && !cardUse.getId().equals(proj.getId())) {
                throw new GlobleException("该会员已经存在有效的会籍卡!");
            }
        }
        moneyCardUseDao.update(proj);
        StringBuilder content = new StringBuilder();
        content.append(proj.getCardName() + "设置有效");
    }
 
    //设置为失效
    @Override
    public void invalid(MoneyCardUse proj) {
 
        proj.setStatus(Dictionary.TAOCAN_STATUS_WX);
        moneyCardUseDao.update(proj);
        StringBuilder content = new StringBuilder();
        content.append(proj.getCardName() + "设置失效");
    }
 
    /**
     * 检测订单条目是否已付款完毕
     */
    public void checkOrderStatu(Long id) {
        SysOrderItem item = orderItemDao.selectById(id);
        if (!Dictionary.ORDER_STATU_YFK.equals(item.getStatus())) {
            throw new GlobleException("该商品还存在欠款!");
        }
    }
 
}