Commit c319f2a2 by 王祖波

Merge branch 'feature-recommend3' into 'developer'

建联增加门店id

See merge request !2886
parents 16f4ad55 a29fa8d1
......@@ -157,8 +157,10 @@ public class ContactLogServiceImpl implements ContactLogService {
contactLog.setClerkId(clerkId);
contactLog.setStoreId(storeId);
if (clerkDTO != null) {
storeId = clerkDTO.getStoreId();
contactLog.setClerkCode(clerkDTO.getClerkCode());
contactLog.setClerkName(clerkDTO.getClerkName());
contactLog.setStoreId(storeId);
}
if (StringUtils.isNotBlank(storeId)) {
StoreDTO store = storeService.getStore(storeId);
......
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