Commit 3f5ef328 authored by lanbaoming's avatar lanbaoming

2024-07-02-3提交

parent 28522188
......@@ -309,9 +309,10 @@ public class TargetLogServiceImpl extends AbstractService<TargetLogMapper, Targe
public void dealTargetLogTask(Long orderId,
Date achievementTime,
long targetId) {
long selectCount = targetLogMapper.selectCount(TargetLogDO::getOrderId,
long selectCount =
targetLogMapper.selectCount(TargetLogDO::getOrderId,
orderId);
if (selectCount > 0L) {
if (selectCount ==0L) {
return;
}
//获取订单信息
......@@ -461,7 +462,8 @@ public class TargetLogServiceImpl extends AbstractService<TargetLogMapper, Targe
}
}
}
TargetLogDO targetLogDO = targetLogMapper.selectById(targetId);
TargetLogDO targetLogDO =
targetLogMapper.selectById(targetId);
//客户ID
targetLogDO.setCustomerId(customerId);
//客户经理ID
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment