From b26810e792da46a699ea0f10b03d34a667652643 Mon Sep 17 00:00:00 2001 From: king Date: Tue, 21 Apr 2026 14:20:27 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=9A=E6=97=B6=E4=BB=BB=E5=8A=A1-=E7=BB=BC?= =?UTF-8?q?=E5=90=88=E9=94=80=E5=94=AE=E6=83=85=E5=86=B5=E8=A1=A8-?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E9=83=A8=E5=88=86=E5=AD=97=E6=AE=B5=E7=9A=84?= =?UTF-8?q?=E6=8E=92=E5=BA=8F-=E4=BF=AE=E6=94=B9=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../framework/enhance/example/report/xtsy/ZhxsqkPlugin.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lidee-core/src/main/java/com/lideeyunji/core/framework/enhance/example/report/xtsy/ZhxsqkPlugin.java b/lidee-core/src/main/java/com/lideeyunji/core/framework/enhance/example/report/xtsy/ZhxsqkPlugin.java index c40c7f5..63db47a 100644 --- a/lidee-core/src/main/java/com/lideeyunji/core/framework/enhance/example/report/xtsy/ZhxsqkPlugin.java +++ b/lidee-core/src/main/java/com/lideeyunji/core/framework/enhance/example/report/xtsy/ZhxsqkPlugin.java @@ -2,6 +2,7 @@ package com.lideeyunji.core.framework.enhance.example.report.xtsy; import cn.hutool.core.bean.BeanUtil; +import cn.hutool.core.collection.ListUtil; import com.github.pagehelper.Page; import com.github.pagehelper.PageHelper; import com.github.pagehelper.PageInfo; @@ -52,7 +53,7 @@ public class ZhxsqkPlugin implements ReportAroundAdvicePlugin { if (params.containsKey("goodsName")) { throw new lideeYunJiException("在选择维度时,“产品名称”不能有值!"); } - if(params.containsKey("column") && !groupFieldList.contains(params.get("column").toString())){ + if(params.containsKey("column") && ListUtil.toList("stdGoodsName", "customName", "salerName").contains(params.get("column").toString()) && !groupFieldList.contains(params.get("column").toString())){ params.remove("column"); params.remove("order"); }