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
global class NFM402Batch implements Database.Batchable<sObject>, Database.AllowsCallouts {
    public String query;
 
    global NFM402Batch() {
        this.query = query;
    }
 
    global Database.QueryLocator start(Database.BatchableContext bc) {
        query = 'select id from Repair__c where AsyncData__c = true and (Complaint_Number__c = null or Complaint_Number__c = \'\')';
        return Database.getQueryLocator(query);
    }
 
    global void execute(Database.BatchableContext BC, list<Repair__c> scope) {
        List<QIS_Report__c> qisList = [
        select id from QIS_Report__c where AsyncData__c = true and (Complaint_Number__c = null or Complaint_Number__c = '')
        ];
        Set<String> tempids = new Set<String>();
        if (scope.size() > 0) {
            for(Repair__c rep : scope){
                tempids.add(rep.Id);
            }
        }
        if (qisList.size() > 0) {
            for (QIS_Report__c qis : qisList) {
                tempids.add(qis.Id);                
            }
        }
        List<String> ids = new List<String>();
        for (String id : tempids ) {
            ids.add(id);
        }
 
        try {
            if (ids.size()>0) {         
                NFM402Controller.sendRequest(ids);   
            }
        }
        catch (Exception e) {
            System.debug(e.getStackTraceString());
        }
        
    }
 
    global void finish(Database.BatchableContext BC) {
        // if (Test.isRunningTest() == false) {
            //update by rentongxiao 生成PDF 
            // Database.executeBatch(new RepairToPDFBatch(), 100);
            // Database.executeBatch(new RepairToPDFBatch(), 50);
        // }
 
    }
}