Commit b057f33f by 王祖波

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

parent 40a774b6
......@@ -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