liujie
2023-05-26 f9de931c4457c2a6bfe395879e3b2f2bfd7d9692
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
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
package com.stylefeng.guns.modular.system.controller;
 
import cn.hutool.core.bean.BeanUtil;
import cn.hutool.core.date.DateUnit;
import cn.hutool.core.date.DateUtil;
import com.baomidou.mybatisplus.mapper.EntityWrapper;
import com.baomidou.mybatisplus.plugins.Page;
import com.stylefeng.guns.core.base.controller.BaseController;
import com.stylefeng.guns.core.base.tips.ErrorTip;
import com.stylefeng.guns.core.util.ToolUtil;
import com.stylefeng.guns.modular.system.enums.UserFeeSettingEnum;
import com.stylefeng.guns.modular.system.model.*;
import com.stylefeng.guns.modular.system.service.*;
import com.stylefeng.guns.modular.system.utils.AddressLookup;
import com.stylefeng.guns.modular.system.utils.ExcelUtil;
import com.stylefeng.guns.modular.system.utils.GoogleMap.DistancematrixVo;
import com.stylefeng.guns.modular.system.utils.GoogleMap.GeocodeVo;
import com.stylefeng.guns.modular.system.utils.GoogleMap.GoogleMapUtil;
import com.stylefeng.guns.modular.system.utils.PointInPolygon;
import com.stylefeng.guns.modular.system.utils.UserInfoUtil;
import com.stylefeng.guns.modular.system.utils.tips.SuccessTip;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiImplicitParam;
import io.swagger.annotations.ApiImplicitParams;
import io.swagger.annotations.ApiOperation;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.transaction.annotation.Propagation;
import org.springframework.transaction.annotation.Transactional;
import org.springframework.util.CollectionUtils;
import org.springframework.web.bind.annotation.*;
 
import javax.servlet.http.HttpServletResponse;
import java.io.OutputStream;
import java.math.BigDecimal;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.*;
import java.util.stream.Collectors;
 
/**
 * 控制器
 *
 * @author fengshuonan
 * @Date 2022-12-28 09:33:09
 */
@Controller
@Api(tags = "主页")
@RequestMapping("/api/demand")
public class DemandController extends BaseController {
 
    @Autowired
    private ITOrderService orderService;
 
    @Autowired
    private ITCountryService service;
 
    @Autowired
    private ITPortService itPortService;
 
    @Autowired
    private IWarehouseService warehouseService;
 
    @Autowired
    private GoogleMapUtil googleMapUtil;
 
    @Autowired
    private ITCompanyServiceService tCompanyServiceService;
    @Autowired
    private ITCompanyService tCompanyService;
 
    @Autowired
    private ITCompanyBasicService companyBasicService;
 
    @Autowired
    private ITCompanyFeeSettingService companyFeeSettingService;
 
    @Autowired
    private ITPortService portService;
 
    @Autowired
    private ITQuoteService quoteService;
 
    @Autowired
    private ITGoodsService goodsService;
 
    @Autowired
    private ITRatesService ratesService;
 
    @Autowired
    private ITCountryService countryService;
 
    @Autowired
    private ITCompanyService companyService;
 
    @Autowired
    private ITPriceService priceService;
 
    @Autowired
    private ITUserService userService;
 
    @Autowired
    private ITGroupService groupService;
 
    @Autowired
    private ITUserFeeSettingService userFeeSettingService;
 
 
    @ApiOperation(value = "发布需求-第一步",notes="发布需求-第一步")
    @ApiImplicitParams({
            @ApiImplicitParam(name = "Authorization", value = "用户token(Bearer +token)", required = true, dataType = "String", paramType = "header", defaultValue = "Bearer eyJhbGciOiJIUzUxMiJ9....."),
    })
    @PostMapping(value = "/addDemand")
    @ResponseBody
    @Transactional(propagation = Propagation.REQUIRES_NEW)
    public Object addDemand(@RequestBody DemandDto demandDto) throws Exception {
        Integer userId1 = demandDto.getUserId();
 
        TUser tUser1 = userService.selectById(userId1);
        if(tUser1.getPhone()==null){
            return new ErrorTip(5008,"It is necessary to complete the information before issuing the quotation demand");
        }
 
 
        int breakNum=0;
        // 计数
        int count=0;
        Integer id = demandDto.getId();
        String s1 = System.currentTimeMillis() + ToolUtil.getRandomString(5);
        String s2 = System.currentTimeMillis() + ToolUtil.getRandomString(5);
        // 生成需求
        TQuote tQuote = new TQuote();
        tQuote.setCreateTime(new Date());
        // 需求订单号
        tQuote.setOrderId(s1);
        // 总重量
        tQuote.setTotal(demandDto.getTotal());
        tQuote.setState(0);
        tQuote.setUserId(demandDto.getUserId());
        quoteService.insert(tQuote);
 
        List<TUserFeeSetting> tUserFeeSettings=null;
        //获取当前用户的sale
        Integer userId = demandDto.getUserId();
        TUser tUser = userService.selectById(userId);
        if(tUser.getGroupId()!=null){
            TGroup tGroup = groupService.selectById(tUser.getGroupId());
            tUserFeeSettings = userFeeSettingService.selectList(new EntityWrapper<TUserFeeSetting>().eq("user_id",tGroup.getSalesId()));
 
        }
 
 
        String accessorialStr = demandDto.getAccessorialStr();
        String[] split = accessorialStr.split(",");
        Map<String,String> map = new HashMap<>(split.length);
        for (String s :split){
            if(!s.equals("CTF")&& !s.equals("URGENT FEE")&&!s.equals("PIPERPASS")){
                map.put(s,s);
            }
 
        }
 
        List<TCompanyService> companyServiceList = new ArrayList<>();
        //
        if(ToolUtil.isNotEmpty(demandDto.getAccessorialStr())){
            for (Map.Entry<String, String> entry : map.entrySet()) {
                if(!entry.getKey().equals("CTF")&& !entry.getKey().equals("URGENT FEE")&&!entry.getKey().equals("PIPERPASS")) {
                    companyServiceList.addAll(tCompanyServiceService.selectList(new EntityWrapper<TCompanyService>()
                            .eq("service_name", entry.getKey()).ne("service_value", 0)));
                }
            }
        }else {
            companyServiceList.addAll(tCompanyServiceService.selectList(null));
        }
 
 
        // 根据公司id去重
        List<TCompanyService> companyServices = companyServiceList.stream().collect(Collectors.
                collectingAndThen(Collectors.toCollection(()->new TreeSet<>(Comparator.comparing(TCompanyService::getCompanyId))),ArrayList::new));
        // 拿出符合规则的公司id
        List<Integer> companyIds = companyServices.stream().map(TCompanyService::getCompanyId).collect(Collectors.toList());
 
        List<TCompany> tCompanyList = new ArrayList<>();
        for (Integer companyId : companyIds) {
            List<TCompanyService> collect = companyServiceList.stream().filter(company -> company.getCompanyId().equals(companyId)).collect(Collectors.toList());
            if(map.size() == collect.size()){
                // 找出符合规则的公司
                TCompany company = tCompanyService.selectOne(new EntityWrapper<TCompany>().eq("status", 1)
                        .eq("id",companyId).eq("work",1));
                if(Objects.nonNull(company)){
                    tCompanyList.add(company);
                }
            }
        }
 
        // 符合规则的公司id集合
        List<Integer> companyIdList = tCompanyList.stream().map(TCompany::getId).collect(Collectors.toList());
 
        HashSet<Integer> set = new HashSet<>();
 
        // 找出目前公司是否符合添加的码头
        // 看当前码头是否为特殊码头
        // 找出当前码头所在的cityid
        TPort tPort1 = portService.selectById(demandDto.getPortId());
        TCountry tCountry = countryService.selectById(tPort1.getCity());
        List<Integer> integers = Arrays.asList(demandDto.getPortId(), tCountry.getId());
        List<TRates> tRates = ratesService.selectList(new EntityWrapper<TRates>().in("metro_id", integers));
        // 满足码头的公司
        companyIdList.stream().forEach(t->{
            for (TRates tRate : tRates) {
                if(tRate.getCompanyId().equals(t)){
                    set.add(t);
                }
            }
        });
 
        Integer portId = demandDto.getPortId();
        TPort tPort = itPortService.selectById(portId);
 
        // 获取码头上级id
        TCountry city = countryService.selectById(tPort.getCity());
        TCountry state = countryService.selectById(city.getParentId());
        String address = tPort.getAddress();
//        GeocodeVo geocode = googleMapUtil.getGeocode(address);
 
        List<TCompanyCalculationResp> tCompanyCalculationRespList = new ArrayList<>(tCompanyList.size());
 
 
        // 没有满足公司
        if(CollectionUtils.isEmpty(set)){
            quoteService.deleteById(tQuote.getId());
            return  new ErrorTip(5001,"No truck company was matched to meet the demand");
        }else {
            List<TCompany> companies = companyService.selectList(new EntityWrapper<TCompany>().in("id", set));
            for (TCompany company : companies) {
                breakNum=0;
                TCompanyCalculationResp tCompanyCalculationResp = new TCompanyCalculationResp();
                ArrayList<TOrder> tOrders = new ArrayList<>();
                // 超重 价格
                ArrayList<TCompanyResp> objects = new ArrayList<>();
                List<GoodsListDto> list1 = demandDto.getList();
                // 判断是否特殊码头
                TRates tRates1 = ratesService.selectOne(new EntityWrapper<TRates>().eq("metro_id", demandDto.getPortId()).eq("type", 2).eq("company_id", company.getId()));
                int ratesId=0;
                if(tRates1!=null){
                    ratesId=tRates1.getId();
                }else {
                    ratesId=tCountry.getId();
                }
 
                for (GoodsListDto goodsListDto : list1) {
                    if(breakNum==1){
                        break;
                    }
                    ArrayList<TPrice> tPrices = new ArrayList<>();
                    // 生成订单
//                    TOrder tOrder = new TOrder();
//                    tOrder.setUserId(demandDto.getUserId());
//                    tOrder.setAccessorial(demandDto.getAccessorial());
//                    tOrder.setAccessorialStr(demandDto.getAccessorialStr());
//                    tOrder.setPort(demandDto.getPortId());
//                    tOrder.setShipmentDate(demandDto.getShipmentDate());
//                    tOrder.setDeliveryDate(demandDto.getDeliveryDate());
//                    tOrder.seteZipZ(s1);
//                    tOrder.setCreateTime(new Date());
//                    tOrder.setStartLat("1");
//                    tOrder.setStartLon("1");
//                    tOrder.setDeliveryStr(demandDto.getDelivery());
//                    tOrder.setType(demandDto.getType());
//                    tOrder.setZipCode(demandDto.getZipCode());
//                    tOrder.setWarehouse(demandDto.getWarehouse());
//                    tOrder.setStatus("0");
//                    tOrder.setInvoiceNumber(s2);
//                    tOrder.setCompanyId(company.getId());
//                    tOrder.setCreateTime(new Date());
//                    orderService.insert(tOrder);
//                    tOrders.add(tOrder);
 
                    List<GoodsDto> list = goodsListDto.getList();
                    ArrayList<TGoods> tGoods1 = new ArrayList<>();
                    for (GoodsDto goodsDto : list) {
                        TCompanyResp tCompanyResp = new TCompanyResp();
                        if("0".equals(demandDto.getWarehouse())){
                            tCompanyResp=new TCompanyResp();
                            BigDecimal setValue1 = companyFeeSettingService.selectOne(new EntityWrapper<TCompanyFeeSetting>().eq("company_id", company.getId()).eq("rates_id",ratesId).eq("set_name", demandDto.getDelivery())).getSetValue();
                            tCompanyResp.setName(demandDto.getDelivery());
                            tCompanyResp.setPrice(setValue1);
                            objects.add(tCompanyResp);
 
                            // 基础价格
                            String zipCode = demandDto.getZipCode();
                            // 地址信息
                            String address1 = AddressLookup.getAddress(zipCode);
 
                            List<TCompanyBasic> tCompanyBasic = companyBasicService.selectList(new EntityWrapper<TCompanyBasic>().eq("port_id",ratesId).eq("zip_code", zipCode).eq("type", 1));
                            if(tCompanyBasic.size()>0){
                                tCompanyResp=new TCompanyResp();
                                tCompanyResp.setPrice(tCompanyBasic.get(0).getFee());
                                tCompanyResp.setName("LH+FSC");
                                objects.add(tCompanyResp);
                            }else {
                                // 画圈 拿到的zipcode集合 去对比当前zipcode是否在集合中
                                List<TCompanyBasic> type = companyBasicService.selectList(new EntityWrapper<TCompanyBasic>().eq("type", 2).eq("port_id",ratesId).orderBy("fee",true));
                                if(type.size()>0){
                                    GeocodeVo geocode1 = googleMapUtil.getGeocode(zipCode);
                                    for (TCompanyBasic companyBasic : type) {
                                        boolean inPolygon = PointInPolygon.isInPolygon(geocode1.getLat(), geocode1.getLng(), companyBasic.getLonLat());
                                        if(inPolygon){
                                            tCompanyResp=new TCompanyResp();
                                            tCompanyResp.setPrice(type.get(0).getFee());
                                            tCompanyResp.setName("LH+FSC");
                                            objects.add(tCompanyResp);
                                            break;
                                        }
                                    }
                                    if(tCompanyResp==null){
                                        // 距离
                                        tCompanyResp=new TCompanyResp();
                                        // 1条数据  不需要zipcode
                                        DistancematrixVo distancematrix = googleMapUtil.getDistancematrix(address, address1);
                                        double distance = distancematrix.getDistance().doubleValue();
                                        BigDecimal bigDecimal = new BigDecimal(distance * 0.0006214);
                                        List<TCompanyBasic> type1 = companyBasicService.selectList(new EntityWrapper<TCompanyBasic>().eq("type", 3).eq("port_id",ratesId).le("start",bigDecimal.doubleValue()).orderBy("start",true));
                                        if(type1.size()>0) {
                                            BigDecimal multiply = type1.get(0).getFee().multiply(bigDecimal);
                                            tCompanyResp.setPrice(multiply);
                                            tCompanyResp.setName("LH+FSC");
                                            objects.add(tCompanyResp);
                                        }else {
                                            breakNum=1;
                                            count++;
                                            break;
                                        }
                                    }
                                }else {
                                    // 距离
                                    tCompanyResp=new TCompanyResp();
                                    // 1条数据  不需要zipcode
                                    DistancematrixVo distancematrix = googleMapUtil.getDistancematrix(address, address1);
                                    double distance = distancematrix.getDistance().doubleValue();
                                    BigDecimal bigDecimal = new BigDecimal(distance * 0.0006214);
                                    List<TCompanyBasic> type1 = companyBasicService.selectList(new EntityWrapper<TCompanyBasic>().eq("type", 3).eq("port_id",ratesId).le("start",bigDecimal.doubleValue()).orderBy("start",true));
                                    if(type1.size()>0) {
                                        BigDecimal multiply = type1.get(0).getFee().multiply(bigDecimal);
                                        tCompanyResp.setPrice(multiply);
                                        tCompanyResp.setName("LH+FSC");
                                        objects.add(tCompanyResp);
                                    }else {
                                        breakNum=1;
                                        count++;
                                        break;
                                    }
                                }
                            }
 
                        }else {
                            tCompanyResp=new TCompanyResp();
                            TWarehouse tWarehouse = warehouseService.selectOne(new EntityWrapper<TWarehouse>().eq("company_id", company.getId()).eq("code", demandDto.getWarehouse()).eq("port_id",ratesId));
                            tCompanyResp.setName(UserFeeSettingEnum.LH_FSH.getDesc());
                            if(Objects.nonNull(tWarehouse)){
                                tCompanyResp.setPrice(tWarehouse.getWarePrice());
                            }else {
                                tCompanyResp.setPrice(new BigDecimal("0"));
                            }
                            objects.add(tCompanyResp);
                        }
 
                        // 是否超重
                        Integer weight = goodsDto.getWeight();
                        long between = DateUtil.between(demandDto.getShipmentDate(), demandDto.getDeliveryDate(), DateUnit.DAY);
                        if(between==0){
                            between=1;
                        }
                        if(weight==1){
                            TCompanyFeeSetting feeSetting = companyFeeSettingService.selectOne(new EntityWrapper<TCompanyFeeSetting>().eq("company_id", company.getId()).eq("rates_id",ratesId).eq("set_name", UserFeeSettingEnum.OVERWEIGHT.getDesc()));
                            tCompanyResp.setName(UserFeeSettingEnum.OVERWEIGHT.getDesc());
                            tCompanyResp.setPrice(feeSetting.getSetValue());
                            objects.add(tCompanyResp);
                            TCompanyFeeSetting feeSetting1 = companyFeeSettingService.selectOne(new EntityWrapper<TCompanyFeeSetting>().eq("company_id", company.getId()).eq("rates_id",ratesId).eq("set_name", "trl-axle chassis"));
                            tCompanyResp=new TCompanyResp();
                            tCompanyResp.setName(UserFeeSettingEnum.CHASSIS_FEE.getDesc());
                            tCompanyResp.setPrice(feeSetting1.getSetValue().multiply(new BigDecimal(between)));
                            objects.add(tCompanyResp);
                        }else {
                            tCompanyResp=new TCompanyResp();
                            tCompanyResp.setName(UserFeeSettingEnum.CHASSIS_FEE.getDesc());
                            TCompanyFeeSetting feeSetting = companyFeeSettingService.selectOne(new EntityWrapper<TCompanyFeeSetting>().eq("company_id", company.getId()).eq("rates_id",ratesId).eq("set_name", "Pool chassis"));
                            if(feeSetting==null){
 
                            }else {
                                tCompanyResp.setPrice(feeSetting.getSetValue().multiply(new BigDecimal(between)));
                            }
                            objects.add(tCompanyResp);
                        }
                        // type
                        if ("Live Unload".equals(demandDto.getType())) {
                            // 计算当前公司的价格
                            tCompanyResp=new TCompanyResp();
                            BigDecimal setValue = companyFeeSettingService.selectOne(new EntityWrapper<TCompanyFeeSetting>().eq("company_id", company.getId()).eq("rates_id",ratesId).eq("set_name", UserFeeSettingEnum.PREPULL.getDesc())).getSetValue();
                            tCompanyResp.setName(UserFeeSettingEnum.PREPULL.getDesc());
                            tCompanyResp.setPrice(setValue);
                            objects.add(tCompanyResp);
                        }
                        // 滞留费
                        tCompanyResp=new TCompanyResp();
                        BigDecimal setValue = companyFeeSettingService.selectOne(new EntityWrapper<TCompanyFeeSetting>().eq("company_id", company.getId()).eq("rates_id",ratesId).eq("set_name", UserFeeSettingEnum.DETENTION_CONGESTION.getDesc())).getSetValue();
                        tCompanyResp.setName(UserFeeSettingEnum.DETENTION_CONGESTION.getDesc());
                        tCompanyResp.setPrice(setValue);
                        objects.add(tCompanyResp);
 
                        if(goodsDto.getDanger()==1){
                            tCompanyResp=new TCompanyResp();
                            BigDecimal setValue1 = companyFeeSettingService.selectOne(new EntityWrapper<TCompanyFeeSetting>().eq("company_id", company.getId()).eq("rates_id",ratesId).eq("set_name", UserFeeSettingEnum.HAZMAT.getDesc())).getSetValue();
                            tCompanyResp.setName(UserFeeSettingEnum.HAZMAT.getDesc());
                            tCompanyResp.setPrice(setValue1);
                            objects.add(tCompanyResp);
                        }
                        if(demandDto.getUrgent()==1){
                            tCompanyResp=new TCompanyResp();
                            BigDecimal setValue1 = companyFeeSettingService.selectOne(new EntityWrapper<TCompanyFeeSetting>().eq("company_id", company.getId()).eq("rates_id",ratesId).eq("set_name", UserFeeSettingEnum.URGENT_SEE.getDesc())).getSetValue();
                            tCompanyResp.setName(UserFeeSettingEnum.URGENT_SEE.getDesc());
                            tCompanyResp.setPrice(setValue1);
                            objects.add(tCompanyResp);
                        }
                        if(demandDto.getPiperpass()==1){
                            tCompanyResp=new TCompanyResp();
                            BigDecimal setValue1 = companyFeeSettingService.selectOne(new EntityWrapper<TCompanyFeeSetting>().eq("company_id", company.getId()).eq("rates_id",ratesId).eq("set_name", UserFeeSettingEnum.PIERPASS.getDesc())).getSetValue();
                            tCompanyResp.setName(UserFeeSettingEnum.PIERPASS.getDesc());
                            tCompanyResp.setPrice(setValue1);
                            objects.add(tCompanyResp);
                        }
                        if(demandDto.getCTF()==1){
                            tCompanyResp=new TCompanyResp();
                            BigDecimal setValue1 = companyFeeSettingService.selectOne(new EntityWrapper<TCompanyFeeSetting>().eq("company_id", company.getId()).eq("rates_id",ratesId).eq("set_name", UserFeeSettingEnum.CTF.getDesc())).getSetValue();
                            tCompanyResp.setName(UserFeeSettingEnum.CTF.getDesc());
                            tCompanyResp.setPrice(setValue1);
                            objects.add(tCompanyResp);
                        }
 
 
 
                        BigDecimal bigDecimal = objects.stream().map(e -> e.getPrice()==null?new BigDecimal(0):e.getPrice()).reduce(BigDecimal::add).get();
                        // 生成订单
                        TOrder tOrder = new TOrder();
                        tOrder.setCity(city.getId());
                        tOrder.setState(state.getId());
                        tOrder.setUserId(demandDto.getUserId());
                        tOrder.setAccessorial(demandDto.getAccessorial());
                        tOrder.setAccessorialStr(demandDto.getAccessorialStr());
                        tOrder.setPort(demandDto.getPortId());
                        tOrder.setShipmentDate(demandDto.getShipmentDate());
                        tOrder.setDeliveryDate(demandDto.getDeliveryDate());
                        tOrder.seteZipZ(s1);
                        tOrder.setCreateTime(new Date());
                        tOrder.setStartLat("1");
                        tOrder.setStartLon("1");
                        tOrder.setDeliveryStr(demandDto.getDelivery());
                        tOrder.setType(demandDto.getType());
                        tOrder.setZipCode(demandDto.getZipCode());
                        if("0".equals(demandDto.getWarehouse())){
                            tOrder.seteAddress(demandDto.getZipCode());
                        }else {
                            TWarehouse tWarehouse = warehouseService.selectOne(new EntityWrapper<TWarehouse>().eq("company_id", company.getId()).eq("code", demandDto.getWarehouse()).eq("port_id",ratesId));
                            tOrder.seteAddress(tWarehouse.getAddress());
                        }
 
                        tOrder.setWarehouse(demandDto.getWarehouse());
                        tOrder.setStatus("17");
                        tOrder.setInvoiceNumber(s2);
                        tOrder.setCompanyId(company.getId());
                        tOrder.setCreateTime(new Date());
                        orderService.insert(tOrder);
                        tOrders.add(tOrder);
                        tOrder.setAllTotal(bigDecimal);
                        orderService.updateById(tOrder);
                        objects.stream().forEach(e->e.setOrderId(tOrder.getId()));
 
                        TGoods tGoods = new TGoods();
                        tGoods.setShippingLine(goodsListDto.getShippingLine());
                        tGoods.setDanger(goodsListDto.getDanger());
                        tGoods.setKg(goodsDto.getKg());
                        tGoods.setOrderId(tOrder.getId());
                        tGoods.setSize(goodsDto.getSize());
                        tGoods.setType(goodsDto.getType());
                        tGoods.setWeight(goodsListDto.getWeight());
                        tGoods.setTypeClass(goodsDto.getTypeClass());
                        tGoods.setLineStr(goodsDto.getLineStr());
                        tGoods1.add(tGoods);
                    }
                    goodsService.insertBatch(tGoods1);
 
 
                    String randomNumber = getRandomNumber(10);
                    for (TCompanyResp object : objects) {
                        TPrice tPrice = new TPrice();
                        tPrice.setCreateTime(new Date());
                        tPrice.setOrderId(object.getOrderId());
                        tPrice.setState("1");
                        tPrice.setPrice(object.getPrice());
                        tPrice.setType(object.getName());
                        tPrice.setStatus(1);
                        tPrice.setNumber(randomNumber);
                        tPrices.add(tPrice);
                    }
                    priceService.insertBatch(tPrices);
                }
 
                tCompanyCalculationResp.setOrderList(tOrders);
 
 
//                if(CollectionUtil.isNotEmpty(tUserFeeSettings)){
//                    for (TCompanyResp object : objects) {
//                        TPrice tPrice = new TPrice();
//                        tPrice.setCreateTime(new Date());
//                        tPrice.setOrderId(object.getOrderId());
//                        tPrice.setState("1");
//                        tPrice.setPrice(object.getPrice());
//                        tPrice.setType(object.getName());
//                        tPrices.add(tPrice);
//                        for (TUserFeeSetting tUserFeeSetting : tUserFeeSettings) {
//                            if(object.getName().equals(tUserFeeSetting.getName())){
//                                double i = (double)tUserFeeSetting.getFee() / 100;
//                                BigDecimal multiply = object.getPrice().multiply(new BigDecimal(i));
//                            }
//                        }
//                    }
//                }else {
//                    for (TCompanyResp object : objects) {
//                        TPrice tPrice = new TPrice();
//                        tPrice.setCreateTime(new Date());
//                        tPrice.setOrderId(object.getOrderId());
//                        tPrice.setState("1");
//                        tPrice.setPrice(object.getPrice());
//                        tPrice.setType(object.getName());
//                        tPrices.add(tPrice);
//
//                    }
//                }
//                priceService.insertBatch(tPrices);
                tCompanyCalculationResp.setList(objects);
                tCompanyCalculationResp.setCarGoNumber(String.valueOf(company.getMcNumber()));
                tCompanyCalculationResp.setCompanyId(company.getId());
                tCompanyCalculationResp.setCompanyName(company.getName());
                tCompanyCalculationResp.setImg(company.getHeadImg());
                tCompanyCalculationResp.setExpirationDate(company.getExpirationTime());
 
                // 起点经纬度
                tCompanyCalculationResp.setStartLon(String.valueOf(1));
                tCompanyCalculationResp.setStartLat(String.valueOf(1));
 
                // 目的地经纬度
                if("0".equals(demandDto.getWarehouse())){
                    TWarehouse tWarehouse = warehouseService.selectOne(new EntityWrapper<TWarehouse>().eq("company_id", company.getId()).eq("code", demandDto.getWarehouse()).eq("port_id",ratesId));
                    GeocodeVo geocode1 = googleMapUtil.getGeocode(tWarehouse.getAddress());
                    tCompanyCalculationResp.setEndLon(String.valueOf(geocode1.getLng()));
                    tCompanyCalculationResp.setEndLat(String.valueOf(geocode1.getLat()));
                    tCompanyCalculationRespList.add(tCompanyCalculationResp);
                }else {
                    String zipCode = demandDto.getZipCode();
//                    GeocodeVo geocode1 = googleMapUtil.getGeocode(zipCode);
//                    tCompanyCalculationResp.setEndLat(String.valueOf(geocode1.getLat()));
//                    tCompanyCalculationResp.setEndLon(String.valueOf(geocode1.getLng()));
                    tCompanyCalculationResp.setEndLat(String.valueOf(1));
                    tCompanyCalculationResp.setEndLon(String.valueOf(1));
                    tCompanyCalculationRespList.add(tCompanyCalculationResp);
                }
 
 
            }
            if(count==companies.size()){
                return  new ErrorTip(5001,"No truck company was matched to meet the demand");
            }
 
        }
        for (TCompanyCalculationResp tCompanyCalculationResp : tCompanyCalculationRespList) {
            tCompanyCalculationResp.setQuoteId(tQuote.getId());
        }
        return new SuccessTip(tCompanyCalculationRespList);
    }
 
 
 
    public static String getRandomNumber(int length) {
        String base = "0123456789";
        Random random = new Random();
        StringBuffer sb = new StringBuffer();
 
        for(int i = 0; i < length; ++i) {
            int number = random.nextInt(base.length());
            sb.append(base.charAt(number));
        }
 
        return sb.toString();
    }
 
 
 
 
    @ApiOperation(value = "支付前获取订单信息",notes="支付前获取订单信息")
    @ApiImplicitParams({
            @ApiImplicitParam(name = "Authorization", value = "用户token(Bearer +token)", required = true, dataType = "String", paramType = "header", defaultValue = "Bearer eyJhbGciOiJIUzUxMiJ9....."),
            @ApiImplicitParam(name = "id", value = "需求id", required = true, dataType = "Long"),
    })
    @GetMapping(value = "/getQuotaFromIdForPay")
    @ResponseBody
    public Object getQuotaFromIdForPay(Long id) {
        TQuote quote = quoteService.selectById(id);
        List<TOrder> orders = orderService.selectList(new EntityWrapper<TOrder>().eq("e_zip_z", quote.getOrderId()).eq("status", 0));
        ArrayList<TGoods> goods = new ArrayList<>();
        BigDecimal bigDecimal = new BigDecimal(0);
        ArrayList<TPrice> tPrices = new ArrayList<>();
        for (TOrder order : orders) {
            TGoods tGoods = goodsService.selectOne(new EntityWrapper<TGoods>().eq("order_id", order.getId()));
            goods.add(tGoods);
            bigDecimal=bigDecimal.add(order.getAllTotal());
            List<TPrice> prices = priceService.selectList(new EntityWrapper<TPrice>().eq("order_id", order.getId()));
            tPrices.addAll(prices);
        }
        Map<String, BigDecimal> sumMap = tPrices.stream()
                .collect(Collectors.groupingBy(TPrice::getType, Collectors.reducing(BigDecimal.ZERO, TPrice::getPrice, BigDecimal::add)));
        List<PriceList> pricesList = sumMap.entrySet().stream()
                .map(entry -> new PriceList(entry.getKey(), entry.getValue()))
                .collect(Collectors.toList());
        Integer userId = orders.get(0).getUserId();
        TUser tUser = userService.selectById(userId);
        String residueLimit = tUser.getResidueLimit();
        HashMap<String, Object> map = new HashMap<>();
        map.put("money",bigDecimal);
        map.put("data",goods);
        map.put("residueLimit",residueLimit);
        map.put("prices",pricesList);
        return new SuccessTip(map);
    }
 
 
 
    @ApiOperation(value = "发布需求-第二步/修改需求",notes="发布需求-第二步/修改需求")
    @ApiImplicitParams({
            @ApiImplicitParam(name = "Authorization", value = "用户token(Bearer +token)", required = true, dataType = "String", paramType = "header", defaultValue = "Bearer eyJhbGciOiJIUzUxMiJ9....."),
    })
    @PostMapping(value = "/updateDemandTwo")
    @ResponseBody
    public Object updateDemandTwo(@RequestBody DemandTwoDto demandDtoTwo) {
        Set<Long> integers = new HashSet<>();
        for (DemandDtoTwo dtoTwo : demandDtoTwo.getDemandDtoTwo()) {
            List<TGoods> list = dtoTwo.getList();
            for (TGoods tGoods : list) {
                integers.add(tGoods.getOrderId());
            }
            goodsService.updateBatchById(list);
        }
        List<TOrder> orders = new ArrayList<>();
        for (DemandDtoTwo dtoTwo : demandDtoTwo.getDemandDtoTwo()) {
            TOrder tOrder = new TOrder();
            BeanUtil.copyProperties(dtoTwo,tOrder);
            orders.add(tOrder);
        }
        List<TUserFeeSetting> tUserFeeSettings =null;
        Long next = integers.iterator().next();
        TOrder tOrder1 = orderService.selectById(next);
        Integer userId = tOrder1.getUserId();
        TUser tUser = userService.selectById(userId);
        if(tUser.getGroupId()!=null){
            TGroup tGroup = groupService.selectById(tUser.getGroupId());
            tUserFeeSettings = userFeeSettingService.selectList(new EntityWrapper<TUserFeeSetting>().eq("user_id", tGroup.getSalesId()));
        }
 
        for (Long order : integers) {
            TOrder tOrder = orderService.selectById(order);
            String s = tOrder.geteZipZ();
            TQuote quote = quoteService.selectOne(new EntityWrapper<TQuote>().eq("order_id", s));
            quote.setState(1);
            quoteService.updateById(quote);
            tOrder.setStatus("0");
            BigDecimal bigDecimal = new BigDecimal(0);
            // 通过每个订单  找出当前的用户的sale  找出提成算出应给卡车公司的价格
            List<TPrice> prices = priceService.selectList(new EntityWrapper<TPrice>().eq("order_id", order));
            if(tUserFeeSettings!=null){
                for (TUserFeeSetting tUserFeeSetting : tUserFeeSettings) {
                    for (TPrice price : prices) {
                        if(tUserFeeSetting.getName().equals(price.getType())){
                            double v = (double) tUserFeeSetting.getFee() / 100;
                            BigDecimal multiply = price.getPrice().multiply(new BigDecimal(v));
                            // 付卡车的钱
                            BigDecimal subtract = price.getPrice().subtract(multiply);
                            price.setCarPrice(subtract);
                            bigDecimal = bigDecimal.add(subtract);
                        }else {
                            price.setCarPrice(price.getPrice());
                            bigDecimal = bigDecimal.add(price.getPrice());
                        }
                    }
                }
            }else {
                prices.stream().forEach(e->e.setCarPrice(e.getPrice()));
            }
            priceService.updateBatchById(prices);
            tOrder.setPayMoney(bigDecimal);
            orderService.updateById(tOrder);
 
        }
        return new SuccessTip();
    }
 
    @ApiOperation(value = "发布需求-第二步-通过订单id查询货物",notes="发布需求-第二步-通过订单id查询货物")
    @ApiImplicitParams({
            @ApiImplicitParam(name = "Authorization", value = "用户token(Bearer +token)", required = true, dataType = "String", paramType = "header", defaultValue = "Bearer eyJhbGciOiJIUzUxMiJ9....."),
    })
    @PostMapping(value = "/queryDemandTwo")
    @ResponseBody
    public Object queryDemandTwo(@RequestBody String ids) {
        List<String> strings = Arrays.asList(ids.split(","));
 
        List<TGoods> goods = goodsService.selectList(new EntityWrapper<TGoods>().in("order_id", strings));
        return new SuccessTip(goods);
 
    }
 
    @ApiOperation(value = "需求列表",notes="需求列表")
    @ApiImplicitParams({
            @ApiImplicitParam(name = "Authorization", value = "用户token(Bearer +token)", required = true, dataType = "String", paramType = "header", defaultValue = "Bearer eyJhbGciOiJIUzUxMiJ9....."),
    })
    @PostMapping(value = "/queryDemandList")
    @ResponseBody
    public Object queryDemandList( @RequestBody QueryDemandListDto queryDemandListDto ) {
        Page<DemandListVo> objectPage = new Page<>(queryDemandListDto.getPageNumber(),queryDemandListDto.getPageSize());
        List<DemandListVo> list = new ArrayList<>();
        list = quoteService.queryDemandList(objectPage,queryDemandListDto.getTime(),queryDemandListDto.getState(),queryDemandListDto.getUserId(),queryDemandListDto.getAccount());
        objectPage.setRecords(list);
        return new SuccessTip(objectPage);
    }
 
    @ApiOperation(value = "需求列表导出",notes="需求列表导出")
    @ApiImplicitParams({
            @ApiImplicitParam(name = "Authorization", value = "用户token(Bearer +token)", required = true, dataType = "String", paramType = "header", defaultValue = "Bearer eyJhbGciOiJIUzUxMiJ9....."),
    })
    @GetMapping(value = "/demandListExport")
    @ResponseBody
    public Object demandListExport( String time,Integer state,Integer userId,String account, HttpServletResponse response ) {
        List<DemandListVo> list = new ArrayList<>();
        list = quoteService.queryDemandListExport(time,state,userId,account);
        try {
            Date date = new Date();
            DateFormat format = new SimpleDateFormat("yyyyMMdd");
            String time1 = format.format(date);
            String fileName = "Quote"+time1+".xls";
            String[] title = new String[] {"ID","CUSTOMER","PICKUP DATE","ORIGIN","DESTINATION",
                    "LOAD","STATE"};
            String[][] values = new String[list.size()][];
            for (int i = 0; i < list.size(); i++) {
                DemandListVo d = list.get(i);
                values[i] = new String[title.length];
                values[i][0] = d.getId().toString();
                values[i][1] = d.getUserCompanyName()+"、"+d.getUserId();
                values[i][2] = d.getPickupDate()==null?"":d.getPickupDate().toString();
                values[i][3] = d.getOrigin();
                values[i][4] = d.getDestination();
                values[i][5] = d.getWeight();
                values[i][6] = d.getState()==0?"In quotation":(d.getState()==1?"Pending payment":"canceled");
            }
            HSSFWorkbook wb = ExcelUtil.getHSSFWorkbook("Quote"+time1, title, values, null);
            this.setResponseHeader(response, fileName);
            OutputStream os = response.getOutputStream();
            wb.write(os);
            os.flush();
            os.close();
 
        } catch (Exception e) {
            e.printStackTrace();
            return new ErrorTip(5001,"ERROR");
        }
        return SUCCESS_TIP;
 
 
    }
 
    private void setResponseHeader(HttpServletResponse response, String fileName) {
        try {
            /*try {
                fileName = new String(fileName.getBytes(), "UTF-8");
            } catch (UnsupportedEncodingException e) {
                e.printStackTrace();
            }*/
            response.setContentType("application/octet-stream;charset=UTF-8");
            response.setHeader("Content-Disposition", "attachment;filename=" + new String(fileName.getBytes(),"iso-8859-1"));
            response.addHeader("Pargam", "no-cache");
            response.addHeader("Cache-Control", "no-cache");
        } catch (Exception ex) {
            ex.printStackTrace();
        }
    }
 
    @ApiOperation(value = "删除需求",notes="删除需求")
    @ApiImplicitParams({
            @ApiImplicitParam(name = "Authorization", value = "用户token(Bearer +token)", required = true, dataType = "String", paramType = "header", defaultValue = "Bearer eyJhbGciOiJIUzUxMiJ9....."),
            @ApiImplicitParam(name = "id", value = "需求id", required = true, dataType = "Long"),
    })
    @PostMapping(value = "/deleteDemand")
    @ResponseBody
    public Object deleteDemand( Long id ) {
        TQuote tQuote = quoteService.selectById(id);
        tQuote.setState(3);
        quoteService.updateById(tQuote);
        return new SuccessTip();
    }
 
 
 
    @ApiOperation(value = "获取state",notes="获取state")
    @ApiImplicitParams({
            @ApiImplicitParam(name = "Authorization", value = "用户token(Bearer +token)", required = true, dataType = "String", paramType = "header", defaultValue = "Bearer eyJhbGciOiJIUzUxMiJ9....."),
            @ApiImplicitParam(name = "name", value = "state name", required = false, dataType = "String"),
    })
    @GetMapping(value = "/getState")
    @ResponseBody
    public Object getState( String name) {
        EntityWrapper<TCountry> tCountryEntityWrapper = new EntityWrapper<>();
        tCountryEntityWrapper.eq("type",2).eq("remove",0);
        if(Objects.nonNull(name)){
            tCountryEntityWrapper.like("name",name);
        }
        List<TCountry> tCountries = service.selectList(tCountryEntityWrapper);
        return new SuccessTip(tCountries);
    }
 
    @ApiOperation(value = "获取city",notes="获取city")
    @ApiImplicitParams({
            @ApiImplicitParam(name = "Authorization", value = "用户token(Bearer +token)", required = true, dataType = "String", paramType = "header", defaultValue = "Bearer eyJhbGciOiJIUzUxMiJ9....."),
            @ApiImplicitParam(name = "name", value = "city name", required = false, dataType = "String"),
            @ApiImplicitParam(name = "id", value = "state id", required = true, dataType = "String"),
    })
    @GetMapping(value = "/getCity")
    @ResponseBody
    public Object getState( String name,Integer id) {
        EntityWrapper<TCountry> tCountryEntityWrapper = new EntityWrapper<>();
        tCountryEntityWrapper.eq("type",3).eq("remove",0).eq("parent_id",id);
        if(Objects.nonNull(name)){
            tCountryEntityWrapper.like("name",name);
        }
        List<TCountry> tCountries = service.selectList(tCountryEntityWrapper);
        return new SuccessTip(tCountries);
    }
 
 
    @ApiOperation(value = "获取port",notes="获取port")
    @ApiImplicitParams({
            @ApiImplicitParam(name = "Authorization", value = "用户token(Bearer +token)", required = true, dataType = "String", paramType = "header", defaultValue = "Bearer eyJhbGciOiJIUzUxMiJ9....."),
            @ApiImplicitParam(name = "name", value = "port name", required = false, dataType = "String"),
            @ApiImplicitParam(name = "id", value = "city id", required = true, dataType = "String"),
    })
    @GetMapping(value = "/getPort")
    @ResponseBody
    public Object getPort( String name,Integer id) {
        EntityWrapper<TPort> wrapper = new EntityWrapper<>();
        wrapper.eq("remove",0).eq("city",id);
        if(Objects.nonNull(name)){
            wrapper.like("name",name);
        }
        List<TPort> tCountries = itPortService.selectList(wrapper);
        return new SuccessTip(tCountries);
    }
 
 
    @ApiOperation(value = "获取亚马逊仓库",notes="获取亚马逊仓库")
    @ApiImplicitParams({
            @ApiImplicitParam(name = "Authorization", value = "用户token(Bearer +token)", required = true, dataType = "String", paramType = "header", defaultValue = "Bearer eyJhbGciOiJIUzUxMiJ9....."),
            @ApiImplicitParam(name = "address", value = "address", required = false, dataType = "String"),
            @ApiImplicitParam(name = "pageNumber", value = "pageNumber", required = true, dataType = "String"),
            @ApiImplicitParam(name = "pageSize", value = "pageSize", required = true, dataType = "String"),
    })
    @GetMapping(value = "/getWarehouse")
    @ResponseBody
    public Object getWarehouse( String address,int pageNumber,int pageSize) {
        Page<TWarehouse> tWarehousePage = new Page<>(pageNumber, pageSize);
 
        EntityWrapper<TWarehouse> tWarehouseEntityWrapper = new EntityWrapper<>();
        tWarehouseEntityWrapper.eq("company_id",1);
        if(Objects.nonNull(address)){
            tWarehouseEntityWrapper.like("address",address);
        }
        Page<TWarehouse> tWarehousePage1 = warehouseService.selectPage(tWarehousePage, tWarehouseEntityWrapper);
 
        return new SuccessTip(tWarehousePage1);
    }
 
    @ApiOperation(value = "获取服务",notes="获取服务")
    @ApiImplicitParams({
            @ApiImplicitParam(name = "Authorization", value = "用户token(Bearer +token)", required = true, dataType = "String", paramType = "header", defaultValue = "Bearer eyJhbGciOiJIUzUxMiJ9....."),
    })
    @GetMapping(value = "/getServices")
    @ResponseBody
    public Object getServices() {
        List<TCompanyService> companyServiceList = tCompanyServiceService.selectList(new EntityWrapper<TCompanyService>().eq("company_id", 2));
        return new SuccessTip(companyServiceList);
    }
 
    @ApiOperation(value = "根据需求id获取需求",notes="根据需求id获取需求")
    @ApiImplicitParams({
            @ApiImplicitParam(name = "Authorization", value = "用户token(Bearer +token)", required = true, dataType = "String", paramType = "header", defaultValue = "Bearer eyJhbGciOiJIUzUxMiJ9....."),
            @ApiImplicitParam(name = "id", value = "需求id", required = true, dataType = "Long"),
    })
    @GetMapping(value = "/getQuotaFromId")
    @ResponseBody
    public Object getQuotaFromId(Long id) {
        TCompanyCalculationRespOne list =tCompanyService.getQuotaFromId(id);
        return new SuccessTip(list);
    }
 
 
    @ApiOperation(value = "根据需求id获取需求-选择公司",notes="根据需求id获取需求-选择公司")
    @ApiImplicitParams({
            @ApiImplicitParam(name = "Authorization", value = "用户token(Bearer +token)", required = true, dataType = "String", paramType = "header", defaultValue = "Bearer eyJhbGciOiJIUzUxMiJ9....."),
            @ApiImplicitParam(name = "id", value = "需求id", required = true, dataType = "Long"),
            @ApiImplicitParam(name = "companyId", value = "companyId", required = true, dataType = "int"),
    })
    @GetMapping(value = "/getQuotaFromIdAndCompanyId")
    @ResponseBody
    public Object getQuotaFromIdAndCompanyId(Long id,Integer companyId) {
        TCompanyCalculationRespOne list =tCompanyService.getQuotaFromIdAndCompanyId(id,companyId);
        return new SuccessTip(list);
    }
 
 
}