Commit 296843e8 authored by 赵啸非's avatar 赵啸非

统计排除排队中呼叫转移的号码

parent 16459963
......@@ -56,6 +56,8 @@ public class PhQueueStatServiceImpl extends AbstractCRUDServiceImpl<PhQueueStatD
phQueueQuery.setSiteId(entity.getSiteId());
phQueueQuery.setTaketimeStart(currentDate);
phQueueQuery.setTaketimeEnd(currentDate);
//排除掉呼叫转移的号码
phQueueQuery.setFormernumList(Arrays.asList(""));
List<PhQueueEntity> phQueueEntities = phQueueService.find(phQueueQuery);
......@@ -78,7 +80,9 @@ public class PhQueueStatServiceImpl extends AbstractCRUDServiceImpl<PhQueueStatD
private void updateSitePhCount(PhQueueStatEntity entity, List<PhQueueEntity> phQueueEntities) {
PhQueueStatEntity phQueueStatEntity = this.selectOne(new PhQueueStatQuery()
PhQueueStatQuery phQueueStatQuery = new PhQueueStatQuery();
PhQueueStatEntity phQueueStatEntity = this.selectOne(phQueueStatQuery
.siteId(entity.getSiteId())
.year(entity.getYear())
.month(entity.getMonth())
......
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