高章伟
2023-10-30 e48cd34b21a3841cac102402c15903e8e075ad02
1
2
3
4
5
6
trigger InspectionReportTrigger on Inspection_Report__c (after insert, after update, before delete) {
    if(Test.isRunningTest()||UserInfo.getUserId()!=System.Label.ByPassTrigger){
        InspectionReportTriggerHandler handler = new InspectionReportTriggerHandler();
        handler.run();
    }
}