Commit 85bb8a7c authored by lanbaoming's avatar lanbaoming

2024-06-24-2提交

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