高章伟
2022-02-18 8b5f4c6c281cfa548f92de52c8021e37aa81901e
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
public without sharing class AgencyReportHandler extends Oly_TriggerHandler {
    private Map<Id, Agency_Report__c> newMap;
    private Map<Id, Agency_Report__c> oldMap;
    private List<Agency_Report__c> newList;
    private List<Agency_Report__c> oldList;
    public AgencyReportHandler() {
        this.newMap = (Map<Id, Agency_Report__c>) Trigger.newMap;
        this.oldMap = (Map<Id, Agency_Report__c>) Trigger.oldMap;
        this.newList = (List<Agency_Report__c>) Trigger.new;
        this.oldList = (List<Agency_Report__c>) Trigger.old;
    }
 
    protected override void beforeInsert() {
        beforeExecute();
    }
 
    protected override void beforeUpdate() {
        beforeExecute();
    }
 
    protected override void afterInsert() {
        afterExecute();
        MonFirVisit();
        PerFirVisit();
    }
 
    protected override void afterUpdate() {
        afterExecute();
        MonFirVisit();
        PerFirVisit();
    }
 
    //Before処理
    private void beforeExecute() {
        for(Agency_Report__c a : this.newList) {
           a.Agency__c = a.Owner_Agency_ID__c;
           a.Agency_ID__c = String.valueOf(a.Owner_Agency_ID__c).substring(0,15);
        }
    }
 
    //After処理
    private void afterExecute() {
        Set<String> agency_Hospital_Set = new Set<String>();
        for (Agency_Report__c a : this.newList) {
            if (a.VistorKey__c != null) {
                if (Trigger.isUpdate) {
                    Agency_Report__c ar = this.oldMap.get(a.Id);
                    if (a.VistorKey__c != ar.VistorKey__c) {
                        Agency_Hospital_Set.add(ar.VistorKey__c);
                        Agency_Hospital_Set.add(a.VistorKey__c);
                    }
                } else {
                    Agency_Hospital_Set.add(a.VistorKey__c);
                }
            }
        }
        if (Agency_Hospital_Set.size() > 0) {
            List<Agency_Report__c> arList = [select Id,FirstVisitCount__c, VistorKey__c from Agency_Report__c where VistorKey__c in :agency_Hospital_Set order by VistorKey__c, CreatedDate];
        
            String oldKey = '';
            List<Agency_Report__c> updateList = new List<Agency_Report__c>();
            for (Agency_Report__c ar : arList) {
                if (oldKey != ar.VistorKey__c) {
                    oldKey = ar.VistorKey__c;
                    if (ar.FirstVisitCount__c != 1) {
                        ar.FirstVisitCount__c = 1;
                    } else {
                        continue;
                    }
                } else {
                    oldKey = ar.VistorKey__c;
                    if (ar.FirstVisitCount__c == 1) {
                        ar.FirstVisitCount__c = 0;
                    } else {
                        continue;
                    }
                }
                updateList.add(ar);
            }
            Database.update(updateList, false);
        }
    }
 
    //SWAG-C5XBY2  精琢科技  lt  2021-08-26  start
    //月首次访问
    private void MonFirVisit() {
        Set<String> agency_Hospital_Set1 = new Set<String>();
        for (Agency_Report__c a : this.newList) {
            if (a.MonVistorKey__c != null) {
                if (Trigger.isUpdate) {
                    Agency_Report__c ar = this.oldMap.get(a.Id);
                    if (a.MonVistorKey__c != ar.MonVistorKey__c || (System.Label.onlyupdate == '1' && UserInfo.getUserId() == '00510000005sEEMAA2')) {
                        Agency_Hospital_Set1.add(ar.MonVistorKey__c);
                        Agency_Hospital_Set1.add(a.MonVistorKey__c);
                    }
                } else {
                    Agency_Hospital_Set1.add(a.MonVistorKey__c);
                }
            }
        }
        if (Agency_Hospital_Set1.size() > 0) {
            List<Agency_Report__c> arList = [select Id,FirstVisitCountMonthly__c, MonVistorKey__c from Agency_Report__c where MonVistorKey__c in :agency_Hospital_Set1 order by MonVistorKey__c, CreatedDate];
        
            String oldKey = '';
            List<Agency_Report__c> updateList = new List<Agency_Report__c>();
            for (Agency_Report__c ar : arList) {
                if (oldKey != ar.MonVistorKey__c) {
                    oldKey = ar.MonVistorKey__c;
                    if (ar.FirstVisitCountMonthly__c != 1) {
                        ar.FirstVisitCountMonthly__c = 1;
                    } else {
                        continue;
                    }
                } else {
                    oldKey = ar.MonVistorKey__c;
                    if (ar.FirstVisitCountMonthly__c == 1) {
                        ar.FirstVisitCountMonthly__c = 0;
                    } else {
                        continue;
                    }
                }
                updateList.add(ar);
            }
            Database.update(updateList, false);
        }
    }
 
    //本月第一次拜访人数FirstVisitCountMonPerson__c
    private void PerFirVisit() {
        Set<String> Person_In_Set = new Set<String>();
        for (Agency_Report__c a : this.newList) {
            if (a.MonPerVistorKey__c != null) {
                if (Trigger.isUpdate) {
                    Agency_Report__c ar = this.oldMap.get(a.Id);
                    if (a.MonPerVistorKey__c != ar.MonPerVistorKey__c || (System.Label.onlyupdate == '1' && UserInfo.getUserId() == '00510000005sEEMAA2')) {
                        Person_In_Set.add(ar.MonPerVistorKey__c);
                        Person_In_Set.add(a.MonPerVistorKey__c);
                    }
                } else {
                    Person_In_Set.add(a.MonPerVistorKey__c);
                }
            }
        }
        if (Person_In_Set.size() > 0) {
            List<Agency_Report__c> arList = [select Id,FirstVisitCountMonPerson__c, MonPerVistorKey__c from Agency_Report__c where MonPerVistorKey__c in :Person_In_Set order by MonPerVistorKey__c, CreatedDate];
        
            String oldKey = '';
            List<Agency_Report__c> updateList = new List<Agency_Report__c>();
            for (Agency_Report__c ar : arList) {
                if (oldKey != ar.MonPerVistorKey__c) {
                    oldKey = ar.MonPerVistorKey__c;
                    if (ar.FirstVisitCountMonPerson__c != 1) {
                        ar.FirstVisitCountMonPerson__c = 1;
                    } else {
                        continue;
                    }
                } else {
                    oldKey = ar.MonPerVistorKey__c;
                    if (ar.FirstVisitCountMonPerson__c == 1) {
                        ar.FirstVisitCountMonPerson__c = 0;
                    } else {
                        continue;
                    }
                }
                updateList.add(ar);
            }
            Database.update(updateList, false);
        }
    }
 
    //SWAG-C5XBY2  精琢科技  lt  2021-08-26  end
 
}