فهرست منبع

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