浏览代码

去除2001不扣量

yumeng 2 周之前
父节点
当前提交
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;
         }
         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)) {