소스 검색

fixed 日志查询bug

fushengqian 1 년 전
부모
커밋
b41fa40c0a
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      fuint-application/src/main/java/com/fuint/common/service/impl/ActionLogServiceImpl.java

+ 1 - 1
fuint-application/src/main/java/com/fuint/common/service/impl/ActionLogServiceImpl.java

@@ -41,7 +41,7 @@ public class ActionLogServiceImpl extends ServiceImpl<TActionLogMapper, TActionL
             lambdaQueryWrapper.eq(TActionLog::getMerchantId, merchantId);
         }
         String storeId = paginationRequest.getSearchParams().get("storeId") == null ? "" : paginationRequest.getSearchParams().get("storeId").toString();
-        if (StringUtils.isNotBlank(merchantId)) {
+        if (StringUtils.isNotBlank(storeId)) {
             lambdaQueryWrapper.eq(TActionLog::getStoreId, storeId);
         }
         String module = paginationRequest.getSearchParams().get("module") == null ? "" : paginationRequest.getSearchParams().get("module").toString();