liuyn
2024-03-11 a87f1c3df03078814ee97ad0c8ac200a232419e9
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
public without sharing class AssetMaintainDetailHandler extends Oly_TriggerHandler {
    private Map<Id, AssetMaintainDetail__c> newMap;
    private Map<Id, AssetMaintainDetail__c> oldMap;
    private List<AssetMaintainDetail__c> newList;
    private List<AssetMaintainDetail__c> oldList;
    private Datetime today = System.now();
    private Map<String,String> MAINTYPE_ABBR_MAP = new Map<String, String> {
            '断念找回(断念取消)'=> 'DNQX',
            '断念找回(重新登录)'=>'DNDL',
            '冻结'=>'DJ',
            '解冻'=>'JD',
            '实物报废'=>'BFSW',
            '废弃(丢失)'=>'BFDS',
            '废弃(盘亏)'=>'BFPK',
            '盘盈(数量管理)'=>'PY',
            '耗材已消耗数'=>'XH'
        } ;
    public AssetMaintainDetailHandler() {
        this.newMap = (Map<Id, AssetMaintainDetail__c>) Trigger.newMap;
        this.oldMap = (Map<Id, AssetMaintainDetail__c>) Trigger.oldMap;
        this.newList = (List<AssetMaintainDetail__c>) Trigger.new;
        this.oldList = (List<AssetMaintainDetail__c>) Trigger.old;
    }
    protected override void beforeInsert() {
        beforeSetValue();
    }
    protected override void beforeUpdate() {
        beforeSetValue();
    }
 
    protected override void afterInsert() {
        changeDesperateRetrieveDate();
    }
 
    protected override void afterUpdate() {
        changeDesperateRetrieveDate();
    }
 
    private void beforeSetValue() {
        for (AssetMaintainDetail__c nObj : newList) {
            if(Trigger.isInsert || Trigger.isUpdate){
                nObj.Name = 'WHD-' + this.MAINTYPE_ABBR_MAP.get(nObj.MaintainType__c) + this.today.format('-YYYYMM-') + String.valueOf(nObj.OrderNumber__c).leftpad(4, '0');
            }
        }
    }
 
    private void changeDesperateRetrieveDate(){
        Set<Id> ids = new Set<Id>();
        List<AssetMaintainDetail__c> amdList = new List<AssetMaintainDetail__c>();
        for (AssetMaintainDetail__c amd : newList) {
            AssetMaintainDetail__c oldAMD = null;
            if (Trigger.isUpdate) {
                oldAMD = oldMap.get(amd.Id);
            }
            if ((oldAMD == null || (oldAMD != null && oldAMD.MaintainType__c != amd.MaintainType__c))
                && (amd.MaintainType__c == '断念找回(断念取消)' || amd.MaintainType__c == '断念找回(重新登录)')) {
                ids.add(amd.AssetMaintainHeader__c);
                amdList.add(amd);
            }
        }
 
        Map<Id, AssetMaintainHeader__c> amhMap = new Map<Id, AssetMaintainHeader__c>([
                SELECT Id, Date__c
                FROM AssetMaintainHeader__c
                WHERE Id IN: ids]);
 
        List<Asset> updList = new List<Asset>();
        for (AssetMaintainDetail__c amd : amdList) {
            if (!amhMap.isEmpty() && amhMap.containsKey(amd.AssetMaintainHeader__c)) {
                Asset ass = new Asset();
                ass.Id = amd.Asset__c;
                ass.DesperateRetrieveDate__c = amhMap.get(amd.AssetMaintainHeader__c).Date__c;
                updList.add(ass);
            }
        }
 
        if (!updList.isEmpty()) {
            update updList;
        }
 
    }
}