高章伟
2022-05-16 2e38b5c0b5e2ce302aed60be311f1c56986b1c06
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
public without sharing class StaticParameter {
    // 積み上げをIsScheduledフラグ設定の後に実行
    public static Boolean EventOpportunityPileUpExeFlg = false;
    // EventC⇒Event処理後、逆更新をスルー用
    public static Boolean NotUpdEventCFlg = false;
    // 積み上げ処理後、トリガをスルー用
    public static Boolean EscapeNFM001Trigger = false;
    public static Boolean EscapeNFM001AgencyContractTrigger = false;
    public static Boolean EscapeNFM001AgencyContractTrigger2 = false;
    public static Boolean EscapeNFM007Trigger = false;
    public static Boolean EscapeOpportunityBefUpdTrigger = false;
    public static Boolean EscapeOpportunityHpDeptUpdTrigger = false;
    public static Boolean EscapeSyncOpportunityTrigger = false;
    public static Boolean EscapeMaintenanceContractAfterUpdateTrigger = false;
    public static Boolean EscapeSyncProduct2Trigger = false;
    // trueのとき、リードのトリガーをスルーする
    public static Boolean EscapeLeadTrigger = false;
    public static Boolean EscapeAccountTrigger = false;
 
    //跳过订单的查询 
    public static Boolean ConsumableOrderTrigger = false;
 
    public static Boolean EscapeConsumableOrderDetail2Trigger = false;
    public static Boolean EscapeOrderDetail2Trigger = false;
 
    public static Boolean EscapeNFM010UpsertStatuAchievementsTrigger = false;
    // 直销耗材不直销 ConsumableAssetHander
    public static Boolean ConsumableAssetHanderTrigger = false;
 
    // 跳过不涉及备品借出的逻辑
    public static Boolean rentalApplyIsRunning = false;
 
    // accountdailyUpdate 跳过 更新询价
    public static Boolean EscapeOpportunityownerUpdate  = false;
    
    // 跳过修理AE更新
    public static Boolean EscapeRepairUpdate  = false;
    // 跳过QISAE更新
    public static Boolean EscapeQISUpdate = false;
    // 跳过学会·培训共享
    public static Boolean shareToOSCMFlag = false;
    // 跳过学会·培训trigger
    public static Boolean EscapeCampain = false;
    // 跳过QIS trigger
    public static Boolean EscapeQIS = false;
    // 跳过维修合同报价的设备更新
    public static Boolean EscapeVMCTrigger = false;
    // 跳过招标-询价关联trigger
    public static Boolean EscapeTOLinkTrigger = false;
    
    //wangweipeng     2021/09/01   在通过触发UpsertContactHandler更新contact表数据时,跳过更新user代码    start
    public static Boolean EscapeContactInsUpdUser = false;
    //wangweipeng     2021/09/01        end
    //EscapeAgencyOpportunityTrigger  thh 2021-09-16
    public static Boolean EscapeAgencyOpportunityTrigger = false;
    // 所有人变更的逻辑只在batch处理和相关性确认的时候触发 fxk 2021/9/28 Star
    public static Boolean EscapeOtherUpdateTenOwner = true;
 
    public static Boolean EscapeContactToUser = false;
    
    // 跳过NFM701接口
    public static Boolean EscapeNFM701Trigger = true;
 
    // 跳过NFM106接口
    public static Boolean EscapeNFM106Trigger = false;
 
    // 预测跳过询价和注残
    public static Boolean EscapeOppandStaTrigger = false;
 
    public StaticParameter(){
    }
 
}