高章伟
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
global class UpOpportunityTradeBatch implements Database.Batchable<sObject> {
   
   String query;
 
   Boolean IsNeedExecute = false; // 2021-03-05  mzy  WLIG-BYHD79  SFDC环境batch合并调查  是否符合执行条件
   
   global UpOpportunityTradeBatch() {
      
   }
 
   global UpOpportunityTradeBatch(Boolean needExecute) {
      IsNeedExecute = needExecute;  // 2021-03-05  mzy  WLIG-BYHD79  SFDC环境batch合并调查  
   }
   
   global Database.QueryLocator start(Database.BatchableContext BC) {
      Integer i = 1;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
         i++;
      return Database.getQueryLocator([Select Id,Tax_Foreign_F__c,Tax_Foreign_F_Copy__c,
         Tax_Intra_F__c,Tax_Intra_F_Copy__c 
         from Opportunity 
         where Tax_Intra_Changed__c = true
         and Id != '0061000000n1VIEAA2']);
   }
 
      global void execute(Database.BatchableContext BC, List<Opportunity> sList) {
      for(Opportunity opp : sList){
         opp.Tax_Foreign_F_Copy__c = opp.Tax_Foreign_F__c;
         opp.Tax_Intra_F_Copy__c = opp.Tax_Intra_F__c;
      }
      update sList;
   }
   
   global void finish(Database.BatchableContext BC) {
 
      //2021-03-05  mzy  WLIG-BYHD79  SFDC环境batch合并调查  start
        if(!Test.isRunningTest() &&IsNeedExecute==true){
         //batch里调用下一个batch时,希望跟原有的Schedule里面传的条数保持一致
           Id execBTId = Database.executebatch(new AccountUpEffectiveContractBatch(true),20);
        }
      //2021-03-05  mzy  WLIG-BYHD79  SFDC环境batch合并调查 end
      
   }
   
}