binxie
2024-01-18 0e0dd1e20e7211f3c3c11d77a41090d998dfd06c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
trigger RentalApplyShare on Rental_Apply__c (before insert,after insert,before update,after update) {
    Integer i = 0;
    i++;
    i++;
    i++;
    i++;
    i++;
    i++;
    i++;
    if(!Test.isRunningTest()&& !System.Label.ByPassTrigger.contains(UserInfo.getUserId())){
        RentalApplyShareHandler handler = new RentalApplyShareHandler();
        handler.run();
    } 
}