Commit f34ffff8 by jinxin

添加日志

parent ffdaf42f
...@@ -471,12 +471,14 @@ public class AuditApiServiceImpl implements AuditApiService { ...@@ -471,12 +471,14 @@ public class AuditApiServiceImpl implements AuditApiService {
if (clerkDTO == null) { if (clerkDTO == null) {
return 0; return 0;
} }
logger.info("审核查询导购type:{}",JSON.toJSONString(clerkDTO));
List<String> storeIdList = new ArrayList<>(); List<String> storeIdList = new ArrayList<>();
Integer clerkType = clerkDTO.getClerkType(); Integer clerkType = clerkDTO.getClerkType();
String storeId = clerkDTO.getStoreId(); String storeId = clerkDTO.getStoreId();
if (clerkType == 2) { if (clerkType == 2) {
// 如果null,说明是所有门店 // 如果null,说明是所有门店
storeIdList = staffApiService.getHaoBanStoreIdsRolesByClerkId(clerkId, wxEnterpriseId); storeIdList = staffApiService.getHaoBanStoreIdsRolesByClerkId(clerkId, wxEnterpriseId);
logger.info("审核查询门店id:{}",JSON.toJSONString(storeIdList));
if (CollectionUtils.isEmpty(storeIdList)) { if (CollectionUtils.isEmpty(storeIdList)) {
return 0; return 0;
} }
......
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