Ver Fonte

fixed 日志查询bug

fushengqian há 10 meses atrás
pai
commit
b41fa40c0a

+ 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();