czt
2025-10-31 8172572f01c0baa527085243e010afa4bec5efcc
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
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
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;
    @Autowired
    private Api1214Rep api1214Rep;
    @Autowired
    private Api1215Rep api1215Rep;
    @Autowired
    private Api1216Rep api1216Rep;
    @Autowired
    private Api1217Rep api1217Rep;
    @Autowired
    private Api1218Rep api1218Rep;
    @Autowired
    private Api1219Rep api1219Rep;
 
 
    /**
     * 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);
                }
            }
        }
    }
 
    /**
     * 1214 储备粮空仓验收表
     */
    public void pushData1214(ApiRemoteService apiRemoteService, ApiParam param) {
        //储备粮空仓验收表
        List<Api1214> list = api1214Rep.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_1214);
 
        ResponseDto responseDto;
        for (Api1214 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);
                    //更新状态
                    api1214Rep.save(data);
                }
            }
        }
    }
 
    /**
     * 1215 储备油空罐验收表
     */
    public void pushData1215(ApiRemoteService apiRemoteService, ApiParam param) {
        //储备油空罐验收表
        List<Api1215> list = api1215Rep.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_1215);
 
        ResponseDto responseDto;
        for (Api1215 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);
                    //更新状态
                    api1215Rep.save(data);
                }
            }
        }
    }
 
    /**
     * 1216 储备粮倒仓验收表
     */
    public void pushData1216(ApiRemoteService apiRemoteService, ApiParam param) {
        //储备粮倒仓验收表
        List<Api1216> list = api1216Rep.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_1216);
 
        ResponseDto responseDto;
        for (Api1216 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);
                    //更新状态
                    api1216Rep.save(data);
                }
            }
        }
    }
 
    /**
     * 1217 轮换验收信息
     */
    public void pushData1217(ApiRemoteService apiRemoteService, ApiParam param) {
        //轮换验收信息
        List<Api1217> list = api1217Rep.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_1217);
 
        ResponseDto responseDto;
        for (Api1217 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);
                    //更新状态
                    api1217Rep.save(data);
                }
            }
        }
    }
 
    /**
     * 1218 入库成本核定表
     */
    public void pushData1218(ApiRemoteService apiRemoteService, ApiParam param) {
        //入库成本核定表
        List<Api1218> list = api1218Rep.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_1218);
 
        ResponseDto responseDto;
        for (Api1218 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);
                    //更新状态
                    api1218Rep.save(data);
                }
            }
        }
    }
 
    /**
     * 1219 入库成本核定明细表
     */
    public void pushData1219(ApiRemoteService apiRemoteService, ApiParam param) {
        //入库成本核定明细表
        List<Api1219> list = api1219Rep.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_1219);
 
        ResponseDto responseDto;
        for (Api1219 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);
                    //更新状态
                    api1219Rep.save(data);
                }
            }
        }
    }
}