binxie
2024-01-18 0e0dd1e20e7211f3c3c11d77a41090d998dfd06c
1
2
3
4
5
6
7
8
9
10
11
12
13
// 只使用一次,用来更新询价行项目和报价行项目的经销商折扣
trigger UpdateOppLineItemAgencySubtotal on Quote ( after update) {
    
    //deloitte-zhj 20231124 本地化导入 start
    if((!Test.isRunningTest())&&System.Label.ByPassTrigger.contains(UserInfo.getUserId())){
        return;
    }
    //deloitte-zhj 20231124 本地化导入 end
    
    UpdateOppLineItemAgencySubtotalHandler handler = new UpdateOppLineItemAgencySubtotalHandler();
    handler.run();
 
}