lmx 6 روز پیش
والد
کامیت
042a77d659

+ 1 - 1
fs-ai-call-task/src/main/resources/application.yml

@@ -14,4 +14,4 @@ spring:
 #    active: druid-sxjz
 #    active: druid-hdt
 #    active: druid-myhk-test
-cid-group-no: 1
+cid-group-no: 3

+ 1 - 1
fs-cid-workflow/src/main/resources/application.yml

@@ -14,4 +14,4 @@ spring:
 #    active: druid-sxjz
 #    active: druid-hdt
 #    active: druid-myhk-test
-cid-group-no: 1
+cid-group-no: 3

+ 19 - 0
fs-company/src/main/java/com/fs/company/controller/crm/CrmCustomerController.java

@@ -115,6 +115,25 @@ public class CrmCustomerController extends BaseController
         }
         return R.ok().put("rows", list);
     }
+    @PreAuthorize("@ss.hasPermi('crm:customer:list')")
+    @GetMapping("/listNoPage")
+    public R listNoPage(CrmCustomerListQueryParam crmCustomer){
+
+        LoginUser loginUser = tokenService.getLoginUser(ServletUtils.getRequest());
+        crmCustomer.setCompanyId(loginUser.getCompany().getCompanyId());
+        if(!StringUtils.isEmpty(crmCustomer.getReceiveTimeRange())){
+            crmCustomer.setReceiveTimeList(crmCustomer.getReceiveTimeRange().split("--"));
+        }
+        List<CrmCustomerListVO> list = crmCustomerService.selectCrmCustomerListQueryParam(crmCustomer);
+        if (list != null) {
+            for (CrmCustomerListVO vo : list) {
+                if(vo.getMobile()!=null){
+                    vo.setMobile(vo.getMobile().replaceAll("(\\d{3})\\d*(\\d{4})", "$1****$2"));
+                }
+            }
+        }
+        return R.ok().put("rows", list);
+    }
 
     @ApiOperation("获取我的协作客户列表")
     @PreAuthorize("@ss.hasPermi('crm:customer:assistList')")

+ 1 - 1
fs-service/src/main/java/com/fs/company/service/impl/call/node/AiCallTaskNode.java

@@ -267,7 +267,7 @@ public class AiCallTaskNode extends AbstractWorkflowNode {
         // 音色来源(如未配置默认留空,由 EasyCallCenter365 使用默认值)
         createParam.setVoiceSource(callConfigVo.getVoiceSource());
         // 技能组(转人工客服分组,可选)
-        createParam.setGroupId(callConfigVo.getBusiGroupId());
+//        createParam.setGroupId(callConfigVo.getBusiGroupId());
 
         JSONObject runParam = (JSONObject) JSON.toJSON(createParam);
         runParam.put("companyId", robotic.getCompanyId());

+ 1 - 1
fs-wx-api/src/main/resources/application.yml

@@ -7,4 +7,4 @@ server:
 spring:
   profiles:
     active: dev
-group-no: 1
+group-no: 3

+ 1 - 1
fs-wx-task/src/main/resources/application.yml

@@ -14,4 +14,4 @@ spring:
 #    active: druid-sxjz
 #    active: druid-hdt
 #    active: druid-myhk-test
-cid-group-no: 1
+cid-group-no: 3