Quellcode durchsuchen

去除2001不扣量

yumeng vor 2 Wochen
Ursprung
Commit
81602f736c

+ 3 - 3
src/main/java/com/adx/tencent/conversionsync/ConversionSyncService.java

@@ -1133,7 +1133,7 @@ public class ConversionSyncService {
             return DeductionHandling.SEND;
         }
         int deductionRate = resolveDeductionRate(task.tencentBid);
-        if (task.payment.getAct() == 2001 || deductionRate <= 0) {
+        if (deductionRate <= 0) {
             return DeductionHandling.SEND;
         }
         if (!isNewTrackingLink(task.tencentBid)) {
@@ -1205,7 +1205,7 @@ public class ConversionSyncService {
             return false;
         }
         int deductionRate = resolveKuaishouDeductionRate(task.kuaishouBid);
-        if (task.payment.getAct() == 2001 || deductionRate <= 0) {
+        if (deductionRate <= 0) {
             return false;
         }
         if (!kuaishouHotStore.markConversionSeen(task.callbackKey)) {
@@ -1259,7 +1259,7 @@ public class ConversionSyncService {
             return false;
         }
         int deductionRate = resolveVivoDeductionRate(task.vivoBid);
-        if (task.payment.getAct() == 2001 || deductionRate <= 0) {
+        if (deductionRate <= 0) {
             return false;
         }
         if (!vivoHotStore.markConversionSeen(task.callbackKey)) {