Commit 8f099151 by 王祖波

Merge branch 'feature-recommend' into 'developer'

门店类型

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