binxie
2024-01-18 22bd41f13147fce1df6ff35b592720c9cb387de9
1
2
3
4
5
6
7
8
9
10
11
12
trigger Opponent_Bid_InformationTrigger on Opponent_Bid_Information__c (after update) {
 
    //deloitte-zhj 20231124 本地化导入 start
    if((!Test.isRunningTest())&&System.Label.ByPassTrigger.contains(UserInfo.getUserId())){
        return;
    }
    //deloitte-zhj 20231124 本地化导入 end
 
    Opponent_Bid_InformationHandler handler = new Opponent_Bid_InformationHandler();
    handler.run();
 
}