binxie
2024-01-16 1b08402678deb31bba4a347bfd388eba8360cbc1
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
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
public with sharing class StartTradingController2 {
 
    static final String RC_OPP = '引合';
 
    /**
     * 按钮初始化,通过LeadId获取判断需要使用的字段
     */
    @AuraEnabled
    public static Lead init(String Id){
        try {
            Lead leadobject = [select Id, 
                                Hospital_Name__c, 
                                Close_Forecasted_Date__c, 
                                Opp_Name_Search__c, 
                                begin_opp_name__c, 
                                Status 
                            from Lead 
                            where Id = :Id];
            return leadobject;
        } catch (Exception ex) {
            throw new ControllerUtil.myException(ex.getMessage());
        }
    }
 
    /**
     * 开始询价
     */
    @AuraEnabled
    public static String start(String Id){
        try{
            // リード情報を取得  
            Lead lead = [select id, SI_OppoLeadSec__c,owner_not_automatically_update__c, Hospital_Name__c, Contact_Name__c, Contact_Name__r.Name, 
                    Opportunity_stage__c,Hospital_Name__r.RecordType.DeveloperName, Hospital_Name__r.Parent.RecordType.DeveloperName,
                    LastName, FirstName, LeadSource, Other_Society__c, Opp_Name__c, Purchase_Reason__c, Trade__c, Sales_Root__c, Campaign__c, 
                    Close_Forecasted_Date__c, Competitor__c, Hospital_Budget__c, Promise_Class__c, Dicision_Maker__c, Purchase_Type__c,
                    Sales_Method__c, Fund_Basis__c, OwnerId, Wholesale_Price__c, Lead_No__c,Inquiry_Num__c,CreatedDate,CreatedById, 
                    Tender_information__c, Agency_Opportunity__c, SI_PromoteInquiry__c 
                    ,    Contact_Name__r.AccountId //2022-6-20 yjk 增加联系人的科室查询
                    ,ET_Check__c //SWAG-CKDATG fy 【委托】【OBSAP-报价委托】报价委托项目改善1
                    ,Hospital_Name__r.Parent.Parent.OCM_man_province_HP__c  //20230329 lt DB202303246427 --青岛拆分 -- 根据询“省(客户)”赋值SAP上传省 add
                    from Lead where id =: Id];
            Boolean SI_Flg = lead.SI_PromoteInquiry__c;    
            Boolean isAgencyOpp = false;       
            // 診療科選択リストの取得(条件:病院=リード情報の病院名称)
            List<Account> departmentList = new List<Account>();
            if (lead.Hospital_Name__r.RecordType.DeveloperName == 'HP') {
                departmentList = [select id, name from Account where Hospital__c =: lead.Hospital_Name__c];
            }
            else if (lead.Hospital_Name__r.Parent.RecordType.DeveloperName == 'HP') {
                departmentList = [select id, name from Account where ParentId =: lead.Hospital_Name__c];
            }
            /*
            // xudan 20140730 販売店を選択する場合、下の契約一覧を出す
            // TODO 契約状態を見る?
            else if (this.lead.Hospital_Name__r.RecordType.DeveloperName == 'Agency') {
            departmentList = [select id, name from Account where ParentId =: this.lead.Hospital_Name__c];
            isAgencyOpp = true;
            }
            */
            // xudan 20140730 契約を選択する場合、そのまま出す、フラグ設定
            else if (lead.Hospital_Name__r.Parent.RecordType.DeveloperName == 'Agency') {
                departmentList = [select id, name from Account where Id =: lead.Hospital_Name__c];
                isAgencyOpp = true;
            }
            else {
                departmentList = [select id, name from Account where Id =: lead.Hospital_Name__c];
            }
            // 診療科選択リストの設定
            List<SelectOption> depList = new List<SelectOption>();
            // 2022-04-13 ssm 紧急应对 科室和客户人员必填 start
            // this.depList.add(new SelectOption(NONE, NONE));
            // 2022-04-13 ssm 紧急应对 科室和客户人员必填 end
            Set<ID> depIdList = new Set<ID>();
            for(Account d : departmentList){
                depIdList.add(d.id);
                depList.add(new SelectOption(String.valueOf(d.get('id')),String.valueOf(d.get('name'))));
            }
            // 2022-04-13 ssm 紧急应对 科室和客户人员必填 start
            // this.sltDep = NONE;
            // String sltDep = lead.Contact_Name__r.AccountId;  //  2022-6-20 yjk 改为从联系人的科室赋值   原逻辑:this.lead.Hospital_Name__c;
            String sltDep = lead.Hospital_Name__c;  //  2022-6-20 yjk 改为从联系人的科室赋值   原逻辑:this.lead.Hospital_Name__c;
            String sltCon = lead.Contact_Name__c;
            // 2022-04-13 ssm 紧急应对 科室和客户人员必填 end
 
 
            // 担当者リスト(初期設定)
            Map<String,List<SelectOption>> conMap = new Map<String,List<SelectOption>>();
            List<SelectOption> sltOptNasi = new List<SelectOption>();
            // リード所有者の取得
            User leadOnwer = [select Province_Text__c from User where Id = :lead.OwnerId];
 
            // String oppID = null;
            // if (String.isBlank(sltDep)) {
            //     return null;
            // }
            Account dept = null;
            if(String.isNotBlank(lead.Contact_Name__c)){
                dept = getDepartment(lead.Hospital_Name__c);
                updateContact(lead.Contact_Name__c, dept);
            }
            return updateOpportunity(getDepartment(lead.Hospital_Name__c), lead, SI_Flg, isAgencyOpp, leadOnwer);
        } catch(Exception ex) {
            throw new ControllerUtil.myException(ex.getMessage());
        }
    }
 
    /** 
     *  選択した診療科を取得
     */
    public static Account getDepartment(String depId){
        List<Account> deptList = [select Id, Hospital__c, Department_Class__c, Department_Class_Wd__c from Account where id =: depId];
        // List<Account> deptList = [select Id, Hospital__c, Department_Class__c from Account where id =: this.sltDep];
        Account dept = deptList[0];
        return dept;
    }
 
    /** 取引先責任者の更新
     *  @param conID 取引先責任者ID
     *  @param dept  診療科
    */
    public static void updateContact(ID conID, Account dept){
        
        Contact cont = [select ID,Strategic_dept_Class__c from Contact where Id=:conID];
        cont.Strategic_dept_Class__c = dept.Department_Class__c;
        update cont;
    }
 
    /** 引合の更新
     *  @param dept 診療科
    */
    public static String updateOpportunity(Account dept, Lead lead, Boolean SI_Flg, Boolean isAgencyOpp, User leadOnwer){
        System.debug('dept:'+dept.Id + '|' + dept.Department_Class_Wd__c);
        //SWAG-CEY8GZ 20220620 lt update
        //Opportunity opp = [select ID, AccountId, Account.Department_Class_Wd__c, Opportunity_No__c, SAP_Province_CD__c, Opp_Number__c, Opp_Code__c from Opportunity where Id=:this.oppID];
        Opportunity opp = new Opportunity();
        opp.LeadSource = lead.LeadSource;
        opp.AccountId = dept.Id;
 
        //SWAG-CEY8GZ 20220620 lt update
        system.debug('cccccccccccccccccccc:'+opp.SAP_Province_CD__c);
        system.debug('cccccccccccccccccccc:'+opp.Opp_Number__c);
        system.debug('cccccccccccccccccccc:'+opp.Opp_Code__c);
        system.debug('cccccccccccccccccccc:'+opp.Opportunity_No__c);
        String Opptype = SI_Flg==true?'SI询价':RC_OPP;
        RecordType rect = [select id from RecordType where IsActive = true and SobjectType = 'Opportunity' and Name =: Opptype limit 1];
        opp.RecordTypeId = rect.id;
        // opp.Opportunity_Category__c = opp.Account.Department_Class_Wd__c;
        //SWAG-CKDATG fy 【委托】【OBSAP-报价委托】报价委托项目改善1 start
        // opp.Opportunity_Category__c = dept.Department_Class_Wd__c;
        opp.Opportunity_Category__c = lead.ET_Check__c ? 'ET' : dept.Department_Class_Wd__c;
        opp.Opp_order_Type__c = lead.ET_Check__c ? 'ET'  : null;
        //SWAG-CKDATG fy 【委托】【OBSAP-报价委托】报价委托项目改善1 end
        System.debug('this.lead.Hospital_Name__c:'+lead.Hospital_Name__c);
        System.debug('this.lead.LeadSource:'+lead.LeadSource);
        System.debug('this.lead.Other_Society__c:'+lead.Other_Society__c);
        System.debug('this.lead.Purchase_Reason__c:'+lead.Purchase_Reason__c);
        System.debug('this.lead.Trade__c:'+lead.Trade__c);
        System.debug('this.lead.Sales_Root__c:'+lead.Sales_Root__c);
        System.debug('this.lead.Close_Forecasted_Date__c:'+lead.Close_Forecasted_Date__c);
        System.debug('this.lead.Competitor__c:'+lead.Competitor__c);
        System.debug('this.lead.Hospital_Budget__c:'+lead.Hospital_Budget__c);
        System.debug('this.lead.Promise_Class__c:'+lead.Promise_Class__c);
        System.debug('this.lead.Dicision_Maker__c:'+lead.Dicision_Maker__c);
        System.debug('this.lead.Purchase_Type__c:'+lead.Purchase_Type__c);
        System.debug('this.lead.Sales_Method__c:'+lead.Sales_Method__c);
        System.debug('this.lead.Fund_Basis__c:'+lead.Fund_Basis__c);
        if(lead.Opp_Name__c != null && lead.Opp_Name__c != ''){
            opp.Name = lead.Opp_Name__c;
        }
        else{
            opp.Name = '*';
        }
        //20220412 SWAG-CBUB2W you start
        opp.Inquiry_Num__c = lead.Inquiry_Num__c;
        //20220412 SWAG-CBUB2W you end
        opp.From_Lead_TF__c = true;
        opp.Trade__c = (String.isBlank(lead.Trade__c)) ? '内貿' : lead.Trade__c;
        opp.StageName = '引合';
        opp.owner_not_automatically_update__c = lead.owner_not_automatically_update__c;
        opp.Lead_Num__c = lead.Lead_No__c;
        opp.Lead_CreateBy__c = lead.CreatedById;
        opp.Lead_CreateDate__c = lead.CreatedDate;
        opp.CurrencyIsoCode = 'CNY';
        opp.Purchase_Type__c = 'SI(手術室案件)';
        system.debug('dddddddddddddddddddddd:'+lead.owner_not_automatically_update__c);
        Integer year = date.today().year();
        Integer month = date.today().month();
        Date nextMonthEndDay = date.newInstance(year, month, 1);
        Date thisMonthEndDay = nextMonthEndDay.addMonths(1);
        thisMonthEndDay = thisMonthEndDay.addDays(-1);
        nextMonthEndDay = nextMonthEndDay.addMonths(2);
        nextMonthEndDay = nextMonthEndDay.addDays(-1);
        opp.Close_Forecasted_Date__c = lead.Close_Forecasted_Date__c;
        opp.Close_Forecasted_Date__c = opp.Close_Forecasted_Date__c == null ? thisMonthEndDay : opp.Close_Forecasted_Date__c;
        if (nextMonthEndDay > opp.Close_Forecasted_Date__c) {
            opp.CloseDate = nextMonthEndDay;
        } else {
            opp.CloseDate = opp.Close_Forecasted_Date__c.addDays(30);
        }
        // xudan 20140730 販売店から引合をConvertする場合、Hospital__cをAccountIdを同じにする
        if (isAgencyOpp) {
            opp.Hospital__c = opp.AccountId;
        } else {
            opp.Hospital__c = dept.Hospital__c;
            opp.Department_Class__c = dept.Department_Class__c;
        }
        //2021-07-08  mzy  SWAG-C4H99E 询价中的来源更改 start
        if('科室提案'.equals(lead.LeadSource) || 'OPD/SIS'.equals(lead.LeadSource) 
            || '公共平台'.equals(lead.LeadSource)   //测试环境 加的  对应的是 医拓网
            || '电话'.equals(lead.LeadSource) || '医拓网'.equals(lead.LeadSource) ){            
            opp.LeadSource = '直接拜访';
        }else {
            opp.LeadSource = lead.LeadSource;
        }
        //2021-07-08  mzy  SWAG-C4H99E 询价中的来源更改 end
        opp.Other_Society__c = lead.Other_Society__c;
        opp.Purchase_Reason__c = lead.Purchase_Reason__c;
        opp.Trade__c = (String.isBlank(lead.Trade__c)) ? '内貿' : lead.Trade__c;
        // 增加默认值
        opp.Sales_Root__c = String.isNotBlank(lead.Sales_Root__c) ? lead.Sales_Root__c : '販売店';
        if (lead.Competitor__c != null && lead.Competitor__c != '') {
            opp.Competitor__c = lead.Competitor__c;
        }
        if (lead.Opportunity_stage__c != null && lead.Opportunity_stage__c != '') {
            opp.Opportunity_stage__c = lead.Opportunity_stage__c;
        }
        opp.Hospital_Budget__c = lead.Hospital_Budget__c;
        // 增加默认值
        opp.Promise_Class__c = String.isNotBlank(lead.Promise_Class__c) ? lead.Promise_Class__c : '内貿';
        opp.Dicision_Maker__c = lead.Dicision_Maker__c;
        //**********************************************************************************
        opp.Purchase_Type__c = SI_Flg==true?'SI(手術室案件)':lead.Purchase_Type__c;
        opp.Opportunity_sub_owner__c = lead.SI_OppoLeadSec__c;
        //**********************************************************************************
        opp.Sales_Method__c = lead.Sales_Method__c;
        opp.Fund_Basis__c = lead.Fund_Basis__c;
         //20230329 lt DB202303246427 --青岛拆分 -- 根据询“省(客户)”赋值SAP上传省 start
        // opp.SAP_Province__c = this.leadOnwer.Province_Text__c;
        System.debug('lt123---this.lead.Hospital_Name__r.Parent.Parent.OCM_man_province_HP__c:'+lead.Hospital_Name__r.Parent.Parent.OCM_man_province_HP__c);
        Map<String,String> SAP_ProvinceMap = new Map<String,String>();
        SAP_ProvinceMap.put('宁夏','宁夏自治区');
        SAP_ProvinceMap.put('新疆','新疆自治区');
        SAP_ProvinceMap.put('黑龙江','黑龙江省');
        SAP_ProvinceMap.put('广西','广西自治区');
        SAP_ProvinceMap.put('大连','大连市');
        SAP_ProvinceMap.put('沈阳','辽宁省');    //暂时辽宁
        SAP_ProvinceMap.put('广东','广东省');
        SAP_ProvinceMap.put('深圳','深圳市');
        SAP_ProvinceMap.put('青岛','青岛市');
        SAP_ProvinceMap.put('山东','山东省');
        SAP_ProvinceMap.put('四川/西藏','四川省'); 
        SAP_ProvinceMap.put('安徽','安徽省');
        SAP_ProvinceMap.put('北京','北京市');
        SAP_ProvinceMap.put('福建','福建省');
        SAP_ProvinceMap.put('甘肃','甘肃省');
        SAP_ProvinceMap.put('贵州','贵州省');
        SAP_ProvinceMap.put('河北','河北省');
        SAP_ProvinceMap.put('河南','河南省');
        SAP_ProvinceMap.put('湖北','湖北省');
        SAP_ProvinceMap.put('湖南','湖南省');
        SAP_ProvinceMap.put('吉林','吉林省');
        SAP_ProvinceMap.put('江苏','江苏省');
        SAP_ProvinceMap.put('江西','江西省');
        SAP_ProvinceMap.put('青海','青海省');
        SAP_ProvinceMap.put('山西','山西省');
        SAP_ProvinceMap.put('陕西','陕西省');
        SAP_ProvinceMap.put('上海','上海市');
        SAP_ProvinceMap.put('天津','天津市');
        SAP_ProvinceMap.put('云南','云南省');
        SAP_ProvinceMap.put('浙江','浙江省');
        SAP_ProvinceMap.put('重庆','重庆市');
        SAP_ProvinceMap.put('海南','海南省');
        //内蒙古一致
 
        String SAP_Province = lead.Hospital_Name__r.Parent.Parent.OCM_man_province_HP__c;
        if(SAP_ProvinceMap.containsKey(SAP_Province)){
            SAP_Province = SAP_ProvinceMap.get(SAP_Province);
        }
        opp.SAP_Province__c = SAP_Province;
        //20230329 lt DB202303246427 --青岛拆分 -- 根据询“省(客户)”赋值SAP上传省 end
        opp.Owner_System__c = opp.OwnerId;
        if(lead.OwnerId != null ){
            opp.Ownerid = lead.OwnerId ;
        }
        opp.Wholesale_Price__c = lead.Wholesale_Price__c;
        List<Lead> leadcList = [Select (Select CampaignId From CampaignMembers order by CreatedDate desc) From Lead l where l.id =: lead.Id];
        for(Lead leadc : leadcList){
            List<CampaignMember> cmList = leadc.CampaignMembers;
            for (CampaignMember cm : cmList) {
                opp.CampaignId = cm.CampaignId;
                break;
            }
        }
        System.debug('opp.Hospital_Name__c:'+opp.Hospital__c);
        System.debug('dept12345:'+dept.Hospital__c);
        System.debug('opp.LeadSource:'+opp.LeadSource);
        System.debug('opp.Other_Society__c:'+opp.Other_Society__c);
        System.debug('opp.Purchase_Reason__c:'+opp.Purchase_Reason__c);
        System.debug('opp.Trade__c:'+opp.Trade__c);
        System.debug('opp.Sales_Root__c:'+opp.Sales_Root__c);
        System.debug('opp.Close_Forecasted_Date__c:'+opp.Close_Forecasted_Date__c);
        System.debug('opp.Competitor__c:'+opp.Competitor__c);
        System.debug('opp.Hospital_Budget__c:'+opp.Hospital_Budget__c);
        System.debug('opp.Promise_Class__c:'+opp.Promise_Class__c);
        System.debug('opp.Dicision_Maker__c:'+opp.Dicision_Maker__c);
        System.debug('opp.Purchase_Type__c:'+opp.Purchase_Type__c);
        System.debug('opp.Sales_Method__c:'+opp.Sales_Method__c);
        System.debug('opp.Fund_Basis__c:'+opp.Fund_Basis__c);
        System.debug('opp.SAP_Province__c:'+opp.SAP_Province__c);
 
        // 2022-04-15 OBSAP新增修改 start
        opp.CampaignId = lead.Campaign__c;
        System.debug('opp.CampaignId:'+opp.CampaignId);
        // 招标项目
        if (String.isNotBlank(lead.Tender_information__c)) {
            opp.Bidding_Project_Name_Bid__c = lead.Tender_information__c;
            //SWAG-CEY8GZ 20220620 lt update
            // 新建link
            // Tender_Opportunity_Link__c link = new Tender_Opportunity_Link__c();
            // link.Tender_information__c = this.lead.Tender_information__c;
            // link.Opportunity__c = opp.Id;
            // link.Tender_Opportunity_Uniq__c = String.valueOf(this.lead.Tender_information__c) + String.valueOf(opp.Id);
 
            // insert link;
            //SWAG-CEY8GZ 20220620 lt update
        }
        // 经销商询价
        // 2022-05-20 调整经销商询价的更新顺序 ssm start
        //SWAG-CEY8GZ 20220620 lt update
        // Agency_Opportunity__c ao = null;
        if (String.isNotBlank(lead.Agency_Opportunity__c)) {
            opp.Agency_Opportunity__c = lead.Agency_Opportunity__c;
            // 经销商询价绑定询价
            // ao = [select Id, Change_To_Opportunity__c from Agency_Opportunity__c where Id = :this.lead.Agency_Opportunity__c];
            // ao.Change_To_Opportunity__c = opp.Id;
        }
        
        // 2022-04-15 OBSAP新增修改 end
        //update opp;
        insert opp;
        lead.Status = System.Label.StateChanges;
        lead.begin_opp_name__c = opp.Id;
        lead.begin_opp_date__c = Date.today();
        update lead;
        
        //SWAG-CEY8GZ 20220620 lt update
        // 2022-05-20 调整经销商询价的更新顺序 ssm end
        // //SWAG-CF589P【委托】【P:OBSAP】报价委托相关新需求评估 fy start
        List<QuoteIrai__c> quoteir=[select id,Opportunity__c,Lead__c from QuoteIrai__c where Lead__c =:lead.Id];
        List<QuoteIrai__c> quoteirupdate = new List<QuoteIrai__c>();
        if(quoteir.size()>0){
            for(QuoteIrai__c quo : quoteir){
                if(quo.Opportunity__c==null||quo.Opportunity__c==''){
                    quo.Opportunity__c=opp.Id;
                    quoteirupdate.add(quo);
                }
            }
        }
        System.debug('leadId++'+lead.Id);
        System.debug('quoteir++'+quoteir);
        System.debug('quoteirupdate++'+quoteirupdate);
        if(quoteirupdate.size()>0){
            update quoteirupdate;
        }
        return opp.Id;
    }
 
    public void testMock(){
        Integer i = 0;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
        i++;
    }
}