Commit a29fa8d1 by 王祖波

建联增加门店id

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