czt
2026-01-16 a99c35bb764b1208141541e32034a973c34a3cd1
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.fzzy.igds.service;
 
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.conditions.update.UpdateWrapper;
import com.fzzy.igds.constant.Constant;
import com.fzzy.igds.constant.RedisConst;
import com.fzzy.igds.domain.DepotConf;
import com.fzzy.igds.mapper.DepotConfMapper;
import com.fzzy.igds.utils.ContextUtil;
import com.ruoyi.common.core.domain.entity.SysUser;
import com.ruoyi.common.core.redis.RedisCache;
import com.ruoyi.common.utils.StringUtils;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service;
 
import javax.annotation.Resource;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Date;
import java.util.List;
import java.util.stream.Collectors;
 
/**
 * @Description
 * @Author CZT
 * @Date 2025/11/28 15:42
 */
@Slf4j
@Service
public class DepotConfService {
 
    @Resource
    private DepotConfMapper depotConfMapper;
    @Resource
    private RedisCache redisCache;
 
    /**
     * 查询配置信息
     *
     * @param companyId
     * @param deptId
     * @return
     */
    public List<DepotConf> getConfList(String companyId, String deptId) {
 
        if (StringUtils.isEmpty(companyId)) {
            companyId = ContextUtil.getCompanyId();
        }
        QueryWrapper<DepotConf> queryWrapper = new QueryWrapper<>();
        queryWrapper.eq("company_id", companyId);
 
        if (StringUtils.isNotBlank(deptId)) {
            queryWrapper.eq("dept_id", deptId);
        }
        return depotConfMapper.selectList(queryWrapper);
    }
 
    /**
     * 根据用户类型查询配置信息
     * @return
     */
    public List<DepotConf> getConfListByUserType() {
        //获取当前登录人
        SysUser user = ContextUtil.getLoginUser();
 
        QueryWrapper<DepotConf> queryWrapper = new QueryWrapper<>();
 
 
        //监管用户-默认查看所有信息不增加条件
        if (Constant.USER_TYPE_10.equals(user.getUserType())) {
            queryWrapper.eq("company_id", user.getCompanyId());
            //不增加条件
        }
 
        //库区用户,如果是公司用户可以查看公司下属所有库区,如果为当前库区只查询当前库区
        if (Constant.USER_TYPE_30.equals(user.getUserType())) {
            queryWrapper.eq("company_id", user.getCompanyId());
            
            if (ContextUtil.isDepotUser(user.getDeptId() + "")) {
                queryWrapper.eq("dept_id", user.getDeptId() + "");
            } else {
                queryWrapper.likeRight("dept_id", user.getDeptId() + "");
            }
        }
 
        //银行用户,根据合同查询银行下所有库区
        if (Constant.USER_TYPE_20.equals(user.getUserType())) {
 
            if(StringUtils.isBlank(user.getUserData())) return null;
 
            queryWrapper.eq("d.company_id", user.getCompanyId());
            queryWrapper.eq("c.pledge_bank", user.getUserData());
            return depotConfMapper.selectByBank(queryWrapper);
        }
 
        return depotConfMapper.selectList(queryWrapper);
    }
 
    /**
     * 更新保存配置信息
     *
     * @param conf
     */
    public void saveConf(DepotConf conf) {
        if (StringUtils.isEmpty(conf.getCompanyId())) {
            conf.setCompanyId(ContextUtil.getCompanyId());
        }
        if (StringUtils.isEmpty(conf.getDeptId())) {
            conf.setDeptId(ContextUtil.subDeptId(null));
        }
 
        if (null == conf.getUpdateBy()) {
            conf.setCreateBy(ContextUtil.getLoginUserName());
            conf.setCreateTime(new Date());
 
            conf.setUpdateBy(ContextUtil.getLoginUserName());
            conf.setUpdateTime(new Date());
            depotConfMapper.insert(conf);
        } else {
            conf.setUpdateBy(ContextUtil.getLoginUserName());
            conf.setUpdateTime(new Date());
            depotConfMapper.update(conf, new UpdateWrapper<DepotConf>().eq("depot_id", conf.getDepotId()));
        }
        flushConfCache(conf.getCompanyId());
    }
 
    /**
     * 删除配置信息
     *
     * @param conf
     * @return
     */
    public void deleteDepotConf(DepotConf conf) {
        depotConfMapper.deleteById(conf);
 
        //删除配置缓存
        this.delCacheDepotConf(conf, conf.getCompanyId());
    }
 
    /**
     * 设置缓存信息
     *
     * @param list
     * @param companyId
     */
    public void setCacheDepotConf(List<DepotConf> list, String companyId) {
        if (null != list) {
            String key;
            for (DepotConf depotConf : list) {
                key = RedisConst.buildKey(companyId, RedisConst.KEY_DEPOT_CONF, depotConf.getDepotId());
                redisCache.setCacheObject(key, depotConf);
            }
        }
    }
 
    /**
     * 删除缓存信息
     *
     * @param depotConf
     * @param companyId
     */
    public void delCacheDepotConf(DepotConf depotConf, String companyId) {
        if (null == depotConf) {
            return;
        }
        if (StringUtils.isEmpty(companyId)) {
            companyId = ContextUtil.getCompanyId();
        }
        String key = RedisConst.buildKey(companyId, RedisConst.KEY_DEPOT_CONF, depotConf.getDepotId());
        redisCache.deleteObject(key);
    }
 
    /**
     * 获取缓存-根据组织编码获取配置信息集合
     *
     * @param companyId
     * @return
     */
    public List<DepotConf> getCacheDepotConfList(String companyId) {
        if (StringUtils.isEmpty(companyId)) {
            companyId = ContextUtil.getCompanyId();
        }
        String patten = RedisConst.buildKey(companyId, RedisConst.KEY_DEPOT_CONF) + "*";
 
        Collection<String> keys = redisCache.keys(patten);
        if (null == keys || keys.isEmpty()) {
            return null;
        }
 
        List<DepotConf> result = new ArrayList<>();
        for (String key : keys) {
            result.add((DepotConf) redisCache.getCacheObject(key));
        }
 
        return result;
    }
 
    /**
     * 获取缓存-根据组织编码和粮情分机ID获取配置信息集合
     *
     * @param companyId
     * @param serId
     * @return
     */
    public List<DepotConf> getCacheDepotConfList(String companyId, String serId) {
        List<DepotConf> list = getCacheDepotConfList(companyId);
 
        if (null == list || list.isEmpty()) {
            return null;
        }
        return list.stream()
                .filter(item -> null != item.getGrainSer() && item.getGrainSer().equals(serId))
                .collect(Collectors.toList());
    }
 
    /**
     * 获取缓存-根据组织编码和粮情分机ID获取配置信息
     *
     * @param companyId
     * @param serId
     * @return
     */
    public DepotConf getCacheDepotConfBySerId(String companyId, String serId) {
        List<DepotConf> data = getCacheDepotConfList(companyId);
        if (null == data) {
            return null;
        }
 
        return data.stream().filter(item -> serId.equals(item.getGrainSer()))
                .findAny().orElse(null);
    }
 
    /**
     * 获取缓存-根据组织编码和仓库编码获取配置信息
     *
     * @param companyId
     * @param depotId
     * @return
     */
    public DepotConf getCacheDepotConfByDepotId(String companyId, String depotId) {
        if (StringUtils.isEmpty(depotId)) {
            return null;
        }
        if (StringUtils.isEmpty(companyId)) {
            companyId = ContextUtil.getCompanyId();
        }
        String key = RedisConst.buildKey(companyId, RedisConst.KEY_DEPOT_CONF, depotId);
        DepotConf depotConf = redisCache.getCacheObject(key);
        if (null == depotConf) {
            depotConf = depotConfMapper.selectById(depotId);
            redisCache.setCacheObject(key, depotConf);
        }
 
        return depotConf;
    }
 
    /**
     * 刷新仓库配置缓存
     * @param companyId
     */
    public void flushConfCache(String companyId) {
        if (StringUtils.isEmpty(companyId)) {
            companyId = ContextUtil.getCompanyId();
        }
 
        List<DepotConf> list = this.getConfList(companyId, null);
 
        this.setCacheDepotConf(list, companyId);
    }
 
    /**
     * 更新粮情保存频率
     * @param freq
     */
    public void updateFreq(String freq) {
        UpdateWrapper<DepotConf> updateWrapper = new UpdateWrapper<>();
        updateWrapper.eq("dept_id", ContextUtil.subDeptId(null)).set("grain_freq", freq);
        depotConfMapper.update(null, updateWrapper);
    }
 
 
}