高章伟
2022-02-24 2aa8da8af66aa8ae00f25831aed6bb0364176e7b
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
public without sharing class AssetHandlerCheck extends Oly_TriggerHandler {
    private Map<Id, Asset> newMap;
    private Map<Id, Asset> oldMap;
    private List<Asset> newList;
    private List<Asset> oldList;
    private static Set<Id> rentalErrorIds = new Set<Id>();
    private static Set<Id> jizhongErrorIds = new Set<Id>();
 
    public AssetHandlerCheck() {
        this.newMap = (Map<Id, Asset>) Trigger.newMap;
        this.oldMap = (Map<Id, Asset>) Trigger.oldMap;
        this.newList = (List<Asset>) Trigger.new;
        this.oldList = (List<Asset>) Trigger.old;
    }
 
    protected override void afterInsert() {
        checkAsset();
    }
 
    protected override void afterUpdate() {
        checkAsset();
    }
 
    private void checkAsset() {
        Set<String> ids = new Set<String> ();
        for (Asset nObj : newList) {
            Asset oObj = null;
            if(oldMap != null && oldMap.containsKey(nObj.Id)) {
                oObj = oldMap.get(nObj.Id);
            }
            if (nObj.AssetManageConfirm__c && nObj.Account_Management_Code__c != System.Label.Account_Asset_FJZ ) {
                if(!jizhongErrorIds.contains(nObj.Id) && nObj.Ji_Zhong_Guan_Li_Ku_Cun__c < 0
                    && (oObj == null || oObj.Ji_Zhong_Guan_Li_Ku_Cun__c != nObj.Ji_Zhong_Guan_Li_Ku_Cun__c)) {
                    ids.add(nObj.Id);
                    jizhongErrorIds.add(nObj.Id);
                }
                if(!rentalErrorIds.contains(nObj.Id)
                    && (nObj.Out_of_wh__c != nObj.Out_of_wh_Sys__c || nObj.Rental_Count_Sys__c != nObj.Rental_Count__c)) {
                    ids.add(nObj.Id);
                    rentalErrorIds.add(nObj.Id);
                }
            }
        }
 
        if(!ids.isEmpty()) {
            String idsStr = String.join(new List<String>(ids),',');
            System.enqueueJob(new AssetHandlerCheckQueuable(idsStr));
        }
    }
}