houzhongjian
2024-07-23 a6de490948278991e47952e90671ddba4555e9a2
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
package com.iailab.module.data.ind.service.impl;
 
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.iailab.framework.common.constant.Constant;
import com.iailab.module.data.common.enums.CommonConstant;
import com.iailab.module.data.common.enums.IsEnableEnum;
import com.iailab.framework.common.page.PageData;
import com.iailab.framework.common.service.impl.BaseServiceImpl;
import com.iailab.framework.common.util.object.ConvertUtils;
import com.iailab.module.data.ind.dto.IndItemAtomDTO;
import com.iailab.module.data.ind.service.IndItemCalService;
import com.iailab.module.data.ind.service.IndItemService;
import com.iailab.module.data.ind.common.IndItemTypeEnum;
import com.iailab.module.data.ind.dao.IndItemDao;
import com.iailab.module.data.ind.dto.IndItemCalDTO;
import com.iailab.module.data.ind.dto.IndItemDTO;
import com.iailab.module.data.ind.entity.IndItemEntity;
import com.iailab.module.data.ind.service.IndItemAtomService;
import org.apache.commons.lang3.StringUtils;
import javax.annotation.Resource;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import org.springframework.util.CollectionUtils;
 
import java.util.*;
 
/**
 * @author PanZhibao
 * @Description
 * @createTime 2024年05月25日
 */
@Service
public class IndItemServiceImpl extends BaseServiceImpl<IndItemDao, IndItemEntity> implements IndItemService {
 
    @Resource
    private IndItemAtomService indItemAtomService;
 
    @Resource
    private IndItemCalService indItemCalService;
 
    @Override
    public PageData<IndItemDTO> page(Map<String, Object> params) {
        IPage<IndItemEntity> page = baseDao.selectPage(
                getPage(params, Constant.CREATE_TIME, false),
                getWrapper(params)
        );
        return getPageData(page, IndItemDTO.class);
    }
 
    @Override
    public List<IndItemDTO> getList(Map<String, Object> params) {
        List<IndItemEntity> list = baseDao.selectList(getWrapper(params));
        return ConvertUtils.sourceToTarget(list, IndItemDTO.class);
    }
 
    @Override
    public void enableByIds(String[] ids) {
        if (CollectionUtils.isEmpty(Arrays.asList(ids))) {
            return;
        }
        Arrays.asList(ids).forEach(item -> {
            IndItemEntity entity = new IndItemEntity();
            entity.setId(item);
            entity.setIsEnable(IsEnableEnum.ENABLE.value());
            baseDao.updateById(entity);
        });
    }
 
    @Override
    public void disableByIds(String[] ids) {
        if (CollectionUtils.isEmpty(Arrays.asList(ids))) {
            return;
        }
        Arrays.asList(ids).forEach(item -> {
            IndItemEntity entity = new IndItemEntity();
            entity.setId(item);
            entity.setIsEnable(IsEnableEnum.DISABLE.value());
            baseDao.updateById(entity);
        });
    }
 
    @Override
    public IndItemDTO getItemByItemNo(String itemNo) {
        QueryWrapper<IndItemEntity> wrapper = new QueryWrapper<>();
        wrapper.eq("item_no", itemNo);
        return ConvertUtils.sourceToTarget(baseDao.selectOne(wrapper),IndItemDTO.class);
    }
 
    private QueryWrapper<IndItemEntity> getWrapper(Map<String, Object> params){
        String itemNo = (String)params.get("itemNo");
 
        QueryWrapper<IndItemEntity> wrapper = new QueryWrapper<>();
        wrapper.like(StringUtils.isNotBlank(itemNo), "item_no", itemNo);
 
        return wrapper;
    }
 
    @Override
    public IndItemDTO get(String id) {
        IndItemEntity entity = baseDao.selectById(id);
        if (entity == null) {
            return null;
        }
        IndItemDTO result = ConvertUtils.sourceToTarget(entity, IndItemDTO.class);
        if (IndItemTypeEnum.ATOM_ITEM.getCode().equals(result.getItemType())) {
            IndItemAtomDTO dto = indItemAtomService.getItemId(id);
            result.setIndItemAtom(dto);
        } else if (IndItemTypeEnum.CAL_ITEM.getCode().equals(result.getItemType())) {
            IndItemCalDTO dto = indItemCalService.getItemId(id);
            result.setIndItemCal(dto);
        }
        return result;
    }
 
    @Override
    public void save(IndItemDTO dto) {
        IndItemEntity entity = ConvertUtils.sourceToTarget(dto, IndItemEntity.class);
        entity.setId(UUID.randomUUID().toString());
        if (IndItemTypeEnum.ATOM_ITEM.getName().equals(entity.getItemType())) {
            IndItemAtomDTO indItemAtomDTO = new IndItemAtomDTO();
            indItemAtomDTO.setId(UUID.randomUUID().toString());
            indItemAtomDTO.setItemId(entity.getId());
            indItemAtomDTO.setDataSource(dto.getDataSource());
            indItemAtomDTO.setQuerySql(dto.getQuerySql());
            indItemAtomService.save(indItemAtomDTO);
        }else if (IndItemTypeEnum.CAL_ITEM.getName().equals(entity.getItemType())){
            IndItemCalDTO indItemCalDTO = new IndItemCalDTO();
            indItemCalDTO.setId(UUID.randomUUID().toString());
            indItemCalDTO.setItemId(entity.getId());
            indItemCalDTO.setExpression(dto.getExpression());
            indItemCalService.save(indItemCalDTO);
        }
        entity.setIsEnable(CommonConstant.IS_ENABLE);
        entity.setCreateTime(new Date());
        insert(entity);
    }
 
    @Override
    public void update(IndItemDTO dto) {
        IndItemEntity entity = ConvertUtils.sourceToTarget(dto, IndItemEntity.class);
        entity.setUpdateTime(new Date());
        updateById(entity);
        System.out.println(IndItemTypeEnum.ATOM_ITEM.getName()+IndItemTypeEnum.CAL_ITEM.getName());
        if (IndItemTypeEnum.ATOM_ITEM.getName().equals(entity.getItemType())) {
            dto.getIndItemAtom().setDataSource(dto.getDataSource());
            dto.getIndItemAtom().setQuerySql(dto.getQuerySql());
            indItemAtomService.update(dto.getIndItemAtom());
        }else if (IndItemTypeEnum.CAL_ITEM.getName().equals(entity.getItemType())){
            dto.getIndItemCal().setExpression(dto.getExpression());
            indItemCalService.update(dto.getIndItemCal());
        }
    }
 
    @Override
    @Transactional(rollbackFor = Exception.class)
    public void delete(String[] ids) {
        baseDao.deleteBatchIds(Arrays.asList(ids));
        indItemAtomService.deleteByItemId(ids);
        indItemCalService.deleteByItemId(ids);
    }
 
    @Override
    public List<IndItemDTO> getItemAtom(List<String> itemNos) {
        Map<String, Object> params = new HashMap<>();
        params.put("itemType", IndItemTypeEnum.ATOM_ITEM.getCode());
        params.put("isEnable", CommonConstant.IS_ENABLE);
        params.put("itemNos", itemNos);
        return baseDao.getItemAtom(params);
    }
 
    @Override
    public IndItemDTO getItemAtom(String itemNo) {
        IndItemDTO result = null;
        Map<String, Object> params = new HashMap<>();
        params.put("itemType", IndItemTypeEnum.ATOM_ITEM.getCode());
        params.put("isEnable", CommonConstant.IS_ENABLE);
        params.put("itemNo", itemNo);
        List<IndItemDTO> list = baseDao.getItemAtom(params);
        if (!CollectionUtils.isEmpty(list)) {
            result = list.get(0);
        }
        return result;
    }
 
    @Override
    public List<IndItemDTO> getItemCal(List<String> itemNos) {
        Map<String, Object> params = new HashMap<>();
        params.put("itemType", IndItemTypeEnum.CAL_ITEM.getCode());
        params.put("isEnable", CommonConstant.IS_ENABLE);
        params.put("itemNos", itemNos);
        return baseDao.getItemCal(params);
    }
 
    @Override
    public IndItemDTO getItemCal(String itemNo) {
        IndItemDTO result = null;
        Map<String, Object> params = new HashMap<>();
        params.put("itemType", IndItemTypeEnum.CAL_ITEM.getCode());
        params.put("isEnable", CommonConstant.IS_ENABLE);
        params.put("itemNo", itemNo);
        List<IndItemDTO> list = baseDao.getItemCal(params);
        if (!CollectionUtils.isEmpty(list)) {
            result = list.get(0);
        }
        return result;
    }
}