|
@@ -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)) {
|