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
package com.iailab.module.data.ind.collection;
 
import com.iailab.module.data.ind.collection.handler.AtomItemHandle;
import com.iailab.module.data.ind.service.IndItemService;
import com.iailab.module.data.ind.collection.handler.AtomItemHandle;
import com.iailab.module.data.ind.service.IndItemService;
import com.iailab.module.data.ind.collection.handler.AtomItemHandle;
import com.iailab.module.data.ind.collection.handler.CalItemHandle;
import com.iailab.module.data.ind.dto.IndItemDTO;
import com.iailab.module.data.ind.dto.IndItemValueDTO;
import com.iailab.module.data.ind.service.IndItemService;
import com.iailab.module.data.ind.collection.handler.AtomItemHandle;
import com.iailab.module.data.ind.service.IndItemService;
import lombok.extern.slf4j.Slf4j;
import javax.annotation.Resource;
import org.springframework.stereotype.Component;
import org.springframework.util.CollectionUtils;
 
import java.util.HashMap;
import java.util.List;
import java.util.Map;
 
/**
 * @author PanZhibao
 * @Description
 * @createTime 2024年05月25日
 */
@Slf4j
@Component
public class IndItemCollector {
 
    @Resource
    private IndItemService indItemService;
 
    @Resource
    private AtomItemHandle atomItemHandle;
 
    @Resource
    private CalItemHandle calItemHandle;
 
 
    public Map<String, List<IndItemValueDTO>> getValueList(List<String> itemNos) {
        Map<String, List<IndItemValueDTO>> result = new HashMap<>();
        if (CollectionUtils.isEmpty(itemNos)) {
            return result;
        }
        try {
            List<IndItemDTO> atomList = indItemService.getItemAtom(itemNos);
            atomList.forEach(item -> {
                result.put(item.getItemNo(), atomItemHandle.getItemSourceValue(item.getItemNo()));
            });
 
            List<IndItemDTO> calList = indItemService.getItemCal(itemNos);
            calList.forEach(item -> {
                result.put(item.getItemNo(), calItemHandle.getItemCalValue(item.getItemNo()));
            });
 
        } catch (Exception ex) {
            ex.printStackTrace();
        }
        return result;
    }
 
    public Map<String, List<IndItemValueDTO>> getValueListRange(List<String> itemNos, String start, String end) {
        Map<String, List<IndItemValueDTO>> result = new HashMap<>();
        if (CollectionUtils.isEmpty(itemNos)) {
            return result;
        }
        try {
            List<IndItemDTO> atomList = indItemService.getItemAtom(itemNos);
            atomList.forEach(item -> {
                result.put(item.getItemNo(), atomItemHandle.getItemSourceValue(item.getItemNo(), start, end));
            });
 
            List<IndItemDTO> calList = indItemService.getItemCal(itemNos);
            calList.forEach(item -> {
                result.put(item.getItemNo(), calItemHandle.getItemCalValue(item.getItemNo(), start, end));
            });
 
        } catch (Exception ex) {
            ex.printStackTrace();
        }
        return result;
    }
}