YYC
2025-05-16 fd33b1408f39e30fcfee037468ace9050e27b739
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
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
package com.fzzy.push.impl;
 
import com.fzzy.api.Constant;
import com.fzzy.api.data.ApiParam;
import com.fzzy.api.dto.ResponseDto;
import com.fzzy.api.entity.*;
import com.fzzy.api.service.ApiRemoteService;
import com.fzzy.api.view.repository.*;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.List;
 
/**
 * @Desc: 通用实现类,针对国标为粮食管理相关接口的数据推送实现接口,系统根据协议自动调用不同实现类
 * @author: andy.jia
 * @update-time: 2022/10/28 2:02
 */
@Slf4j
@Service
public class ComPushService12 {
 
    @Autowired
    private Api1109Rep api1109Rep;
    @Autowired
    private Api1201Rep api1201Rep;
    @Autowired
    private Api1202Rep api1202Rep;
    @Autowired
    private Api1203Rep api1203Rep;
    @Autowired
    private Api1204Rep api1204Rep;
    @Autowired
    private Api1205Rep api1205Rep;
    @Autowired
    private Api1206Rep api1206Rep;
    @Autowired
    private Api1207Rep api1207Rep;
    @Autowired
    private Api1208Rep api1208Rep;
    @Autowired
    private Api1209Rep api1209Rep;
    @Autowired
    private Api1210Rep api1210Rep;
    @Autowired
    private Api1211Rep api1211Rep;
    @Autowired
    private Api1212Rep api1212Rep;
    @Autowired
    private Api1213Rep api1213Rep;
    /**
     * 1109 文件信息同步
     */
    public void pushData1109(ApiRemoteService apiRemoteService, ApiParam param) {
 
        List<Api1109> items = api1109Rep.findPushDataByTime(param.getKqdm(), param.getStart(), param.getEnd());
 
        if (null == items || items.isEmpty()) {
            log.error("-----未获取到文件信息,不推送-----");
            return;
        }
 
        param.setInteCategory(Constant.API_CATEGORY_11);
        param.setInteId(Constant.API_CODE_1109);
 
        ResponseDto responseDto;
 
        for (Api1109 data : items) {
            param.setBizId(data.getBizId());
            responseDto = apiRemoteService.pushData(param, data);
 
            if (responseDto.getSuccess() == 0) {
                if (Constant.CZBZ_I.equals(data.getCzbz())) {
                    api1109Rep.updateStatus(data.getId(), Constant.CZBZ_U);
                }
            }
        }
    }
 
    /**
     * 合同同步
     * @param apiRemoteService
     * @param param
     */
    public void pushData1201(ApiRemoteService apiRemoteService, ApiParam param) {
        //根据库区编码、更新时间查询合同信息
        List<Api1201> items = api1201Rep.findPushDataByTime(param.getKqdm(), param.getStart(), param.getEnd());
 
        if (null == items || items.isEmpty()) {
            log.error("-----未获取到合同信息,不推送-----");
            return;
        }
 
        param.setInteCategory(Constant.API_CATEGORY_12);
        param.setInteId(Constant.API_CODE_1201);
 
        ResponseDto responseDto;
 
        for (Api1201 data : items) {
            param.setBizId(data.getBizId());
            responseDto = apiRemoteService.pushData(param, data);
 
            if (responseDto.getSuccess() == 0) {
                if (Constant.CZBZ_I.equals(data.getCzbz())) {
                    api1201Rep.updateStatus(data.getHth(), Constant.CZBZ_U);
                }
            }
        }
    }
 
    /**
     * 粮食入库数据
     * @param apiRemoteService
     * @param param
     */
    public void pushData1202(ApiRemoteService apiRemoteService, ApiParam param) {
        List<Api1202> items = api1202Rep.findPushDataByTime(param.getKqdm(), param.getStart(), param.getEnd());
        if (null == items || items.isEmpty()) {
            log.error("-----未获取到粮食入库信息,不推送-----");
            return;
        }
        param.setInteCategory(Constant.API_CATEGORY_12);
        param.setInteId(Constant.API_CODE_1202);
 
        ResponseDto responseDto;
        for (Api1202 data : items) {
            param.setBizId(data.getBizId());
            responseDto = apiRemoteService.pushData(param, data);
 
            if (responseDto.getSuccess() == 0) {
                if (Constant.CZBZ_I.equals(data.getCzbz())) {
                    api1202Rep.updateStatus(data.getRkywdh(), Constant.CZBZ_U);
                }
            }
        }
    }
 
    /**
     * 入库质检
     * @param apiRemoteService
     * @param param
     */
    public void pushData1203(ApiRemoteService apiRemoteService, ApiParam param) {
        List<Api1203> items = api1203Rep.findPushDataByTime(param.getKqdm(), param.getStart(), param.getEnd());
 
        if (null == items || items.isEmpty()) {
            log.error("-----未获取到粮食入库检验信息,不推送-----");
            return;
        }
 
        param.setInteCategory(Constant.API_CATEGORY_12);
        param.setInteId(Constant.API_CODE_1203);
 
        ResponseDto responseDto;
        for (Api1203 data : items) {
            param.setBizId(data.getBizId());
            responseDto = apiRemoteService.pushData(param, data);
 
            if (responseDto.getSuccess() == 0) {
                if (Constant.CZBZ_I.equals(data.getCzbz())) {
                    api1203Rep.updateStatus(data.getRkjydh(), Constant.CZBZ_U);
                }
            }
        }
    }
 
    /**
     * 入库结算
     * @param apiRemoteService
     * @param param
     */
    public void pushData1204(ApiRemoteService apiRemoteService, ApiParam param) {
        List<Api1204> items = api1204Rep.findPushDataByTime(param.getKqdm(), param.getStart(), param.getEnd());
 
        if (null == items || items.isEmpty()) {
            log.error("-----未获取到粮食入库结算信息,不推送-----");
            return;
        }
 
        param.setInteCategory(Constant.API_CATEGORY_12);
        param.setInteId(Constant.API_CODE_1204);
 
        ResponseDto responseDto;
        for (Api1204 data : items) {
            param.setBizId(data.getBizId());
            responseDto = apiRemoteService.pushData(param, data);
 
            if (responseDto.getSuccess() == 0) {
                if (Constant.CZBZ_I.equals(data.getCzbz())) {
                    api1204Rep.updateStatus(data.getRkjsdh(), Constant.CZBZ_U);
                }
            }
        }
    }
 
    /**
     * 粮食出库
     * @param apiRemoteService
     * @param param
     */
    public void pushData1205(ApiRemoteService apiRemoteService, ApiParam param) {
        List<Api1205> items = api1205Rep.findPushDataByTime(param.getKqdm(), param.getStart(), param.getEnd());
 
        if (null == items || items.isEmpty()) {
            log.error("-----未获取到粮食出库信息,不推送-----");
            return;
        }
 
        param.setInteCategory(Constant.API_CATEGORY_12);
        param.setInteId(Constant.API_CODE_1205);
 
 
        ResponseDto responseDto;
        for (Api1205 data : items) {
            param.setBizId(data.getBizId());
            responseDto = apiRemoteService.pushData(param, data);
 
            if (responseDto.getSuccess() == 0) {
                if (Constant.CZBZ_I.equals(data.getCzbz())) {
                    api1205Rep.updateStatus(data.getCkywdh(), Constant.CZBZ_U);
                }
            }
        }
    }
 
    /**
     * 出库结算
     * @param apiRemoteService
     * @param param
     */
    public void pushData1206(ApiRemoteService apiRemoteService, ApiParam param) {
        List<Api1206> items = api1206Rep.findPushDataByTime(param.getKqdm(), param.getStart(), param.getEnd());
 
        if (null == items || items.isEmpty()) {
            log.error("-----未获取到粮食出库结算信息,不推送-----");
            return;
        }
 
        param.setInteCategory(Constant.API_CATEGORY_12);
        param.setInteId(Constant.API_CODE_1206);
 
        ResponseDto responseDto;
        for (Api1206 data : items) {
            param.setBizId(data.getBizId());
            responseDto = apiRemoteService.pushData(param, data);
 
            if (responseDto.getSuccess() == 0) {
                if (Constant.CZBZ_I.equals(data.getCzbz())) {
                    api1206Rep.updateStatus(data.getCkjsdh(), Constant.CZBZ_U);
                }
            }
        }
    }
 
    /**
     * 倒仓数据
     * @param apiRemoteService
     * @param param
     */
    public void pushData1207(ApiRemoteService apiRemoteService, ApiParam param) {
        List<Api1207> items = api1207Rep.findPushDataByTime(param.getKqdm(), param.getStart(), param.getEnd());
 
        if (null == items || items.isEmpty()) {
            log.error("-----未获取到倒仓信息,不推送-----");
            return;
        }
 
        param.setInteCategory(Constant.API_CATEGORY_12);
        param.setInteId(Constant.API_CODE_1207);
 
 
        ResponseDto responseDto;
        for (Api1207 data : items) {
            param.setBizId(data.getBizId());
            responseDto = apiRemoteService.pushData(param, data);
 
            if (responseDto.getSuccess() == 0) {
                if (Constant.CZBZ_I.equals(data.getCzbz())) {
                    api1207Rep.updateStatus(data.getDcdh(), Constant.CZBZ_U);
                }
            }
        }
    }
 
    /**
     * 粮食库存数据接口
     *
     * @param apiRemoteService
     * @param param
     */
    public void pushData1208(ApiRemoteService apiRemoteService, ApiParam param) {
 
        //获取数据
        List<Api1208> items = api1208Rep.findPushDataByTime(param.getKqdm(), param.getStart(), param.getEnd());
 
        if (null == items || items.isEmpty()) {
            log.error("-----未获取到粮食库存信息,不推送-----");
            return;
        }
        param.setInteCategory(Constant.API_CATEGORY_12);
        param.setInteId(Constant.API_CODE_1208);
 
        ResponseDto responseDto;
 
        for (Api1208 data : items) {
 
            param.setBizId(data.getBizId());
            responseDto = apiRemoteService.pushData(param, data);
 
            if (responseDto.getSuccess() == 0) {
                if (Constant.CZBZ_I.equals(data.getCzbz())) {
                    api1208Rep.updateStatus(data.getId(), Constant.CZBZ_U);
                }
            }
        }
    }
 
    /**
     * 损益单
     * @param apiRemoteService
     * @param param
     */
    public void pushData1209(ApiRemoteService apiRemoteService, ApiParam param) {
        List<Api1209> items = api1209Rep.findPushDataByTime(param.getKqdm(), param.getStart(), param.getEnd());
        if (null == items || items.isEmpty()) {
            log.error("-----未获取到粮食库存信息,不推送-----");
            return;
        }
 
        param.setInteCategory(Constant.API_CATEGORY_12);
        param.setInteId(Constant.API_CODE_1209);
 
        ResponseDto responseDto;
        for (Api1209 data : items) {
            param.setBizId(data.getBizId());
            responseDto = apiRemoteService.pushData(param, data);
 
            if (responseDto.getSuccess() == 0) {
                if (Constant.CZBZ_I.equals(data.getCzbz())) {
                    api1209Rep.updateStatus(data.getSydh(), Constant.CZBZ_U);
                }
            }
        }
    }
 
    /**
     * 粮食性质转变
     * @param apiRemoteService
     * @param param
     */
    public void pushData1210(ApiRemoteService apiRemoteService, ApiParam param) {
        List<Api1210> items = api1210Rep.findPushDataByTime(param.getKqdm(), param.getStart(), param.getEnd());
 
        if (null == items || items.isEmpty()) {
            log.error("-----未获取到粮食库存信息,不推送-----");
            return;
        }
 
        param.setInteCategory(Constant.API_CATEGORY_12);
        param.setInteId(Constant.API_CODE_1210);
 
        ResponseDto responseDto;
        for (Api1210 data : items) {
            param.setBizId(data.getBizId());
            responseDto = apiRemoteService.pushData(param, data);
 
            if (responseDto.getSuccess() == 0) {
                if (Constant.CZBZ_I.equals(data.getCzbz())) {
                    api1210Rep.updateStatus(data.getLsxzzbdh(), Constant.CZBZ_U);
                }
            }
        }
    }
 
    /**
     * 1211 账面库存
     */
    public void pushData1211(ApiRemoteService apiRemoteService, ApiParam param) {
        //账面库存
        List<Api1211> list = api1211Rep.findPushDataByTime(param.getKqdm(), param.getStart(), param.getEnd());
 
        if (null == list || list.isEmpty()) {
            log.error("-----未获取到粮食库存信息,不推送-----");
            return;
        }
        param.setInteCategory(Constant.API_CATEGORY_12);
        param.setInteId(Constant.API_CODE_1211);
 
        ResponseDto responseDto;
        for (Api1211 data : list) {
            param.setBizId(data.getBizId());
            responseDto = apiRemoteService.pushData(param, data);
            if (responseDto.getSuccess() == 0) {
                if (Constant.CZBZ_I.equals(data.getCzbz())) {
 
                    data.setCzbz(Constant.CZBZ_U);
                    //更新状态
                    api1211Rep.save(data);
                }
            }
        }
    }
 
    /**
     * 1212 客户信息
     */
    public void pushData1212(ApiRemoteService apiRemoteService, ApiParam param) {
        //获取客户信息
        List<Api1212> list = api1212Rep.findPushDataByTime(param.getKqdm(), param.getStart(), param.getEnd());
 
        if (null == list || list.isEmpty()) {
            log.error("-----未获取到客户信息,不推送-----");
            return;
        }
        param.setInteCategory(Constant.API_CATEGORY_12);
        param.setInteId(Constant.API_CODE_1212);
 
        ResponseDto responseDto;
        for (Api1212 data : list) {
            param.setBizId(data.getBizId());
            responseDto = apiRemoteService.pushData(param, data);
            if (responseDto.getSuccess() == 0) {
                if (Constant.CZBZ_I.equals(data.getCzbz())) {
                    data.setCzbz(Constant.CZBZ_U);
                    //更新状态
                    api1212Rep.save(data);
                }
            }
        }
    }
 
    /**
     * 1213 封仓确认单
     */
    public void pushData1213(ApiRemoteService apiRemoteService, ApiParam param) {
        //获取客户信息
        List<Api1213> list = api1213Rep.findPushDataByTime(param.getKqdm(), param.getStart(), param.getEnd());
 
        if (null == list || list.isEmpty()) {
            log.error("-----未获取到客户信息,不推送-----");
            return;
        }
        param.setInteCategory(Constant.API_CATEGORY_12);
        param.setInteId(Constant.API_CODE_1213);
 
        ResponseDto responseDto;
        for (Api1213 data : list) {
            param.setBizId(data.getBizId());
            responseDto = apiRemoteService.pushData(param, data);
            if (responseDto.getSuccess() == 0) {
                if (Constant.CZBZ_I.equals(data.getCzbz())) {
                    data.setCzbz(Constant.CZBZ_U);
                    //更新状态
                    api1213Rep.save(data);
                }
            }
        }
    }
}