Commit 68c6abd5 by jinxin

好办统计数据不准问题处理

parent db81bf10
...@@ -50,6 +50,10 @@ public class MaidianLogController extends WebBaseController { ...@@ -50,6 +50,10 @@ public class MaidianLogController extends WebBaseController {
com.gic.clerk.api.dto.ClerkDTO clerkDTO = clerkService.getClerkByClerkCode(store.getEnterpriseId(), maidianLogDTO.getClerkCode()); com.gic.clerk.api.dto.ClerkDTO clerkDTO = clerkService.getClerkByClerkCode(store.getEnterpriseId(), maidianLogDTO.getClerkCode());
maidianLogDTO.setEnterpriseId(store.getEnterpriseId()); maidianLogDTO.setEnterpriseId(store.getEnterpriseId());
if (clerkDTO != null) { if (clerkDTO != null) {
//导购变更门店
if (!clerkDTO.getStoreId().equals(maidianLogDTO.getStoreId())){
continue;
}
maidianLogDTO.setClerkId(clerkDTO.getClerkId()); maidianLogDTO.setClerkId(clerkDTO.getClerkId());
} }
} }
......
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