Commit f83f96b9 by 王祖波

门店类型

parent 8db1a1ef
......@@ -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