yumeng 2 недель назад
Родитель
Сommit
81602f736c
1 измененных файлов с 3 добавлено и 3 удалено
  1. 3 3
      src/main/java/com/adx/tencent/conversionsync/ConversionSyncService.java

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

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