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();
|
| }
|
|