binxie
2024-01-18 0f648a2059e4c0f0f850b69128e2123673732ed1
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();
 
}