Commit 08243c16 by 王祖波

Merge branch 'feature-recommend3' into 'developer'

建联天数变更历史天数逻辑调整

See merge request !2907
parents b01510e5 b057f33f
......@@ -199,7 +199,7 @@ public class ContactLogServiceImpl implements ContactLogService {
*/
private Integer getContactOrderLimitDay(Date contactTime) {
Integer contactOrderLimitDay = Manage3Constants.CONTACT_ORDER_LIMIT_DAY;
if (DateUtil.compare(releaseDate, contactTime) > 0 && DateUtil.between(releaseDate, contactTime, DateUnit.DAY) > 14) {
if (DateUtil.compare(releaseDate, contactTime) > 0 && DateUtil.between(releaseDate, contactTime, DateUnit.SECOND) > 14 * 24 * 60 * 60) {
contactOrderLimitDay = 14;
}
logger.info("建联未转化计算天数:{}",contactOrderLimitDay);
......
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