19626
2023-10-07 988f9735377909b6310301e582c15804e004783f
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
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;
 
    //SummaryContractFMBatch
    public static Boolean MaintenanceContractAssetTrigger = true;
    public static Boolean SetContractEstimatePriceTrigger = true;
    public static Boolean MaintenanceContractTrigger = true;
    public static Boolean MaintenanceContractHpDeptUpdTrigger = true;
    
 
 
    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;
 
    // TenderInformationTrigger 跳过 更新询价
    public static Boolean EscapeTenderInformationUpdate  = true;
 
    // 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 = false;
 
    // 跳过NFM106接口
    public static Boolean EscapeNFM106Trigger = false;
 
    // 预测跳过询价和注残
    public static Boolean EscapeOppandStaTrigger = false;
 
    // 2023/3/30 正常执行RepairAgainAnTrigger 
    public static Boolean RepairAgainAnStaTrigger = true;
    // DB202304087063 SFDC系统附件上传自动通知功能开发需求 start
    // 备注生成附件时,附件不发送邮件
    public static Boolean AttachmentTrigger = true;
    // DB202304087063 SFDC系统附件上传自动通知功能开发需求 end
 
    public static Boolean EscapeQISTrigger = true;
 
    // DB202306447415 gzw 接口执行速度优化 start
    public static Boolean EscapeNFM110Trigger = false;
    // DB202306447415 gzw 接口执行速度优化 end
 
    // DB202307108459 ssm 基建项目trigger跳过标记 start
    public static Boolean EscapeInfrastructureProductTrigger = false;
    // DB202307108459 ssm 基建项目trigger跳过标记 end
 
    //zc lt 20230918 start DB202308327700 跳过众成数据
    public static Boolean EscapeZCUpdateTender = false;
    //zc lt 20230918 end DB202308327700 跳过众成数据
 
    //20230918 lt DB202306372336 进招标触发器(询价关联科室改变时) start
    public static Boolean UpdateDandang = false;
    //20230918 lt DB202306372336 进招标触发器 end
    //20230922 cjw 文件相关触发器 start
    public static Boolean ContentDocumentTrigger = true;
    public static Boolean ContentDocumentLink = true;
    public static Boolean ContentVerisonTrigger = true;
    //20230922 cjw 文件相关触发器 start
    public StaticParameter(){
    }
 
}