Commit 70e7c67a authored by huagnxiner's avatar huagnxiner

修改回访统计报表样式

parent 3079ace7
...@@ -568,14 +568,15 @@ public class MarketingActivityController extends BaseController { ...@@ -568,14 +568,15 @@ public class MarketingActivityController extends BaseController {
List<CrmSourceEntity> sourceList = crmSourceService.getListByCategory(source); List<CrmSourceEntity> sourceList = crmSourceService.getListByCategory(source);
if (sourceList != null && !sourceList.isEmpty()) { if (sourceList != null && !sourceList.isEmpty()) {
for (CrmSourceEntity sourceEntity : sourceList) { for (CrmSourceEntity sourceEntity : sourceList) {
//南京站新需求 过滤400来电562 和房博士im咨询99 crmSourceSet.add(String.valueOf(sourceEntity.getSourceId()));
if ("nj".equals(cityCode)) { //南京站新需求 过滤400来电562 和房博士im咨询99 // crm已经限制,全链条不限制
if (sourceEntity.getSourceId() != 99 && sourceEntity.getSourceId() != 562) { // if ("nj".equals(cityCode)) {
crmSourceSet.add(String.valueOf(sourceEntity.getSourceId())); // if (sourceEntity.getSourceId() != 99 && sourceEntity.getSourceId() != 562) {
} // crmSourceSet.add(String.valueOf(sourceEntity.getSourceId()));
} else { // }
crmSourceSet.add(String.valueOf(sourceEntity.getSourceId())); // } else {
} // crmSourceSet.add(String.valueOf(sourceEntity.getSourceId()));
// }
} }
} }
} }
......
...@@ -68,9 +68,9 @@ ...@@ -68,9 +68,9 @@
<li> <li>
<a tabindex="-1" href="${ctx}/statistic/cloudCusReport/">云迹数据统计表</a> <a tabindex="-1" href="${ctx}/statistic/cloudCusReport/">云迹数据统计表</a>
</li> </li>
<%-- <li>--%> <li>
<%-- <a tabindex="-1" href="${ctx}/statistic/callBackTraceStatistic/">回访跟进统计</a>--%> <a tabindex="-1" href="${ctx}/statistic/callBackTraceStatistic/">回访跟进统计</a>
<%-- </li>--%> </li>
</ul> </ul>
</li> </li>
</shiro:hasPermission> </shiro:hasPermission>
......
...@@ -25,13 +25,15 @@ ...@@ -25,13 +25,15 @@
action="${ctx}/statistic/callBackTraceStatistic" method="get"> action="${ctx}/statistic/callBackTraceStatistic" method="get">
<div style="margin-top:10px;"> <div style="margin-top:10px;">
&nbsp;&nbsp;数据日期:&nbsp;&nbsp; &nbsp;&nbsp;数据日期:&nbsp;&nbsp;
<input type="text" name="startTime" id="startTime" class="m-wrap small mydate span2" placeholder="起始时间"> <input type="text" name="startTime" id="startTime" style="width: 120px;" class="m-wrap small mydate span2" placeholder="起始时间">
<input type="text" name="endTime" id="endTime" class="m-wrap small mydate span2" placeholder="截止时间"> <input type="text" name="endTime" id="endTime" style="width: 120px;" class="m-wrap small mydate span2" placeholder="截止时间">
&nbsp;&nbsp; &nbsp;&nbsp;
<%-- <a class="btn " onclick="btnSubmit();">提交</a>--%> <%-- <a class="btn " onclick="btnSubmit();">提交</a>--%>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<input type="text" placeholder="搜索置业顾问" name="search_LIKE_realName" value="${param['search_LIKE_realName']}"> <input type="text" placeholder="搜索置业顾问" name="search_LIKE_realName" value="${param['search_LIKE_realName']}">
<div class="inputSearch__btn" onclick="$('#filterForm').submit();"></div> <div class="inputSearch__btn" onclick="$('#filterForm').submit();"
style="display: inline-block; position: relative; top: 9px;left: 5px;"
></div>
</div> </div>
<input type="hidden" name="deptId" id="deptId" value="${deptId}"> <input type="hidden" name="deptId" id="deptId" value="${deptId}">
......
...@@ -1299,7 +1299,7 @@ public class StaffDuty implements IStaffDuty { ...@@ -1299,7 +1299,7 @@ public class StaffDuty implements IStaffDuty {
for (String source : quickSource.split(",")) { for (String source : quickSource.split(",")) {
List<CrmSourceEntity> sourceList = crmSourceService.getListByCategory(source); List<CrmSourceEntity> sourceList = crmSourceService.getListByCategory(source);
if (CollectionUtils.isNotEmpty(sourceList)) { if (CollectionUtils.isNotEmpty(sourceList)) {
sourceList.removeIf(m -> m.getSourceId() == 99 || m.getSourceId() == 562); // sourceList.removeIf(m -> m.getSourceId() == 99 || m.getSourceId() == 562); //CRM已经限制,此处无需限制
sourceList.forEach(s -> crmSourceSet.add(String.valueOf(s.getSourceId()))); sourceList.forEach(s -> crmSourceSet.add(String.valueOf(s.getSourceId())));
} }
} }
......
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