测试用户
2023-04-13 43393f2bb11cbf9e6af40077bbc5284660e8a754
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
package com.deloitte.system.service;
 
import cn.hutool.core.collection.CollUtil;
import cn.hutool.core.util.ObjectUtil;
import com.alibaba.fastjson.JSONArray;
import com.common.core.constant.GlobalConst;
import com.common.core.enums.ResultCodeEnum;
import com.common.core.exception.BizException;
import com.common.core.service.CryptoService;
import com.common.core.utils.*;
import com.common.redis.util.RedisUtil;
import com.deloitte.system.model.CacheList;
import com.deloitte.system.model.Opportunity;
import com.deloitte.system.model.Quotes;
import com.deloitte.system.request.OpportunityDto;
import com.deloitte.system.request.QuotesDto;
import com.jfinal.plugin.activerecord.Db;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
 
import java.util.ArrayList;
import java.util.List;
import java.util.stream.Collectors;
 
import static com.common.core.constant.GlobalConst.PIPL_UNCONFIRM_INSERT;
import static com.common.core.constant.GlobalConst.PIPL_UNCONFIRM_UPDATE;
 
@Service
public class OpportunityService {
    private String tableName = "opportunity";
 
    @Autowired
    private CryptoService cryptoService;
 
    @Autowired
    private IdUtils idWorker;
 
    @Autowired
    private RedisUtil redisUtil;
 
    public OpportunityDto queryForOne(String dataId) {
        Opportunity opportunity = Opportunity.dao.findById(dataId);
        if (!ObjectUtil.isEmpty(opportunity)) {
            return BeanHelper.copyAs(opportunity,OpportunityDto.class);
        }
        return null;
    }
 
    public List<OpportunityDto> insertList(List<OpportunityDto> opportunityList, String txId) {
        List<OpportunityDto> respList = new ArrayList<>();
        CacheList<OpportunityDto> dtoCacheList = new CacheList<>();
        dtoCacheList.setTableName(tableName);
        List<OpportunityDto> dtoItemList = new ArrayList<>();
        opportunityList.forEach(e -> {
            String dataId = idWorker.nextId();
            OpportunityDto cacheItem = BeanHelper.copyAs(e, OpportunityDto.class);
            cacheItem.setDataId(dataId);
            dtoItemList.add(cacheItem);
 
            OpportunityDto target = BeanHelper.copyAs(e, OpportunityDto.class);
            target.setDataId(dataId);
            OpportunityDto dto = cryptoService.encryptModelColumns(e);
            dto.setDataId(dataId);
            target.setDealerServiceDEncrypt(dto.getDealerServiceD());
            target.setDealerServiceEncrypt(dto.getDealerService());
            target.setDealerSalesStaffNameDEncrypt(dto.getDealerSalesStaffNameD());
            target.setDealerSalesStaffNameEncrypt(dto.getDealerSalesStaffName());
            target.setExpectedDeliveryDateEncrypt(dto.getExpectedDeliveryDate());
            target.setSalesAccountCodeEncrypt(dto.getSalesAccountCode());
            target.setSpecialDeliveryAddressEncrypt(dto.getSpecialDeliveryAddress());
            DesensitiveUtils.format(target);
            respList.add(target);
        });
        dtoCacheList.setData(dtoItemList);
        String insertJsonString = JSONArray.toJSONString(dtoCacheList);
        String insertKey = PIPL_UNCONFIRM_INSERT + txId;
        boolean redisFlag = redisUtil.set(insertKey, insertJsonString, GlobalConst.DATA_EXPIRE);
        if (!redisFlag) {
            throw new BizException("缓存写入失败");
        }
        return respList;
    }
 
    public List<OpportunityDto> updateList(List<OpportunityDto> opportunityList, String txId) {
        List<OpportunityDto> respList = new ArrayList<>();
        CacheList<OpportunityDto> dtoCacheList = new CacheList<>();
        dtoCacheList.setTableName(tableName);
        List<OpportunityDto> dtoItemList = new ArrayList<>();
        opportunityList.forEach(e -> {
            Opportunity opportunity = Opportunity.dao.findById(e.getDataId());
            OpportunityDto cacheItem = BeanHelper.copyAs(e, OpportunityDto.class);
            dtoItemList.add(cacheItem);
            OpportunityDto dto = BeanHelper.copyAs(BeanHelper.copy(cacheItem,opportunity),OpportunityDto.class);
            OpportunityDto target = BeanHelper.copyAs(dto, OpportunityDto.class);
             dto = cryptoService.encryptModelColumns(dto);
            target.setDealerServiceDEncrypt(dto.getDealerServiceD());
            target.setDealerServiceEncrypt(dto.getDealerService());
            target.setDealerSalesStaffNameDEncrypt(dto.getDealerSalesStaffNameD());
            target.setDealerSalesStaffNameEncrypt(dto.getDealerSalesStaffName());
            target.setExpectedDeliveryDateEncrypt(dto.getExpectedDeliveryDate());
            target.setSalesAccountCodeEncrypt(dto.getSalesAccountCode());
            target.setSpecialDeliveryAddressEncrypt(dto.getSpecialDeliveryAddress());
            DesensitiveUtils.format(target);
            respList.add(target);
        });
        dtoCacheList.setData(dtoItemList);
        String updateJsonString = JSONArray.toJSONString(dtoCacheList);
        String updateKey = PIPL_UNCONFIRM_UPDATE + txId;
        boolean redisFlag = redisUtil.set(updateKey, updateJsonString,GlobalConst.DATA_EXPIRE);
        if (!redisFlag) {
            throw new BizException("缓存写入失败");
        }
        return respList;
    }
 
    public Boolean deleteOne(String dataId) {
        Opportunity opportunity = Opportunity.dao.findById(dataId);
        opportunity.setIsDelete(1);
        return opportunity.saveOrUpdate();
    }
 
    public Boolean undeleteOne(String dataId) {
        Opportunity opportunity = Opportunity.dao.findById(dataId);
        opportunity.setIsDelete(0);
        return opportunity.saveOrUpdate();
    }
 
    public List<OpportunityDto> search(List<String> idList){
        if (CollUtil.isEmpty(idList)) {
            return null;
        }
        StringBuilder queryParam = new StringBuilder();
        queryParam.append("and id in ").append(idList.stream().collect(Collectors.joining(", ", "(", ")")));
        List<Opportunity> quotesList = Opportunity.dao.findList(queryParam.toString());
        return quotesList.stream()
                .map(quotes -> BeanHelper.copyAs(quotes, OpportunityDto.class)).collect(Collectors.toList());
 
    }
 
    public List<OpportunityDto> decryptUpdate(List<OpportunityDto> opportunityList) {
        List<OpportunityDto> respList =new ArrayList<>();
        String[] decryptColumn =new String[]{"expected_delivery_date","sales_account_code","special_delivery_address","dealer_service_d","dealer_service","dealer_sales_staff_name_d","dealer_sales_staff_name"};
        Db.tx(() -> {
            for (OpportunityDto e : opportunityList) {
                Opportunity opportunity =Opportunity.dao.findById(e.getDataId());
                if (opportunity == null) {
                    throw new BizException("无效的DataId");
                }
                Opportunity item=new Opportunity();
                BeanHelper.copyEncrypt(e, item);
                cryptoService.decryptoColumnModel(item,decryptColumn);
                BeanHelper.copy(item, opportunity);
                opportunity.setSfRecordId(e.getSfRecordId());
                if (!opportunity.saveOrUpdate()) {
                    throw new BizException(ResultCodeEnum.RT_ERROR);
                }
 
                respList.add(e);
            }
            return true;
        });
        return respList;
    }
 
    public List<OpportunityDto> decryptInsert(List<OpportunityDto> opportunityList) {
 
        List<OpportunityDto> respList =new ArrayList<>();
        Db.tx(() -> {
            for (OpportunityDto e : opportunityList) {
                Opportunity opportunity = new Opportunity();
                String dataId =idWorker.nextId();
                BeanHelper.copyEncrypt(e, opportunity);
                cryptoService.decryptoModel(opportunity);
                opportunity.setSfRecordId(e.getSfRecordId());
                opportunity.setDataId(Long.valueOf(dataId));
                if(!opportunity.save()) {
                    throw new BizException(ResultCodeEnum.RT_ERROR);
                }
                e.setDataId(dataId);
                respList.add(e);
            }
            return true;
        });
        return respList;
    }
 
}