高章伟
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
global class OPDLendSortCopyToSortBeforeBatch implements Database.Batchable<sObject> {
    // SWAG-BYD6DD XHL 2021/02/20 
    public String query;
    List<String> oPDPlanIdList = null;
 
    global OPDLendSortCopyToSortBeforeBatch() {
        this.query = query;
    }
 
    global OPDLendSortCopyToSortBeforeBatch(List<String> oPDPlanIdList) {
        this.oPDPlanIdList = oPDPlanIdList;
    }
 
    global Database.QueryLocator start(Database.BatchableContext bc) {
 
        if (oPDPlanIdList <> null) {
            return Database.getQueryLocator([SELECT Id, Name, OPDPlan_ImplementDate__c,OPDLendSort__c,OPDLendSortDraft__c,OPDLendSortBefore__c,Status__c FROM OPDPlan__c WHERE (OPDLendSort__c != null OR OPDLendSortDraft__c != null OR OPDLendSortBefore__c != null) AND Status__c = '计划中' AND Id In :oPDPlanIdList]);
        } else {
            return Database.getQueryLocator([SELECT Id, Name, OPDPlan_ImplementDate__c,OPDLendSort__c,OPDLendSortDraft__c,OPDLendSortBefore__c,Status__c FROM OPDPlan__c WHERE Status__c = '计划中' AND (OPDLendSort__c != null OR OPDLendSortDraft__c != null OR OPDLendSortBefore__c != null)]);
        }
    }
 
    global void execute(Database.BatchableContext BC, List<OPDPlan__c> oPDPlanList) {
        for(OPDPlan__c opdp : oPDPlanList) {
            opdp.OPDLendSortBefore__c = null;//备品出借优先度(上月)置空
            opdp.OPDLendSortBefore__c = opdp.OPDLendSort__c;//备品出借优先度 赋值给 备品出借优先度(上月)
            opdp.OPDLendSort__c = null;//备品出借优先度 置空
            opdp.OPDLendSortDraft__c = null;//备品出借优先度草案中 置空
            opdp.SortDate__c = null; //排序日期 置空
 
        }
 
        if (oPDPlanList != null && oPDPlanList.size() > 0) {
            update oPDPlanList;
        }
    }
 
    global void finish(Database.BatchableContext BC) {
 
    }
}