yujian
2019-11-26 2d3afb55aed07f9780ab46aefbdc7d520cdff576
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
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
package com.yeshi.fanli.controller.admin;
 
import java.io.PrintWriter;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
 
import javax.annotation.Resource;
import javax.servlet.http.HttpServletRequest;
 
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.yeshi.utils.JsonUtil;
 
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.google.gson.reflect.TypeToken;
import com.yeshi.fanli.entity.bus.clazz.GoodsClass;
import com.yeshi.fanli.entity.bus.lable.QualityFactory;
import com.yeshi.fanli.entity.common.AdminUser;
import com.yeshi.fanli.entity.taobao.PidUser;
import com.yeshi.fanli.entity.taobao.SearchFilter;
import com.yeshi.fanli.entity.taobao.TaoBaoGoodsBrief;
import com.yeshi.fanli.entity.taobao.TaoBaoSearchNav;
import com.yeshi.fanli.entity.taobao.TaoBaoSearchResult;
import com.yeshi.fanli.entity.taobao.TaoBaoUnionConfig;
import com.yeshi.fanli.entity.taobao.TaobaoMeterial;
import com.yeshi.fanli.entity.taobao.dataoke.DaTaoKeDetail;
import com.yeshi.fanli.service.inter.goods.GoodsClassService;
import com.yeshi.fanli.service.inter.goods.TaoBaoClassService;
import com.yeshi.fanli.service.inter.goods.TaoBaoGoodsBriefService;
import com.yeshi.fanli.service.inter.lable.QualityFactoryService;
import com.yeshi.fanli.service.inter.taobao.TaoBaoUnionConfigService;
import com.yeshi.fanli.service.inter.taobao.TaobaoMeterialService;
import com.yeshi.fanli.service.inter.taobao.dataoke.DaTaoKeGoodsDetailService;
import com.yeshi.fanli.tag.PageEntity;
import com.yeshi.fanli.util.Constant;
import com.yeshi.fanli.util.MoneyBigDecimalUtil;
import com.yeshi.fanli.util.StringUtil;
import com.yeshi.fanli.util.taobao.TaoBaoUtil;
import com.yeshi.fanli.util.taobao.TaoKeApiUtil;
 
import net.sf.json.JSONObject;
 
@Controller
@RequestMapping("admin/new/api/v1/taobao")
public class TaoBaoGoodsBriefAdminController {
 
    @Resource
    private TaoBaoGoodsBriefService taoBaoGoodsBriefService;
 
    @Resource
    private QualityFactoryService qualityFactoryService;
 
    @Resource
    private TaoBaoUnionConfigService taoBaoUnionConfigService;
 
    @Resource
    private TaobaoMeterialService taobaoMeterialService;
    @Resource
    private GoodsClassService goodsClassService;
 
    @Resource
    private TaoBaoClassService taoBaoClassService;
    
    @Resource
    private DaTaoKeGoodsDetailService daTaoKeGoodsDetailService;
 
    /**
     * 
     * @param callback
     * @param pageIndex
     * @param key
     *            关键词
     * @param startPrice
     *            价格小值
     * @param endPrice
     *            价格大值
     * @param startTkRate
     *            佣金小值
     * @param endTkRate
     *            佣金大值
     * @param sort
     *            排序
     * @param out
     */
    @RequestMapping(value = "queryOnSale")
    public void queryOnSale(String callback, Integer pageIndex, Integer pageSize, String key, Long tbClassId,
            Integer startPrice, Integer endPrice, String startTkRate, String endTkRate, Integer sort, Integer istmall,
            Integer hasCoupon, Integer baoYou, Integer startDsr, Integer overseas, Integer needPrepay,
            Integer includePayRate30, Integer includeGoodRate, Integer includeRfdRate, Integer npxLevel, String cid,
            PrintWriter out) {
 
        try {
            // 查询物料
            TaoBaoSearchResult result = getGoodsByWuLiao(pageIndex, pageSize, key, tbClassId, startPrice, endPrice,
                    startTkRate, endTkRate, sort, istmall, hasCoupon, baoYou, startDsr, overseas, needPrepay,
                    includePayRate30, includeGoodRate, includeRfdRate, npxLevel,cid);
 
            if (result == null) {
                JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("未获取到淘宝商品信息"));
                return;
            }
 
            List<TaoBaoGoodsBrief> listTaoBaoGoods = result.getTaoBaoGoodsBriefs();
            if (listTaoBaoGoods == null || listTaoBaoGoods.size() == 0) {
                JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("未查询到淘宝商品信息"));
                return;
            }
 
            // 插入商品集合
            List<Long> listAuctionId = new ArrayList<Long>();
            for (TaoBaoGoodsBrief goodsBrief : listTaoBaoGoods) {
                listAuctionId.add(goodsBrief.getAuctionId());
            }
 
            // 验证是否存在数据库
            List<QualityFactory> listHas = qualityFactoryService.listQueryByAuctionId(listAuctionId);
 
            List<Map<String, Object>> listmap = new ArrayList<Map<String, Object>>();
 
            for (TaoBaoGoodsBrief taoBaoGoodsBrief : listTaoBaoGoods) {
 
                taoBaoGoodsBrief.setId(null);
 
                Map<String, Object> map = new HashMap<String, Object>();
 
                map.put("pictUrl", taoBaoGoodsBrief.getPictUrl());
                map.put("title", taoBaoGoodsBrief.getTitle());
                map.put("auctionId", taoBaoGoodsBrief.getAuctionId());
                map.put("auctionUrl", taoBaoGoodsBrief.getAuctionUrl());
                map.put("shopTitle", taoBaoGoodsBrief.getShopTitle());
                map.put("zkPrice", taoBaoGoodsBrief.getZkPrice());
                map.put("biz30day", taoBaoGoodsBrief.getBiz30day());
                map.put("couponInfo", taoBaoGoodsBrief.getCouponInfo());
                map.put("couponTotalCount", taoBaoGoodsBrief.getCouponTotalCount());
                map.put("couponLeftCount", taoBaoGoodsBrief.getCouponLeftCount());
                map.put("couponEffectiveEndTime", taoBaoGoodsBrief.getCouponEffectiveEndTime());
                map.put("tkRate", taoBaoGoodsBrief.getTkRate());
 
                /* 商品销售状态: 0 在售 此获取的淘宝信息均为在售商品 */
                map.put("saleStae", 0);
                // 来源 0 无 1淘宝 2 京东
                map.put("goodsSource", 1);
 
                /* 1 定向计划 2 营销返利 、高佣 3 普佣 */
                Integer includeDxjh = taoBaoGoodsBrief.getIncludeDxjh();
                String tkMktStatus = taoBaoGoodsBrief.getTkMktStatus();
 
                boolean include = false;
                if (includeDxjh != null) {
                    if (includeDxjh == 1) {
                        // 定向计划
                        map.put("yongjinType", 1);
                        include = true;
                    }
                }
 
                if (!include) {
 
                    if ("1".equals(tkMktStatus)) {
                        // 营销返利 、高佣
                        map.put("yongjinType", 2);
                    } else {
                        // 普佣
                        map.put("yongjinType", 3);
                    }
                }
 
                /* 券后价--计算 */
                BigDecimal couponPrice = TaoBaoUtil.getAfterUseCouplePrice(taoBaoGoodsBrief);
                map.put("couponPrice", couponPrice);
 
                /* 预计收益: 公司、用户 */
                BigDecimal tkRate = taoBaoGoodsBrief.getTkRate();
                BigDecimal zkPrice = taoBaoGoodsBrief.getZkPrice();
                BigDecimal profit = MoneyBigDecimalUtil.mul(tkRate, zkPrice);
                // 计算结果
                BigDecimal estimateProfit = MoneyBigDecimalUtil.div(profit, new BigDecimal("100"));
 
                // 预计收益
                map.put("estimateProfit", estimateProfit);
 
                int existence = 0;
 
                /* 查询商品是否已存在商品精选库中 */
                Long localAuctionId = taoBaoGoodsBrief.getAuctionId();
                if (localAuctionId != null) {
                    if (listHas != null && listHas.size() > 0) {
                        for (QualityFactory selectionGoods : listHas) {
                            TaoBaoGoodsBrief hasgoodsBrief = selectionGoods.getTaoBaoGoodsBrief();
                            Long hasId = hasgoodsBrief.getAuctionId();
                            if (localAuctionId.equals(hasId) || localAuctionId == hasId) {
                                existence = 1; // 存在商品中
                            }
                        }
                    }
                }
 
                map.put("isExistence", existence);
 
                listmap.add(map);
            }
 
            PageEntity pe = result.getPageEntity();
 
            JSONObject data = new JSONObject();
            GsonBuilder gsonBuilder = new GsonBuilder();
            gsonBuilder.serializeNulls(); // 重点
            Gson gson = gsonBuilder.setDateFormat("yyyy-MM-dd").create();
 
            data.put("pe", pe);
            data.put("listGoods", gson.toJson(listmap));
 
            JsonUtil.printMode(out, callback, JsonUtil.loadTrueResult(data));
 
        } catch (Exception e) {
            JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("查询异常"));
            e.printStackTrace();
        }
 
    }
 
    /**
     * 加入精选库商品
     * 
     * @param callback
     * @param pageIndex
     * @param key
     *            关键词
     * @param startPrice
     *            价格小值
     * @param endPrice
     *            价格大值
     * @param startTkRate
     *            佣金小值
     * @param endTkRate
     *            佣金大值
     * @param sort
     *            排序
     * @param out
     */
    @RequestMapping(value = "addTBGoodsFactory")
    public void addTBGoodsFactory(String callback, Integer pageIndex, Integer pageSize, String key, Long tbClassId,
            Integer startPrice, Integer endPrice, String startTkRate, String endTkRate, Integer sort, Integer istmall,
            Integer hasCoupon, Integer baoYou, Integer startDsr, Integer overseas, Integer needPrepay,
            Integer includePayRate30, Integer includeGoodRate, Integer includeRfdRate, Integer npxLevel,
            String auctionIds, String lableNames, HttpServletRequest request, PrintWriter out) {
 
        try {
 
            if (StringUtil.isNullOrEmpty(auctionIds)) {
                out.print(JsonUtil.loadJSONP(callback, JsonUtil.loadFalseResult("请选择正确的商品入库")));
                return;
            }
 
            Gson gson2 = new Gson();
            List<Long> listTaoBaoId = gson2.fromJson(auctionIds, new TypeToken<ArrayList<Long>>() {
            }.getType());
            if (listTaoBaoId == null || listTaoBaoId.size() == 0) {
                out.print(JsonUtil.loadJSONP(callback, JsonUtil.loadFalseResult("请选择正确的商品入库")));
                return;
            }
 
            // 查询物料
            TaoBaoSearchResult result = getGoodsByWuLiao(pageIndex, pageSize, key, tbClassId, startPrice, endPrice,
                    startTkRate, endTkRate, sort, istmall, hasCoupon, baoYou, startDsr, overseas, needPrepay,
                    includePayRate30, includeGoodRate, includeRfdRate, npxLevel,null);
 
            if (result == null) {
                JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("未获取到淘宝商品信息"));
                return;
            }
 
            List<TaoBaoGoodsBrief> listTaoBaoGoods = result.getTaoBaoGoodsBriefs();
            if (listTaoBaoGoods == null || listTaoBaoGoods.size() == 0) {
                JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("未查询到淘宝商品信息"));
                return;
            }
 
            List<TaoBaoGoodsBrief> listAddGoods = new ArrayList<TaoBaoGoodsBrief>();
            for (TaoBaoGoodsBrief taoBaoGoodsBrief : listTaoBaoGoods) {
                Long auctionId = taoBaoGoodsBrief.getAuctionId();
                if (listTaoBaoId.contains(auctionId)) {
                    listAddGoods.add(taoBaoGoodsBrief);
                    listTaoBaoId.remove(auctionId);
                }
            }
 
            if (listTaoBaoId != null && listTaoBaoId.size() > 0) {
                for (Long auctionId : listTaoBaoId) {
                    /* 根据auctionId 获取淘宝商品 */
                    TaoBaoGoodsBrief goodsBrief = TaoKeApiUtil.searchGoodsDetail(auctionId);
                    if (goodsBrief != null) {
                        listAddGoods.add(goodsBrief);
                    }
                }
            }
 
            AdminUser admin = (AdminUser) request.getSession().getAttribute(Constant.SESSION_ADMIN);
            // 插入精选库
            qualityFactoryService.addBatchTaoBaoGoods(listAddGoods, lableNames, admin);
 
            JsonUtil.printMode(out, callback, JsonUtil.loadTrueResult("加入成功"));
 
        } catch (Exception e) {
            JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult(1, e.getMessage()));
            e.printStackTrace();
        }
 
    }
 
    /**
     * 根据条件淘宝商品查询
     * 
     * @param pageIndex
     * @param pageSize
     * @param key
     * @param tbClassId
     * @param startPrice
     * @param endPrice
     * @param startTkRate
     * @param endTkRate
     * @param sort
     * @param istmall
     * @param hasCoupon
     * @param baoYou
     * @param startDsr
     * @param overseas
     * @param needPrepay
     * @param includePayRate30
     * @param includeGoodRate
     * @param includeRfdRate
     * @param npxLevel
     * @throws Exception
     */
    public TaoBaoSearchResult getGoodsByWuLiao(Integer pageIndex, Integer pageSize, String key, Long tbClassId,
            Integer startPrice, Integer endPrice, String startTkRate, String endTkRate, Integer sort, Integer istmall,
            Integer hasCoupon, Integer baoYou, Integer startDsr, Integer overseas, Integer needPrepay,
            Integer includePayRate30, Integer includeGoodRate, Integer includeRfdRate, Integer npxLevel, String cids)
            throws Exception {
 
        SearchFilter filter = new SearchFilter();
        filter.setPageSize(pageSize);
        filter.setPage(pageIndex);
 
        // 查询词 key------ 不能为空---------
        if (!StringUtil.isNullOrEmpty(key))
            filter.setKey(key);
 
        if (tbClassId != null) {
            GoodsClass rb = goodsClassService.getGoodsClass(tbClassId);
            if (rb == null) {
                throw new Exception("该类型已不存在,请刷新重试");
            }
 
            // 淘宝类目id
            String taoBaoCatIds = taoBaoClassService.getTaoBaoCatIds(tbClassId);
            if (StringUtil.isNullOrEmpty(taoBaoCatIds)) {
                throw new Exception("该类型淘宝id为空,请通知相关人员进行维护");
            } else {
                filter.setCateIds(taoBaoCatIds);
            }
        }
        if (!StringUtil.isNullOrEmpty(cids))
            filter.setCateIds(cids);
 
        // 查询条件和类目id不能同时为空
        if (StringUtil.isNullOrEmpty(key) && tbClassId == null) {
            filter.setKey("女装");
        }
        // 折扣价范围下限
        if (startPrice != null) {
            filter.setStartPrice(new BigDecimal(startPrice));
        }
        // 折扣价范围上限
        if (endPrice != null && endPrice > 0) {
            filter.setEndPrice(new BigDecimal(endPrice));
        }
        // 淘客佣金比率下限 如:1234表示12.34%
        if (!StringUtil.isNullOrEmpty(startTkRate)) {
            int tkRate = (int) (Float.parseFloat(startTkRate) * 100);
            filter.setStartTkRate(tkRate);
        }
        // 淘客佣金比率上限 如:1234表示12.34%
        if (!StringUtil.isNullOrEmpty(endTkRate)) {
            int tkRate = (int) (Float.parseFloat(endTkRate) * 100);
            filter.setEndTkRate(tkRate);
        }
        // 排序字段
        // 销量(total_sales)淘客佣金比率(tk_rate)累计推广量(tk_total_sales)总支出佣金(tk_total_commi)
        if (sort != null) {
            filter.setSort(sort);
        }
        // 查询天猫 1 true
        if (istmall != null && istmall == 1) {
            filter.setTmall(true);
        }
        // 是否有券 1 true
        if (hasCoupon != null && hasCoupon == 1) {
            filter.setQuan(1);
        }
        // 是否包邮,true表示包邮,空或false表示不限
        if (baoYou != null && baoYou == 1) {
            filter.setBaoYou(true);
            // filter.setIp("113.251.22.10");// 重庆
            filter.setIp("218.72.111.105");// 杭州
        }
        // 店铺dsr评分
        if (startDsr != null && startDsr >= 0 && startDsr <= 50000) {
            filter.setStartDsr(startDsr);
        }
        // 是否海外商品
        if (overseas != null && overseas == 1) {
            filter.setOverseas(true);
        }
        // 是否加入消费者保障,
        if (needPrepay != null && needPrepay == 1) {
            filter.setNeedPrepay(true);
        }
        // 成交转化是否高于行业均值
        if (includePayRate30 != null && includePayRate30 == 1) {
            filter.setIncludePayRate30(true);
        }
        // 好评率是否高于行业均值
        if (includeGoodRate != null && includeGoodRate == 1) {
            filter.setIncludeGoodRate(true);
        }
        // 退款率是否低于行业均值
        if (includeRfdRate != null && includeRfdRate == 1) {
            filter.setIncludeRfdRate(true);
        }
        // 牛皮癣程度,取值:1:不限,2:无,3:轻微
        if (npxLevel != null && npxLevel > 0 && npxLevel < 4) {
            filter.setNpxLevel(npxLevel);
        }
 
        boolean islink = false;
        Long auctionId = null;
        /* 判断是否是商品链接搜索 */
        if (key != null && key.contains("//") && key.contains("&")) {
            String[] keyArray = key.split("\\?")[1].split("&");
            if (keyArray != null && keyArray.length > 0) {
                String id = keyArray[0].replace("id=", "").trim();
                if (!StringUtil.isNullOrEmpty(id)) {
                    auctionId = Long.parseLong(id);
                    islink = true;
                }
            }
        }
 
        TaoBaoSearchResult result = null;
 
        if (!islink) {
            /* 淘宝物料搜索 */
            result = TaoKeApiUtil.searchWuLiao(filter);
        } else {
            /* 商品链接搜索 */
            TaoBaoGoodsBrief searchGoodsDetail = TaoKeApiUtil.searchGoodsDetail(auctionId);
            if (searchGoodsDetail != null) {
                List<TaoBaoGoodsBrief> listGoods = new ArrayList<>();
                listGoods.add(searchGoodsDetail);
 
                result = new TaoBaoSearchResult();
                result.setTaoBaoGoodsBriefs(listGoods);
                PageEntity pageEntity = new PageEntity(pageIndex, pageSize, 1, 1);
                result.setPageEntity(pageEntity);
            }
        }
 
        return result;
    }
 
    /**
     * 
     * @param callback
     * @param pageIndex
     * @param key
     *            关键词
     * @param startPrice
     *            价格小值
     * @param endPrice
     *            价格大值
     * @param startTkRate
     *            佣金小值
     * @param endTkRate
     *            佣金大值
     * @param sort
     *            排序
     * @param out
     */
    @RequestMapping(value = "searchAlimamaWeb")
    public void searchAlimamaWeb(String callback, Integer pageIndex, Integer pageSize, String key, Integer startPrice,
            Integer endPrice, String startTkRate, String endTkRate, Integer sort, Integer istmall, Integer hasCoupon,
            Integer searchType, Integer baoYou, String startBiz30day, String catIds, PrintWriter out) {
 
        try {
 
            SearchFilter filter = new SearchFilter();
 
            // 页大小,默认20,1~100
            if (pageSize == null || pageSize < 1)
                pageSize = Constant.PAGE_SIZE;
 
            filter.setPageSize(pageSize);
 
            // 第几页,默认:1
            if (pageIndex == null || pageIndex < 1)
                pageIndex = 1;
 
            filter.setPage(pageIndex);
 
            // 筛选条件 优先筛选查询词
            if (!StringUtil.isNullOrEmpty(key)) {
                filter.setKey(key);
            } else {
                // 高佣id
                if (!StringUtil.isNullOrEmpty(catIds)) {
 
                    // 男装+ 类目id
                    String[] split = catIds.split(",");
                    filter.setCateIds(split[1]);
                }
            }
 
            // 折扣价范围下限
            if (startPrice != null)
                filter.setStartPrice(new BigDecimal(startPrice));
 
            // 折扣价范围上限
            if (endPrice != null)
                filter.setEndPrice(new BigDecimal(endPrice));
 
            // 佣金比率下限
            if (!StringUtil.isNullOrEmpty(startTkRate)) {
                filter.setStartTkRate(Integer.parseInt(startTkRate));
            }
 
            // 比率上限
            if (!StringUtil.isNullOrEmpty(endTkRate)) {
                filter.setEndTkRate(Integer.parseInt(endTkRate));
            }
 
            // 排序字段
            if (sort != null)
                filter.setSort(sort);
 
            // 查询天猫 1 true
            if (istmall != null && istmall == 1)
                filter.setTmall(true);
 
            // 是否有券 1 true
            if (hasCoupon != null && hasCoupon == 1)
                filter.setQuan(1);
 
            // 是否包邮,true表示包邮,空或false表示不限
            if (baoYou != null && baoYou == 1)
                filter.setBaoYou(true);
 
            // 销量
            if (!StringUtil.isNullOrEmpty(startBiz30day))
                filter.setStartBiz30day(startBiz30day);
 
            List<TaoBaoUnionConfig> config = taoBaoUnionConfigService.getConfigByTypeCache(PidUser.TYPE_FANLI_ANDROID);
 
            /* 淘宝网络 爬取 */
            TaoBaoSearchResult result = TaoBaoUtil.searchAlimamaWeb(filter, config.get(0), searchType);
 
            List<TaoBaoGoodsBrief> taoBaoGoodsBriefs = null;
            if (result == null) {
                JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("未获取到淘宝商品信息"));
                return;
            } else {
                taoBaoGoodsBriefs = result.getTaoBaoGoodsBriefs();
            }
 
            if (taoBaoGoodsBriefs == null || taoBaoGoodsBriefs.size() == 0) {
                JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("未查询到淘宝商品信息"));
                return;
            } else {
                List<Map<String, Object>> listmap = new ArrayList<Map<String, Object>>();
 
                for (TaoBaoGoodsBrief taoBaoGoodsBrief : taoBaoGoodsBriefs) {
 
                    taoBaoGoodsBrief.setId(null);
 
                    Map<String, Object> map = new HashMap<String, Object>();
 
                    map.put("pictUrl", taoBaoGoodsBrief.getPictUrl());
                    map.put("title", taoBaoGoodsBrief.getTitle());
                    map.put("auctionId", taoBaoGoodsBrief.getAuctionId());
                    map.put("auctionUrl", taoBaoGoodsBrief.getAuctionUrl());
                    map.put("shopTitle", taoBaoGoodsBrief.getShopTitle());
                    map.put("zkPrice", taoBaoGoodsBrief.getZkPrice());
                    map.put("biz30day", taoBaoGoodsBrief.getBiz30day());
                    map.put("couponInfo", taoBaoGoodsBrief.getCouponInfo());
                    map.put("couponTotalCount", taoBaoGoodsBrief.getCouponTotalCount());
                    map.put("couponLeftCount", taoBaoGoodsBrief.getCouponLeftCount());
                    map.put("couponEffectiveEndTime", taoBaoGoodsBrief.getCouponEffectiveEndTime());
 
                    /* 佣金取较大的值 */
                    String eventRate = taoBaoGoodsBrief.getEventRate();
                    BigDecimal rate;
 
                    BigDecimal tkRate2 = taoBaoGoodsBrief.getTkRate();
                    if (!StringUtil.isNullOrEmpty(eventRate)) {
                        BigDecimal eRate = new BigDecimal(eventRate);
 
                        int a = eRate.compareTo(tkRate2);
                        if (a >= 0) {
                            rate = eRate;
                        } else {
                            rate = tkRate2;
                        }
                    } else {
                        rate = tkRate2;
                    }
                    map.put("tkRate", rate);
 
                    /* 商品销售状态: 0 在售 此获取的淘宝信息均为在售商品 */
                    map.put("saleStae", 0);
                    // 来源 0 无 1淘宝 2 京东
                    map.put("goodsSource", 1);
 
                    /* 1 定向计划 2 营销返利 、高佣 3 普佣 */
                    // Integer includeDxjh = taoBaoGoodsBrief.getIncludeDxjh();
                    // String tkMktStatus = taoBaoGoodsBrief.getTkMktStatus();
                    /*
                     * boolean include = false; if (includeDxjh != null) { if
                     * (includeDxjh == 1) { // 定向计划 map.put("yongjinType",1);
                     * include = true; } }
                     */
 
                    /*
                     * if (!include){
                     * 
                     * if ("1".equals(tkMktStatus)) { // 营销返利 、高佣
                     * map.put("yongjinType",2); } else { // 普佣
                     * map.put("yongjinType",3); } }
                     */
 
                    /* 券后价--计算 */
                    BigDecimal couponPrice = TaoBaoUtil.getAfterUseCouplePrice(taoBaoGoodsBrief);
                    map.put("couponPrice", couponPrice);
 
                    /* 预计收益: 公司、用户 */
                    BigDecimal zkPrice = taoBaoGoodsBrief.getZkPrice();
                    BigDecimal profit = MoneyBigDecimalUtil.mul(rate, zkPrice);
                    // 计算结果
                    BigDecimal estimateProfit = MoneyBigDecimalUtil.div(profit, new BigDecimal("100"));
 
                    // 预计收益
                    map.put("estimateProfit", estimateProfit);
 
                    int existence = 0;
 
                    /* 查询商品是否已存在商品精选库中 */
                    Long localAuctionId = taoBaoGoodsBrief.getAuctionId();
 
                    if (localAuctionId != null) {
                        List<TaoBaoGoodsBrief> taoBaoGoodsBriefList = taoBaoGoodsBriefService
                                .queryByAuctionId(localAuctionId);
 
                        if (taoBaoGoodsBriefList != null && taoBaoGoodsBriefList.size() > 0) {
 
                            TaoBaoGoodsBrief goodsBrief = taoBaoGoodsBriefList.get(0);
 
                            if (goodsBrief != null) {
                                Long id = goodsBrief.getId();
                                // 查询精选库
                                Long has = qualityFactoryService.queryCountByGoodsId(id);
 
                                if (has != null && has > 0l) {
                                    existence = 1; // 存在商品中
                                }
                            }
                        }
                    }
 
                    map.put("isExistence", existence);
 
                    listmap.add(map);
                }
 
                PageEntity pe = result.getPageEntity();
 
                JSONObject data = new JSONObject();
                GsonBuilder gsonBuilder = new GsonBuilder();
                gsonBuilder.serializeNulls(); // 重点
                Gson gson = gsonBuilder.setDateFormat("yyyy-MM-dd").create();
 
                data.put("pe", pe);
                data.put("listGoods", gson.toJson(listmap));
 
                JsonUtil.printMode(out, callback, JsonUtil.loadTrueResult(data));
            }
 
        } catch (Exception e) {
            JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("查询异常"));
            e.printStackTrace();
        }
    }
 
    /**
     * 获取淘宝高佣查询类目
     * 
     * @param callback
     * @param out
     */
    @RequestMapping(value = "getNavList")
    public void getNavList(String callback, PrintWriter out) {
 
        try {
 
            SearchFilter filter = new SearchFilter();
            filter.setPageSize(10);
            filter.setPage(1);
 
            List<TaoBaoUnionConfig> config = taoBaoUnionConfigService.getConfigByTypeCache(PidUser.TYPE_FANLI_ANDROID);
 
            /* 淘宝网络 爬取 */
            TaoBaoSearchResult result = TaoBaoUtil.searchAlimamaWeb(filter, config.get(0), 3);
 
            if (result == null) {
                JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("淘宝列表获取失败"));
                return;
            }
 
            List<TaoBaoSearchNav> navList = result.getNavList();
 
            if (navList == null || navList.size() == 0) {
                JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("淘宝列表获取失败"));
                return;
            }
 
            GsonBuilder gsonBuilder = new GsonBuilder();
            gsonBuilder.serializeNulls();
            Gson gson = gsonBuilder.create();
 
            JSONObject data = new JSONObject();
            data.put("navList", gson.toJson(navList));
 
            JsonUtil.printMode(out, callback, JsonUtil.loadTrueResult(data));
 
        } catch (Exception e) {
            JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("查询异常"));
            e.printStackTrace();
        }
    }
 
    /**
     * 
     * @param callback
     * @param pageIndex
     * @param key
     *            关键词
     * @param startPrice
     *            价格小值
     * @param endPrice
     *            价格大值
     * @param startTkRate
     *            佣金小值
     * @param endTkRate
     *            佣金大值
     * @param sort
     *            排序
     * @param out
     */
    @RequestMapping(value = "searchMaterial")
    public void searchMaterial(String callback, Integer pageIndex, Integer pageSize, String subName, String superName,
            PrintWriter out) {
 
        try {
 
            List<TaobaoMeterial> taobaoMeterials = null;
            if (!StringUtil.isNullOrEmpty(subName) && !StringUtil.isNullOrEmpty(superName)) {
                taobaoMeterials = taobaoMeterialService.selectByClassNameAndSuperName(subName, superName);
            } else if (!StringUtil.isNullOrEmpty(superName)) {
                taobaoMeterials = taobaoMeterialService.selectByClassNameAndSuperName(null, superName);
            } else {
                JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("请选择筛选类目"));
                return;
            }
 
            if (taobaoMeterials == null || taobaoMeterials.size() == 0) {
                JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("类目信息不存在"));
                return;
            }
 
            TaobaoMeterial taobaoMeterial = taobaoMeterials.get(0);
            Integer materialId = taobaoMeterial.getMaterialId();
            if (materialId == null) {
                JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("该类目物料ID不存在"));
                return;
            }
 
            // 页大小,默认20,1~100
            if (pageSize == null || pageSize < 1)
                pageSize = Constant.PAGE_SIZE;
 
            // 第几页,默认:1
            if (pageIndex == null || pageIndex < 1)
                pageIndex = 1;
 
            TaoBaoSearchResult result = TaoKeApiUtil.getMaterialByMaterialId(materialId, pageIndex, pageSize);
 
            if (result == null) {
                JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("暂未获取到相关数据"));
                return;
            }
 
            List<TaoBaoGoodsBrief> taoBaoGoodsBriefs = result.getTaoBaoGoodsBriefs();
            if (taoBaoGoodsBriefs == null || taoBaoGoodsBriefs.size() == 0) {
                JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("暂无相关数据"));
                return;
            }
 
            // 插入商品集合
            List<Long> listAuctionId = new ArrayList<Long>();
            for (TaoBaoGoodsBrief goodsBrief : taoBaoGoodsBriefs) {
                listAuctionId.add(goodsBrief.getAuctionId());
            }
 
            // 验证是否存在数据库
            List<QualityFactory> listHas = qualityFactoryService.listQueryByAuctionId(listAuctionId);
 
            List<Map<String, Object>> listmap = new ArrayList<Map<String, Object>>();
 
            for (TaoBaoGoodsBrief taoBaoGoodsBrief : taoBaoGoodsBriefs) {
                taoBaoGoodsBrief.setId(null);
 
                Map<String, Object> map = new HashMap<String, Object>();
 
                map.put("pictUrl", taoBaoGoodsBrief.getPictUrl());
                map.put("title", taoBaoGoodsBrief.getTitle());
                map.put("auctionId", taoBaoGoodsBrief.getAuctionId());
                map.put("auctionUrl", taoBaoGoodsBrief.getAuctionUrl());
                map.put("zkPrice", taoBaoGoodsBrief.getZkPrice());
                map.put("biz30day", taoBaoGoodsBrief.getBiz30day());
                map.put("couponInfo", taoBaoGoodsBrief.getCouponInfo());
                map.put("couponTotalCount", taoBaoGoodsBrief.getCouponTotalCount());
                map.put("couponLeftCount", taoBaoGoodsBrief.getCouponLeftCount());
                map.put("couponEffectiveEndTime", taoBaoGoodsBrief.getCouponEffectiveEndTime());
                map.put("tkRate", taoBaoGoodsBrief.getTkRate());
 
                // 来源 0 无 1淘宝 2 京东
                map.put("goodsSource", 1);
 
                /* 券后价--计算 */
                BigDecimal couponPrice = TaoBaoUtil.getAfterUseCouplePrice(taoBaoGoodsBrief);
                map.put("couponPrice", couponPrice);
 
                /* 预计收益: 公司、用户 */
                BigDecimal tkRate = taoBaoGoodsBrief.getTkRate();
                BigDecimal zkPrice = taoBaoGoodsBrief.getZkPrice();
                BigDecimal profit = MoneyBigDecimalUtil.mul(tkRate, zkPrice);
                // 计算结果
                BigDecimal estimateProfit = MoneyBigDecimalUtil.div(profit, new BigDecimal("100"));
 
                // 预计收益
                map.put("estimateProfit", estimateProfit);
 
                int existence = 0;
 
                /* 查询商品是否已存在商品精选库中 */
                Long localAuctionId = taoBaoGoodsBrief.getAuctionId();
                if (localAuctionId != null) {
                    if (listHas != null && listHas.size() > 0) {
                        for (QualityFactory selectionGoods : listHas) {
                            TaoBaoGoodsBrief hasgoodsBrief = selectionGoods.getTaoBaoGoodsBrief();
                            Long hasId = hasgoodsBrief.getAuctionId();
                            if (localAuctionId.equals(hasId) || localAuctionId == hasId) {
                                existence = 1; // 存在商品中
                            }
                        }
                    }
                }
 
                map.put("isExistence", existence);
 
                listmap.add(map);
            }
 
            PageEntity pe = result.getPageEntity();
 
            JSONObject data = new JSONObject();
            GsonBuilder gsonBuilder = new GsonBuilder();
            gsonBuilder.serializeNulls(); // 重点
            Gson gson = gsonBuilder.setDateFormat("yyyy-MM-dd").create();
 
            data.put("pe", pe);
            data.put("listGoods", gson.toJson(listmap));
 
            JsonUtil.printMode(out, callback, JsonUtil.loadTrueResult(data));
 
        } catch (Exception e) {
            JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("查询异常"));
            e.printStackTrace();
        }
 
    }
    
 
    private List<Map<String, Object>> filterTaoBaoGoodsWithQulity(List<TaoBaoGoodsBrief> goodsList) {
 
        // 插入商品集合
        List<Long> listAuctionId = new ArrayList<Long>();
        for (TaoBaoGoodsBrief goodsBrief : goodsList) {
            listAuctionId.add(goodsBrief.getAuctionId());
        }
 
        // 验证是否存在数据库
        List<QualityFactory> listHas = qualityFactoryService.listQueryByAuctionId(listAuctionId);
 
        List<Map<String, Object>> listmap = new ArrayList<Map<String, Object>>();
 
        for (TaoBaoGoodsBrief taoBaoGoodsBrief : goodsList) {
            taoBaoGoodsBrief.setId(null);
 
            Map<String, Object> map = new HashMap<String, Object>();
 
            map.put("pictUrl", taoBaoGoodsBrief.getPictUrl());
            map.put("title", taoBaoGoodsBrief.getTitle());
            map.put("auctionId", taoBaoGoodsBrief.getAuctionId());
            map.put("auctionUrl", taoBaoGoodsBrief.getAuctionUrl());
            map.put("zkPrice", taoBaoGoodsBrief.getZkPrice());
            map.put("biz30day", taoBaoGoodsBrief.getBiz30day());
            map.put("couponInfo", taoBaoGoodsBrief.getCouponInfo());
            map.put("couponTotalCount", taoBaoGoodsBrief.getCouponTotalCount());
            map.put("couponLeftCount", taoBaoGoodsBrief.getCouponLeftCount());
            map.put("couponEffectiveEndTime", taoBaoGoodsBrief.getCouponEffectiveEndTime());
            map.put("tkRate", taoBaoGoodsBrief.getTkRate());
 
            // 来源 0 无 1淘宝 2 京东
            map.put("goodsSource", 1);
 
            /* 券后价--计算 */
            BigDecimal couponPrice = TaoBaoUtil.getAfterUseCouplePrice(taoBaoGoodsBrief);
            map.put("couponPrice", couponPrice);
 
            /* 预计收益: 公司、用户 */
            BigDecimal tkRate = taoBaoGoodsBrief.getTkRate();
            BigDecimal zkPrice = taoBaoGoodsBrief.getZkPrice();
            BigDecimal profit = MoneyBigDecimalUtil.mul(tkRate, zkPrice);
            // 计算结果
            BigDecimal estimateProfit = MoneyBigDecimalUtil.div(profit, new BigDecimal("100"));
 
            // 预计收益
            map.put("estimateProfit", estimateProfit);
 
            int existence = 0;
 
            /* 查询商品是否已存在商品精选库中 */
            Long localAuctionId = taoBaoGoodsBrief.getAuctionId();
            if (localAuctionId != null) {
                if (listHas != null && listHas.size() > 0) {
                    for (QualityFactory selectionGoods : listHas) {
                        TaoBaoGoodsBrief hasgoodsBrief = selectionGoods.getTaoBaoGoodsBrief();
                        Long hasId = hasgoodsBrief.getAuctionId();
                        if (localAuctionId.equals(hasId) || localAuctionId == hasId) {
                            existence = 1; // 存在商品中
                        }
                    }
                }
            }
 
            map.put("isExistence", existence);
 
            listmap.add(map);
        }
 
        return listmap;
 
    }
 
    
    @RequestMapping(value = "searchDaTaoKe")
    public void searchDaTaoKe(String callback, Integer pageIndex, Integer pageSize, String key, Long cid,
            PrintWriter out) {
        try {
            key = StringUtil.isNullOrEmpty(key) ? "" : key;
            List<DaTaoKeDetail> list = daTaoKeGoodsDetailService.listSearchByTitleWithCid(key, cid, pageIndex,
                    pageSize);
            long count = daTaoKeGoodsDetailService.countSearchByTitleWithCid(key, cid);
            List<TaoBaoGoodsBrief> goodsList = new ArrayList<>();
            for (DaTaoKeDetail detail : list) {
                goodsList.add(TaoBaoUtil.convert(detail));
            }
 
            List<Map<String, Object>> listmap = filterTaoBaoGoodsWithQulity(goodsList);
 
            PageEntity pe = new PageEntity(pageIndex, pageSize, (int) count,(int)(count%pageSize==0?count/pageSize:count/pageSize+1));
            JSONObject data = new JSONObject();
            GsonBuilder gsonBuilder = new GsonBuilder();
            gsonBuilder.serializeNulls(); // 重点
            Gson gson = gsonBuilder.setDateFormat("yyyy-MM-dd").create();
 
            data.put("pe", pe);
            data.put("listGoods", gson.toJson(listmap));
 
            JsonUtil.printMode(out, callback, JsonUtil.loadTrueResult(data));
 
        } catch (Exception e) {
            JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("查询异常"));
            e.printStackTrace();
        }
    }
 
    @RequestMapping(value = "getQiangGou")
    public void getQiangGou(String callback, Integer pageIndex, PrintWriter out) {
 
        try {
 
            int pageSize = 40;
 
            // 第几页,默认:1
            if (pageIndex == null || pageIndex < 1)
                pageIndex = 1;
 
            String startTime = "2018-09-17 09:00:00";
 
            String endTime = "2018-09-17 16:00:00";
 
            TaoBaoSearchResult result = TaoKeApiUtil.taoQiangGou(pageIndex, pageSize, startTime, endTime);
 
            if (result == null) {
                JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("暂未获取到相关数据"));
                return;
            }
 
            List<TaoBaoGoodsBrief> taoBaoGoodsBriefs = result.getTaoBaoGoodsBriefs();
            if (taoBaoGoodsBriefs == null || taoBaoGoodsBriefs.size() == 0) {
                JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("暂无相关数据"));
                return;
            }
 
            // 插入商品集合
            List<Long> listAuctionId = new ArrayList<Long>();
            for (TaoBaoGoodsBrief goodsBrief : taoBaoGoodsBriefs) {
                listAuctionId.add(goodsBrief.getAuctionId());
            }
 
            // 验证是否存在数据库
            List<QualityFactory> listHas = qualityFactoryService.listQueryByAuctionId(listAuctionId);
 
            List<Map<String, Object>> listmap = new ArrayList<Map<String, Object>>();
 
            for (TaoBaoGoodsBrief taoBaoGoodsBrief : taoBaoGoodsBriefs) {
                taoBaoGoodsBrief.setId(null);
 
                Map<String, Object> map = new HashMap<String, Object>();
 
                map.put("pictUrl", taoBaoGoodsBrief.getPictUrl());
                map.put("title", taoBaoGoodsBrief.getTitle());
                map.put("auctionId", taoBaoGoodsBrief.getAuctionId());
                map.put("auctionUrl", taoBaoGoodsBrief.getAuctionUrl());
                map.put("zkPrice", taoBaoGoodsBrief.getZkPrice());
                map.put("biz30day", taoBaoGoodsBrief.getBiz30day());
                map.put("couponInfo", taoBaoGoodsBrief.getCouponInfo());
                map.put("couponTotalCount", taoBaoGoodsBrief.getCouponTotalCount());
                map.put("couponLeftCount", taoBaoGoodsBrief.getCouponLeftCount());
                map.put("couponEffectiveEndTime", taoBaoGoodsBrief.getCouponEffectiveEndTime());
                map.put("tkRate", taoBaoGoodsBrief.getTkRate());
 
                // 来源 0 无 1淘宝 2 京东
                map.put("goodsSource", 1);
 
                /* 券后价--计算 */
                BigDecimal couponPrice = TaoBaoUtil.getAfterUseCouplePrice(taoBaoGoodsBrief);
                map.put("couponPrice", couponPrice);
 
                /* 预计收益: 公司、用户 */
                BigDecimal tkRate = taoBaoGoodsBrief.getTkRate();
                BigDecimal zkPrice = taoBaoGoodsBrief.getZkPrice();
                BigDecimal profit = MoneyBigDecimalUtil.mul(tkRate, zkPrice);
                // 计算结果
                BigDecimal estimateProfit = MoneyBigDecimalUtil.div(profit, new BigDecimal("100"));
 
                // 预计收益
                map.put("estimateProfit", estimateProfit);
 
                int existence = 0;
 
                /* 查询商品是否已存在商品精选库中 */
                Long localAuctionId = taoBaoGoodsBrief.getAuctionId();
                if (localAuctionId != null) {
                    if (listHas != null && listHas.size() > 0) {
                        for (QualityFactory selectionGoods : listHas) {
                            TaoBaoGoodsBrief hasgoodsBrief = selectionGoods.getTaoBaoGoodsBrief();
                            Long hasId = hasgoodsBrief.getAuctionId();
                            if (localAuctionId.equals(hasId) || localAuctionId == hasId) {
                                existence = 1; // 存在商品中
                            }
                        }
                    }
                }
 
                map.put("isExistence", existence);
                listmap.add(map);
            }
 
            PageEntity pe = result.getPageEntity();
 
            JSONObject data = new JSONObject();
            GsonBuilder gsonBuilder = new GsonBuilder();
            gsonBuilder.serializeNulls(); // 重点
            Gson gson = gsonBuilder.setDateFormat("yyyy-MM-dd").create();
 
            data.put("pe", pe);
            data.put("listGoods", gson.toJson(listmap));
 
            JsonUtil.printMode(out, callback, JsonUtil.loadTrueResult(data));
        } catch (Exception e) {
            JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("查询异常"));
            e.printStackTrace();
        }
 
    }
 
}