From ab202c42f67210e6f755636e8ca24236cf072efc Mon Sep 17 00:00:00 2001 From: "1437892690@qq.com" <1437892690@qq.com> Date: Mon, 28 Oct 2024 16:37:07 +0800 Subject: [PATCH] =?UTF-8?q?[=E5=8A=9F=E8=83=BD]=20=E9=80=9A=E7=9F=A5?= =?UTF-8?q?=E9=85=8D=E7=BD=AE=E7=AE=A1=E7=90=86=E4=B8=AD=E9=82=AE=E7=AE=B1?= =?UTF-8?q?=E6=A0=BC=E5=BC=8F=E6=AD=A3=E5=88=99=E6=A0=A1=E9=AA=8C=E5=BC=82?= =?UTF-8?q?=E5=B8=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 关联 #[1277556009959424]视图矩阵关键字与过滤条件同时存在时过滤结果异常 http://192.168.0.96:8090/demo/rdm.html#/bug-detail/939050947543040/939050947543057/1277556009959424 --- .../module/framework/matrix/handler/ViewDataSourceHandler.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/neatlogic/module/framework/matrix/handler/ViewDataSourceHandler.java b/src/main/java/neatlogic/module/framework/matrix/handler/ViewDataSourceHandler.java index 21c3d1261..8c5d65dd3 100644 --- a/src/main/java/neatlogic/module/framework/matrix/handler/ViewDataSourceHandler.java +++ b/src/main/java/neatlogic/module/framework/matrix/handler/ViewDataSourceHandler.java @@ -328,7 +328,7 @@ public class ViewDataSourceHandler extends MatrixDataSourceHandlerBase { if (matrixAttribute == null) { throw new MatrixAttributeNotFoundException(dataVo.getMatrixUuid(), keywordColumn); } - List filterList = new ArrayList<>(); + List filterList = dataVo.getFilterList(); filterList.add(new MatrixFilterVo(keywordColumn, Expression.LIKE.getExpression(), Arrays.asList(keyword))); dataVo.setFilterList(filterList); } -- Gitee