Commit 8f099151 by 王祖波

Merge branch 'feature-recommend' into 'developer'

门店类型

See merge request !2781
parents 04d333f8 f83f96b9
......@@ -230,16 +230,15 @@ public class PotentialDataController {
if (storeDTO != null) {
storeId = storeDTO.getStoreId();
}
String clerkTypeStr = "0";
String clerkTypeStr = "1";
CustomerDTO params = new CustomerDTO();
String clerkId = null;
if (clerkDTO != null) {
clerkTypeStr = "0";
clerkId = clerkDTO.getClerkId();
Integer clerkType = clerkDTO.getClerkType();
if (clerkType == 0 || clerkType == 1) {
storeId = clerkDTO.getStoreId();
}else {
clerkTypeStr = "2";
}
}
ContactParamDTO contact = new ContactParamDTO();
......
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