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
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
public without sharing class LostReportHandler extends Oly_TriggerHandler {
    private Map<Id, LostReport__c> newMap;
    private Map<Id, LostReport__c> oldMap;
    private List<LostReport__c> newList;
    private List<LostReport__c> oldList;
 
    private static Set<String> checkedSet = new Set<String>();
    private static Map<Id, LostReport__c> needCheckLRMap = new Map<Id, LostReport__c>();
 
    private static Set<String> checkedRAESDSet = new Set<String>();
 
    private static Set<String> checkedIDSet = new Set<String>();
    // 需要追加共享的共享Object
    private static List<SObject> shareList = new List<SObject>();
    // 已经放在追加共享List的Key
    private static Set<String> shareSet = new Set<String>();
 
    private static User planning_DivisionB;
    
    public LostReportHandler() {
        this.newMap = (Map<Id, LostReport__c>) Trigger.newMap;
        this.oldMap = (Map<Id, LostReport__c>) Trigger.oldMap;
        this.newList = (List<LostReport__c>) Trigger.new;
        this.oldList = (List<LostReport__c>) Trigger.old;
    }
 
    protected override void beforeInsert() {
        beforeExecute();
    }
 
    protected override void beforeUpdate() {
        needCheckLRMap = new Map<Id, LostReport__c>();
        beforeExecute();
        setEmail_Detail();
    }
 
    protected override void afterUpdate() {
        // updateNeedAutoGiveup();
        setShare();
        if (shareList.size() > 0) {
            insert shareList;
        }
        //add by rentx 20210604 1635 start  
        setBeiPinWindowAndTOwner();
        //add by rentx 20210609 1635 end
        //2021-12-17  mzy  备品任务  start
        //遗失报告批准给备品配套一览明细打标识
        setRentalDetailFlag();
        //2021-12-17  mzy  备品任务  end
    }
 
    protected override void afterDelete() {
        deleteCheck();
    }
 
    //add by rentx 20210604 start 
    private void setBeiPinWindowAndTOwner(){
        List<LostReport__c> updateList = new List<LostReport__c>();
        //需要进行查询,因为有公式字段
        List<Id> ids = new List<Id>();
        for (LostReport__c nObj : newList) {
            //add by rentx 1650 start  盘点时也给备品总窗口赋值
            if (nObj.TransferApply__c != null || nObj.Inventory_Header__c != null) {
                ids.add(nObj.Id);
            }
        }
 
        if (ids.size() > 0) {
            List<LostReport__c> lrList = [select id,BeiPinWindow_F__c,TransferApply__r.OwnerId,TransferApply__r.Contact_Person__c,TransferApplyDeveloperName__c from LostReport__c where id in :ids];
            for (LostReport__c lost : lrList) {
                //给备品总窗口赋值
                lost.BeiPinWindow__c = lost.BeiPinWindow_F__c;
                //给联络人赋值 办事处到备品中心取联络人,备品中心到办事处取申请人
                if (lost.TransferApplyDeveloperName__c == '备品中心调拨至办事处') {
                    lost.TApplyOwner__c = lost.TransferApply__r.OwnerId;
                }else if (lost.TransferApplyDeveloperName__c == '办事处调拨至备品中心') {
                    lost.TApplyOwner__c = lost.TransferApply__r.Contact_Person__c;
                }
 
            }
 
            //add by rentx 20210604 1635 start 给备品总窗口赋值
            if (lrList.size() > 0) {
                Oly_TriggerHandler.bypass('LostReportHandler');
                update lrList;
            }
            //add by rentx 20210604 
        }
 
    }
    //add by rentx 20210604 end
 
    private void deleteCheck() {
        for (LostReport__c oObj : oldList) {
            if (oObj.Status__c == '草案中' && oObj.LostReport_Detail_Count__c > 0) {
                oObj.addError('不可以删除有遗失报告明细的草案中遗失报告。');
            }
        }
    }
 
    private void setEmail_Detail() {
        Set<Id> needSetEmailRaesdSet = new Set<Id>();
        Set<Id> needSetEmailLHSet = new Set<Id>();
        Set<Id> needSetEmailDBSet = new Set<Id>();
        List<LostReport__c> needSetEmailAssetList = new List<LostReport__c>();
        for (LostReport__c nObj : newList) {
            LostReport__c oObj;
            if (Trigger.isUpdate) {
                oObj = oldMap.get(nObj.Id);
            }
            System.debug('nObj::'+nObj);
            if (oObj != null
                    && oObj.Status__c != nObj.Status__c
                    && (nObj.Status__c == '已批准'
                            || nObj.Status__c == '填写完毕')) {
                if (String.isNotBlank(nObj.Rental_Apply__c)) {
                    needSetEmailRaesdSet.add(nObj.Id);
                }
                if (String.isNotBlank(nObj.Inventory_Header__c)) {
                    needSetEmailLHSet.add(nObj.Id);
                }
                if (String.isNotBlank(nObj.Asset__c)) {
                    needSetEmailAssetList.add(nObj);
                }
                //add by rentx 20210609 1635 start
                if (String.isNotBlank(nObj.TransferApply__c)) {
                    needSetEmailDBSet.add(nObj.Id);
                }
                //add by rentx 20210609 end
            }
        }
        //update by rentx 20210609 start
        // if (needSetEmailRaesdSet.size() > 0 || needSetEmailLHSet.size() > 0) {
        //     setEmail_DetailRaesd(needSetEmailRaesdSet, needSetEmailLHSet);
        // }
        System.debug('115::::::'+needSetEmailDBSet);
        if (needSetEmailRaesdSet.size() > 0 || needSetEmailLHSet.size() > 0 || needSetEmailDBSet.size() > 0) {
            setEmail_DetailRaesd(needSetEmailRaesdSet, needSetEmailLHSet, needSetEmailDBSet);
        }
        //update by rentx 20210609 1635 end
        setPlanning_DivisionB(needSetEmailAssetList);
    }
 
    private void setPlanning_DivisionB(List<LostReport__c> needSetEmailAssetList) {
        if (needSetEmailAssetList.size() > 0) {
            if (planning_DivisionB == null) {
                List<User> us = [SELECT Id
                                      , JingliEquipmentManager__c
                                   FROM User
                                  WHERE Id = :System.Label.Planning_DivisionAId];
                if (us.size() > 0) {
                    planning_DivisionB = us[0];
                }
            }
            for (LostReport__c nObj : needSetEmailAssetList) {
                nObj.Planning_DivisionB__c = planning_DivisionB.JingliEquipmentManager__c;
                nObj.Planning_DivisionA__c = System.Label.Planning_DivisionAId;
            }
        }
    }
 
    private void setEmail_DetailRaesd(Set<Id> needSetEmaiRAESDSet, Set<Id> needSetEmailLDSet, Set<Id> needSetEmailDBSet) {
        System.debug(needSetEmaiRAESDSet);
        System.debug(needSetEmailLDSet);
        System.debug(needSetEmailDBSet);
        Map<Id, String> lrMap = new Map<Id, String>();
        List<LostReport_Detail__c> lrdList = [SELECT Id,
                                                         LostReport__c,
                                                         Rental_Apply_Equipment_Set_Detail__r.Fixture_Model_No_F__c,
                                                         Inventory_Detail__r.Inventory_Deviation__c,
                                                         Inventory_Detail__r.Asset__r.Fixture_Model_No_F__c,
                                                         Inventory_Detail__r.Asset__r.Internal_asset_location__c,
                                                         Inventory_Detail__r.Asset__r.SerialNumber,
                                                         Inventory_Detail__r.Asset__r.CompanyOfEquipment__c,
                                                         Inventory_Detail__r.Asset__r.Internal_Asset_number__c,
                                                         Inventory_Detail__r.Asset__r.Salesdepartment__c,
                                                         TransferApplyDetail__r.Fixture_Model_No_F__c 
                                                    FROM LostReport_Detail__c
                                                   WHERE (      (LostReport__c = :needSetEmailLDSet
                                                                    AND Inventory_Detail__c != null
                                                                )
                                                             OR (LostReport__c = :needSetEmaiRAESDSet
                                                                     AND Rental_Apply_Equipment_Set_Detail__c != null
                                                                )
                                                             //add by rentx  1635 20210609 
                                                             OR (LostReport__c = :needSetEmailDBSet 
                                                                    AND TransferApplyDetail__c != null
                                                                )
                                                             //add by rentx  1635 20210609
                                                          )
                                                     AND CancelLostReport__c = false
                                                   ORDER BY LostReport__c];
        Integer i = 0;
        LostReport_Detail__c lrd1 = new LostReport_Detail__c();
        for (LostReport_Detail__c lrd : lrdList) {
            if (lrMap.containsKey(lrd.LostReport__c) == false) {
                String htmlStr = '备品明细:<BR>';
                if (needSetEmaiRAESDSet.contains(lrd.LostReport__c)) {
                     // htmlStr += Asset.Fixture_Model_No_F__c.getDescribe().getLabel() + '</td>';
                    //add by rentx 20210609 1635 start
                }else if (needSetEmailDBSet.contains(lrd.LostReport__c)) {
                    //add by rentx 20210609 1635 end
                }
                else {
                    htmlStr += '<table border="2">';
                    htmlStr += '<tr>';
                    htmlStr += '<td>' + Asset.Salesdepartment__c.getDescribe().getLabel() + '</td>';
                    htmlStr += '<td>' + Asset.Internal_asset_location__c.getDescribe().getLabel() + '</td>';
                    htmlStr += '<td>' + Asset.Fixture_Model_No_F__c.getDescribe().getLabel() + '</td>';
                    htmlStr += '<td>' + Asset.SerialNumber.getDescribe().getLabel() + '</td>';
                    htmlStr += '<td>' + Asset.CompanyOfEquipment__c.getDescribe().getLabel() + '</td>';
                    htmlStr += '<td>' + Asset.Internal_Asset_number__c.getDescribe().getLabel() + '</td>';
                    htmlStr += '<td>' + Inventory_Detail__c.Inventory_Deviation__c.getDescribe().getLabel() + '</td>';
                    htmlStr += '</tr>';
                }
                lrMap.put(lrd.LostReport__c, htmlStr);
            }
            if (lrd.LostReport__c != lrd1.LostReport__c) {
                i = 0;
                lrd1 = lrd;
            }
            String str = lrMap.get(lrd.LostReport__c);
            String modelNo = '';
            
            if (needSetEmaiRAESDSet.contains(lrd.LostReport__c)) {
                modelNo += lrd.Rental_Apply_Equipment_Set_Detail__r.Fixture_Model_No_F__c;
                lrMap.put(lrd.LostReport__c,str
                    // + '<a href="'
                    // + baseUrl + '/' + raes.Id
                    // +'">'
                    + '型号:' + modelNo
                    // + '</a>'
                    + '<BR>');
            }
            else if (needSetEmailLDSet.contains(lrd.LostReport__c)) {
                modelNo += '<tr>';
                // 本部  备品存放地  备品配套明细型号 机身号 分公司 固定资产号 盘亏数量
                modelNo += '<td>' + checkBlank(lrd.Inventory_Detail__r.Asset__r.Salesdepartment__c) + '</td>';
                modelNo += '<td>' + checkBlank(lrd.Inventory_Detail__r.Asset__r.Internal_asset_location__c) + '</td>';
                modelNo += '<td>' + checkBlank(lrd.Inventory_Detail__r.Asset__r.Fixture_Model_No_F__c) + '</td>';
                modelNo += '<td>' + checkBlank(lrd.Inventory_Detail__r.Asset__r.SerialNumber) + '</td>';
                modelNo += '<td>' + checkBlank(lrd.Inventory_Detail__r.Asset__r.CompanyOfEquipment__c) + '</td>';
                modelNo += '<td>' + checkBlank(lrd.Inventory_Detail__r.Asset__r.Internal_Asset_number__c) + '</td>';
                modelNo += '<td>' + (lrd.Inventory_Detail__r.Inventory_Deviation__c * -1) + '</td>';
                modelNo += '</tr>';
                lrMap.put(lrd.LostReport__c,str + modelNo);
                //add by rentx 20210609 1635 start 调拨的不要 前面这个和型号
            }else if (needSetEmailDBSet.contains(lrd.LostReport__c)) {
                modelNo += lrd.TransferApplyDetail__r.Fixture_Model_No_F__c;
                lrMap.put(lrd.LostReport__c,str.replace('备品明细:<BR>', '')
                    + modelNo
                    + '<BR>');
            }
                //add by rentx 20210609 end
            i ++;
        }
        System.debug(lrMap);
        for (Id lrId : lrMap.keySet()) {
            String emailD = lrMap.get(lrId);
            if (needSetEmailLDSet.contains(lrId)) {
                emailD += '</table>';
            }
            //add by rentx 1635 20210609 start
            if (needSetEmailDBSet.contains(lrId)) {
                emailD += '</table>';
            }
            //add by rentx 20210609 end
            newMap.get(lrId).Email_Detail__c = emailD;
        }
    }
 
    private String checkBlank(String str) {
        if (String.isBlank(str)) {
            return '';
        }
        return str;
    }
 
    // private void updateNeedAutoGiveup() {
    //     if (needCheckLRMap.isEmpty() == false) {
    //         List<LostReport_Detail__c> ldList = [SELECT Id,
    //                                                     Rental_Apply_Equipment_Set_Detail__c,
    //                                                     Inventory_Detail__c
    //                                                FROM LostReport_Detail__c
    //                                               WHERE LostReport__c = :needCheckLRMap.keySet()
    //                                                 AND Auto_Lost_item_giveup_F__c = false
    //                                                 AND CancelLostReport__c = false];
 
    //         List<Rental_Apply_Equipment_Set_Detail__c> raesdList = new List<Rental_Apply_Equipment_Set_Detail__c>();
    //         List<Inventory_Detail__c> idList = new List<Inventory_Detail__c>();
    //         for (LostReport_Detail__c ldObj : ldList) {
    //             if (String.isNotBlank(ldObj.Rental_Apply_Equipment_Set_Detail__c)
    //                     && !checkedRAESDSet.contains(ldObj.Rental_Apply_Equipment_Set_Detail__c)) {
    //                 checkedRAESDSet.add(ldObj.Rental_Apply_Equipment_Set_Detail__c);
    //                 raesdList.add(new Rental_Apply_Equipment_Set_Detail__c(Id = ldObj.Rental_Apply_Equipment_Set_Detail__c));
    //             }
    //             else if (String.isNotBlank(ldObj.Inventory_Detail__c)
    //                     && checkedIDSet.contains(ldObj.Inventory_Detail__c)) {
    //                 checkedIDSet.add(ldObj.Inventory_Detail__c);
    //                 idList.add(new Inventory_Detail__c(Id = ldObj.Inventory_Detail__c));
    //             }
    //         }
    //         if (raesdList.size() > 0 || idList.size() > 0) {
    //             Loaner_AutoGiveup(raesdList, null,idList);
    //         }
    //     }
    // }
 
    private void beforeExecute() {
        Set<String> clearIsPunishObjSet = new Set<String>();// 20211216 ljh SFDC-C933NJ add start
        for (LostReport__c nObj : newList) {
            LostReport__c oObj;
            // OCSM_BP3-126 遗失报告提交申请书的时候需要重新设置user,看申请书owner
            if (Trigger.isUpdate) {
                oObj = oldMap.get(nObj.Id);
            }
            if (Trigger.isInsert
                || (oObj != null
                        && nObj.Status__c=='填写完毕'
                        && nObj.Status__c != oObj.Status__c)) {
                nObj.RA_BuchangApprovalManagerSales__c = nObj.RA_BuchangApprovalManagerSales_F__c;
                nObj.RA_Person_In_Charge__c = nObj.RA_Person_In_Charge_F__c;
                nObj.RA_ZongjianApprovalManager__c = nObj.RA_ZongjianApprovalManager_F__c;
                nObj.RA_SalesManager__c = nObj.RA_SalesManager_F__c;
                nObj.RA_TongkuoZongjian__c = nObj.RA_TongkuoZongjian_F__c;
                nObj.Rental_Apply_SplitUser__c = nObj.Rental_Apply_SplitUser_F__c;//20210427 you 1653
                bp3_Setting__c conf = bp3_Setting__c.getOrgDefaults();
                nObj.BeiPin_ZhongJian__c = conf.BeiPin_ZhongJian__c;
                if (nObj.Rental_Apply__c != null) {
                    if(nObj.Salesdept_F__c == '医疗华东营业本部') {
                        nObj.FuZongJian__c = conf.FuZongJian__c;
                    }
                    else {
                        nObj.FuZongJian__c = null;
                    }   
                }
                //add by rentx 202109011 1635 start   or 1650 you
                if (nObj.TransferApply__c != null || nObj.Inventory_Header__c != null) {
                    if(nObj.benbu__c  == '医疗华东营业本部') {
                        nObj.FuZongJian__c = conf.FuZongJian__c;
                    }
                    else {
                        nObj.FuZongJian__c = null;
                    } 
                }
                //add by rentx 20210911 1635 end 
                
                if (String.isBlank(nObj.Asset__c)) {
                    nObj.YunYingBuZhang__c = conf.YunYingBuZhang__c;
                }
                nObj.Assign_Person__c = nObj.Assign_Person_F__c;
            }
            if (oObj != null
                    && oObj.Status__c != '已批准'
                    && nObj.Status__c == '已批准'
                    && checkedSet.contains(nObj.Id)) {
                needCheckLRMap.put(nObj.Id, nObj);
                checkedSet.add(nObj.Id);
            }
            if (nObj.LostReport_Detail_Count__c == 0
                && oObj != null
                && ((oObj.LostReport_approval_time__c != nObj.LostReport_approval_time__c && nObj.LostReport_approval_time__c != null)
                        || (oObj.BuchangManager_approval_time__c != nObj.BuchangManager_approval_time__c && nObj.BuchangManager_approval_time__c != null)
                        || (oObj.Assign_Person_approval_time__c != nObj.Assign_Person_approval_time__c && nObj.Assign_Person_approval_time__c != null)
                        || (oObj.BeiPin_ZhongJian_approval_time__c != nObj.BeiPin_ZhongJian_approval_time__c && nObj.BeiPin_ZhongJian_approval_time__c != null)
                        || (oObj.ZongjianManager_approval_time__c != nObj.ZongjianManager_approval_time__c && nObj.ZongjianManager_approval_time__c != null)
                        || (oObj.SalesManager_approval_time__c != nObj.SalesManager_approval_time__c && nObj.SalesManager_approval_time__c != null)
                        || (oObj.TongkuoZongjian_approval_time__c != nObj.TongkuoZongjian_approval_time__c && nObj.TongkuoZongjian_approval_time__c != null)
                        || (oObj.Planning_DivisionA_approval_time__c != nObj.Planning_DivisionA_approval_time__c && nObj.Planning_DivisionA_approval_time__c != null)
                        || (oObj.Planning_DivisionB_approval_time__c != nObj.Planning_DivisionB_approval_time__c && nObj.Planning_DivisionB_approval_time__c != null)
                    )) {
                nObj.addError('没有遗失报告明细,不能批准');
            }
            if(oObj != null && oObj.Status__c == '申请中' && nObj.Status__c == '草案中') {
                // 各级批准时间共8个
                nObj.SalesManager_approval_time__c = null;
                nObj.BuchangManager_approval_time__c = null;
                nObj.FuZongJian_approval_time__c = null;
                nObj.ZongjianManager_approval_time__c = null;
                nObj.TongkuoZongjian_approval_time__c = null;
                nObj.Assign_Person_approval_time__c = null;
                nObj.YunYingBuZhang_approval_time__c = null;
                nObj.BeiPin_ZhongJian_approval_time__c = null;
                nObj.Planning_DivisionA_approval_time__c = null;
                nObj.Planning_DivisionB_approval_time__c = null;
                nObj.Rental_Apply_SplitUser_approval_time__c = null;//20210427 you 1653
                // 清空遗失报告批准时间
                nObj.LostReport_approval_time__c = null;
                // 20211216 ljh SFDC-C933NJ add start
                // 2.驳回的时候清空明细&&是否罚则对象
                nObj.IsFinishPunishObj__c = false;
                clearIsPunishObjSet.add(nObj.Id);
                // 20211216 ljh SFDC-C933NJ add end
            }
            // 20211216 ljh SFDC-C933NJ add start
            // 1.备品中心提交 部长审批的时候 必须填写 【是否罚则对象】 部长批准时间 \运营部长批准时间
            String uId = UserInfo.getUserId();
            System.debug('zheli398:'+nObj.YunYingBuZhang__c+nObj.YunYingBuZhang_approval_time__c);
            if(oObj != null && uId.substring(0,15) == System.Label.PersonalId
                && (
                    (String.isNotBlank(nObj.RA_BuchangApprovalManagerSales__c) && nObj.RA_BuchangApprovalManagerSales__c == UserInfo.getUserId() && oObj.BuchangManager_approval_time__c == null && nObj.BuchangManager_approval_time__c != null)
                    || 
                    (String.isNotBlank(nObj.YunYingBuZhang__c) && nObj.YunYingBuZhang__c == UserInfo.getUserId() && oObj.YunYingBuZhang_approval_time__c == null && nObj.YunYingBuZhang_approval_time__c != null)
                    )
                && nObj.IsFinishPunishObj__c == false){
                nObj.addError('【是否罚则对象】 必须填写保存后才能审批');
            }
            // 20211216 ljh SFDC-C933NJ add end
        }
        if (System.Trigger.isInsert) {
            setPlanning_DivisionB(newList);
        }
        // 20211216 ljh SFDC-C933NJ add start
        // 2.驳回的时候清空明细
        if(clearIsPunishObjSet.size() > 0){
            List<LostReport_Detail__c> lrdList = [SELECT Id,IsPunishObj__c FROM LostReport_Detail__c WHERE LostReport__c IN :clearIsPunishObjSet AND IsPunishObj__c != null];
            if(lrdList.size() > 0){
                for(LostReport_Detail__c lrd:lrdList){
                    lrd.IsPunishObj__c = null;
                }
                update lrdList;
            }
        }
        // 20211216 ljh SFDC-C933NJ add end
    }
 
    private void setShare() {
        for (LostReport__c nObj: newList) {
            LostReport__c oObj = oldMap.get(nObj.Id);
            if (oObj.Status__c != nObj.Status__c
                    && nObj.Status__c == '填写完毕') {
                List<String> userList = new List<String>();
                userList.add(nObj.RA_SalesManager_F__c + '_Read');
                userList.add(nObj.RA_BuchangApprovalManagerSales__c + '_Read');
                userList.add(nObj.RA_ZongjianApprovalManager_F__c + '_Read');
                userList.add(nObj.RA_TongkuoZongjian_F__c + '_Read');
                setSObjectShare('LostReport__Share', 'Manual', nObj.Id, userList, nObj.OwnerId, shareSet, shareList);
            }
        }
    }
 
    //update by rentx 20210514 start 1635
    // public static void Loaner_AutoGiveup(List<Rental_Apply_Equipment_Set_Detail__c> raesds, List<LostReport_Detail__c> lrds, List<Inventory_Detail__c> ids) {
    public static void Loaner_AutoGiveup(List<Rental_Apply_Equipment_Set_Detail__c> raesds, List<LostReport_Detail__c> lrds, List<Inventory_Detail__c> ids, List<TransferApplyDetail__c> tadList) {
        if (tadList != null && tadList.size() > 0) {
            List<TransferApplyDetail__c> updateTList = new List<TransferApplyDetail__c>();
            for (TransferApplyDetail__c tad: tadList ) {
                //如果是非固定资产 状态丢失
                // if (tad.Internal_Asset_number_key__c == null || tad.Internal_Asset_number_key__c == '') {                
                tad.Lost_item_giveup__c = true;
                // }
                tad.Loaner_Giveup_Time__c = Datetime.now();
                updateTList.add(tad);
            }
            System.debug('LostReportHandler::::::::::::::::::::'+updateTList);
            update updateTList;
        }
        //update by rentx 2021-05-14 end 1635
        if (raesds != null && raesds.size() > 0) {
            List<Sobject> raesdList = new List<Sobject>();
            for (Rental_Apply_Equipment_Set_Detail__c raesd : raesds) {
                raesd.Lost_item_giveup__c = true;
                raesd.Loaner_Giveup_Time__c = Datetime.now();
                raesdList.add(raesd);
            }
            update raesdList;
        }
 
        if (ids != null && ids.size() > 0) {
             List<Inventory_Detail__c> idList = new List<Inventory_Detail__c>();
            for (Inventory_Detail__c id1 : ids) {
                id1.Auto_Lost_item_giveup__c = true;
                idList.add(id1);
            }
            update idList;
        }
 
        if (lrds != null && lrds.size() > 0) {
            List<LostReport_Detail__c> irdsList = new List<LostReport_Detail__c>();
            Set<Id> reportIds = new Set<Id>();
            for (LostReport_Detail__c idr : lrds) {
                idr.CancelLostReport__c = true;
                idr.DeleteLostReport_Detail_Reason__c = '自动断念删除';
                irdsList.add(idr);
                if(idr.LostReport__c != null) {
                    reportIds.add(idr.LostReport__c);
                }
            }
            update irdsList;
 
            if(reportIds.size() > 0) {
                List<LostReport__c> reportList = [SELECT Id, Status__c FROM LostReport__c WHERE Id IN:reportIds AND LostReport_Detail_Count__c = 0];
                Set<Id> cancelIdSet = new Set<Id>();
 
                if(reportList.size() > 0) {
                    Datetime now = System.now();
                    for(LostReport__c report : reportList) {
                        if(report.Status__c == '申请中'){
                            cancelIdSet.add(report.Id);
                        }
                        report.Status__c = '取消';
                        report.Cancel_Time__c = now;
                    }
                    if (cancelIdSet.size() > 0) {
                        List<Approval.ProcessWorkitemRequest> requests = new List<Approval.ProcessWorkitemRequest> ();
                        Map<ID,ProcessInstance> piMap = New Map<ID,ProcessInstance>([Select Id from ProcessInstance where TargetObjectId IN :cancelIdSet]);
                        for(ProcessInstanceWorkItem wi : [Select Id from ProcessInstanceWorkItem where ProcessInstanceId IN :piMap.keySet()]){
                            Approval.ProcessWorkitemRequest req2 = new Approval.ProcessWorkitemRequest();
                            req2.setAction('Removed');
                            req2.setWorkitemId(wi.Id);
                            requests.add(req2);
                        }
                        if (requests.size() > 0) {
                            Approval.ProcessResult[] processResults = null;
                            processResults = Approval.process(requests, true);
                        }
                    }
                    update reportList;
                }
            }
        }
    }
 
    public static void setSObjectShare(String sobjectName, String rowCause, String parentId, List<String> userAccess, String ownerId, Set<String> shareSet1, List<SObject> shareList1) {
        // オブジェクトの共有権限が公開の場合__Shareオブジェクトが存在しませんので個々で判断します
        if (Schema.getGlobalDescribe().containsKey(sobjectName)) {
            for (String ua : userAccess) {
                String userid = ua.split('_')[0];
                String access = ua.split('_')[1];
                SObject sObj = Schema.getGlobalDescribe().get(sobjectName).newSObject();
                String key = parentId + ':' + userid;
                if (String.isBlank(userid) == false
                        && userid.substring(0, 15) != ownerId.substring(0, 15)
                        && !shareSet.contains(key)) {
                    sObj.put('RowCause', rowCause);
                    sObj.put('ParentId', parentId);
                    sObj.put('UserOrGroupId', userid);
                    sObj.put('AccessLevel', access);
                    shareList1.add(sObj);
                    shareSet1.add(parentId + ':' + userid);
                }
            }
        }
    }
 
    //2021-12-17   mzy  备品任务  start
    public void setRentalDetailFlag(){
        //如果遗失报告审批,则根据遗失报告明细将借出备品配套一览明细打标识
        Set<String> LostReprotSet = new Set<String>();
        for (LostReport__c nObj : newList) {
            LostReport__c  oObj = oldMap.get(nObj.Id);
            if(oObj.Status__c != nObj.Status__c && '已批准'.equals(nObj.Status__c)){
                LostReprotSet.add(nObj.Id);
            }
        }
        //根据遗失报告查询遗失报告明细
        if(LostReprotSet.size()>0){
            List<LostReport_Detail__c> LostReprotDetailList = [SELECT Id,Rental_Apply_Equipment_Set_Detail__c FROM LostReport_Detail__c WHERE Rental_Apply_Equipment_Set_Detail__c != null AND LostReport__c in :LostReprotSet];
            Date today = Date.today();
            if(LostReprotDetailList.size()>0){
                //存放借出备品配套一览明细
                List<Rental_Apply_Equipment_Set_Detail__c> needUpdateRentalDetail = new List<Rental_Apply_Equipment_Set_Detail__c>();
                for(LostReport_Detail__c ld :LostReprotDetailList){
                    Rental_Apply_Equipment_Set_Detail__c tempDetail = new Rental_Apply_Equipment_Set_Detail__c();
                    tempDetail.Id = ld.Rental_Apply_Equipment_Set_Detail__c;
                    tempDetail.LoseReportApprovaled__c = true;
                    tempDetail.LostReportApprovalDate__c = today;
                    needUpdateRentalDetail.add(tempDetail);
                }  
                
                if(needUpdateRentalDetail.size()>0){
                    update needUpdateRentalDetail;
                }
            }
        }   
    }
    //2021-12-17   mzy  备品任务   end
 
    public void addFGL(){
        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++;
    }
 
}