Commit 85bb8a7c authored by lanbaoming's avatar lanbaoming

2024-06-24-2提交

parent 17b6c6bc
...@@ -50,14 +50,14 @@ public class CustomerAnalysisReq extends PageParam { ...@@ -50,14 +50,14 @@ public class CustomerAnalysisReq extends PageParam {
/* /*
销售经理 销售经理
*/ */
private String salesmanid; private List<String> salesmanid;
private String salesmanidstr; private String salesmanidstr;
private String salesmanidstrs; private String salesmanidstrs;
/* /*
部门ID 部门ID
*/ */
private String deptid; private List<String> deptid;
private String deptidstr; private String deptidstr;
private String deptidstrs; private String deptidstrs;
......
...@@ -222,15 +222,15 @@ public class CustomerAnalysisImpl implements CustomerAnalysisService { ...@@ -222,15 +222,15 @@ public class CustomerAnalysisImpl implements CustomerAnalysisService {
setCountry(Req); setCountry(Req);
setCusRole(Req); setCusRole(Req);
setSource(Req); setSource(Req);
//setsalesmanid(Req); setsalesmanid(Req);
//setDept(Req); setDept(Req);
return Req; return Req;
} }
/* /*
设置部门多选 设置部门多选
*/
private void setDept(CustomerAnalysisReq Req) private void setDept(CustomerAnalysisReq Req)
{ {
if (Req.getDeptid() != null && Req.getDeptid().size() > 0) { if (Req.getDeptid() != null && Req.getDeptid().size() > 0) {
...@@ -254,10 +254,10 @@ public class CustomerAnalysisImpl implements CustomerAnalysisService { ...@@ -254,10 +254,10 @@ public class CustomerAnalysisImpl implements CustomerAnalysisService {
Req.setDeptidstrs(""); Req.setDeptidstrs("");
} }
} }
*/
/* /*
客户经理 客户经理
*/
private void setsalesmanid(CustomerAnalysisReq Req) { private void setsalesmanid(CustomerAnalysisReq Req) {
if (Req.getSalesmanid() != null && Req.getSalesmanid().size() > 0) { if (Req.getSalesmanid() != null && Req.getSalesmanid().size() > 0) {
if (Req.getSalesmanid().size() == 1) { if (Req.getSalesmanid().size() == 1) {
...@@ -280,7 +280,7 @@ public class CustomerAnalysisImpl implements CustomerAnalysisService { ...@@ -280,7 +280,7 @@ public class CustomerAnalysisImpl implements CustomerAnalysisService {
Req.setSalesmanidstrs(""); Req.setSalesmanidstrs("");
} }
} }
*/
/* /*
客户来源 客户来源
*/ */
......
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