|
@@ -273,7 +273,7 @@ public class TCallRecordServiceImpl implements ITCallRecordService
|
|
|
callRecordCount.setTraditionPercent((double)traditionTotal / total);
|
|
|
}
|
|
|
callRecordCount.setSpecialCount(this.tCallRecordMapper.getSpecialCount());
|
|
|
- int transferCount = this.tCallRecordMapper.getTransferCount();
|
|
|
+ int transferCount = this.tCallRecordMapper.getTransferCount(null, null);
|
|
|
callRecordCount.setTransferCount(transferCount);
|
|
|
//处理人工客服状态统计信息
|
|
|
callRecordCount.setTotalPerson(this.tCallRecordMapper.getPersonCountByState(null));
|
|
@@ -325,11 +325,13 @@ public class TCallRecordServiceImpl implements ITCallRecordService
|
|
|
String userId = callUserCountInfo.getUserId();
|
|
|
if(StringUtils.isNotBlank(userId)){
|
|
|
// callUserCountInfo.setStatus(this.tCallRecordMapper.getStatusByUserId(userId));
|
|
|
- callUserCountInfo.setTotalTimes(this.tCallRecordMapper.getPersonTotalRecordIsRobot(1, userId));
|
|
|
+// callUserCountInfo.setTotalTimes(this.tCallRecordMapper.getPersonTotalRecordIsRobot(1, userId));
|
|
|
callUserCountInfo.setInTodayCount(this.tCallRecordMapper.getCountByTypeAndDate(0, date));
|
|
|
callUserCountInfo.setInAllCount(this.tCallRecordMapper.getCountByTypeAndDate(0, null));
|
|
|
- callUserCountInfo.setOutTodayCount(this.tCallRecordMapper.getCountByTypeAndDate(1, date));
|
|
|
- callUserCountInfo.setOutAllCount(this.tCallRecordMapper.getCountByTypeAndDate(1, null));
|
|
|
+// callUserCountInfo.setOutTodayCount(this.tCallRecordMapper.getCountByTypeAndDate(1, date));
|
|
|
+// callUserCountInfo.setOutAllCount(this.tCallRecordMapper.getCountByTypeAndDate(1, null));
|
|
|
+ callUserCountInfo.setTodayTransferCount(this.tCallRecordMapper.getTransferCount(userId, date));
|
|
|
+ callUserCountInfo.setTotalTransferCount(this.tCallRecordMapper.getTransferCount(userId, null));
|
|
|
}
|
|
|
}
|
|
|
}
|