高章伟
2022-03-18 a0bc3e3af59aed35334bdc38256a7a1dfe8aecf3
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
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;
    // 所有人变更的逻辑只在batch处理和相关性确认的时候触发 fxk 2021/9/28 Star
    public static Boolean EscapeOtherUpdateTenOwner = true;
    // pk 跳过ContactToUser 和 UserToContact 
    public static Boolean EscapeContactToUser = false;
    public StaticParameter(){
    }
}