From fca323d8a441fa2b1cc8808491dbfec9ec0e45ce Mon Sep 17 00:00:00 2001 From: zengweihai Date: Wed, 27 Nov 2024 14:11:19 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BE=9B=E5=BA=94=E5=95=86=E8=AF=84=E4=BC=B0?= =?UTF-8?q?=E8=AE=B0=E5=BD=95=E8=A1=A8=C2=B7=E6=A0=B9=E6=8D=AE=E5=AE=9E?= =?UTF-8?q?=E9=99=85=E8=AF=84=E5=88=86=E5=88=92=E5=88=86=E5=AE=9E=E9=99=85?= =?UTF-8?q?=E7=BA=A7=E5=88=AB(=E5=8F=96=E6=B6=88=E6=B5=8B=E8=AF=95?= =?UTF-8?q?=E4=BB=A3=E7=A0=81)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../repc/resm/report/data/SupEvalRecordReportListPlugin.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/main/java/shkd/repc/resm/report/data/SupEvalRecordReportListPlugin.java b/main/java/shkd/repc/resm/report/data/SupEvalRecordReportListPlugin.java index 5866da7..0370ef3 100644 --- a/main/java/shkd/repc/resm/report/data/SupEvalRecordReportListPlugin.java +++ b/main/java/shkd/repc/resm/report/data/SupEvalRecordReportListPlugin.java @@ -31,8 +31,6 @@ public class SupEvalRecordReportListPlugin extends SupEvalRecReportNewList { DataSet finish_avg = finish.groupBy(new String[]{"listsupplier"}).avg("listevalscore").finish(); DataSet select = finish_avg.executeSql("select listsupplier as listsupplier1, listevalscore as qeug_avgscore,(case when listevalscore < 60 then '待淘汰供应商' when listevalscore >= 60 and listevalscore < 80 then '合格供应商' when listevalscore >= 80 and listevalscore < 90 then '优秀供应商' else '战略供应商' end) as qeug_level"); - System.out.println("tesT"); - //(case when qeug_avgscore < 60 then '待淘汰供应商' when qeug_avgscore >= 60 and qeug_avgscore < 80 then '合格供应商' when qeug_avgscore >= 80 and qeug_avgscore < 90 then '优秀供应商' else '战略供应商' end) as qeug_level DataSet evalTaskSetEntry = QueryServiceHelper.queryDataSet("resm_evaltask_new", "resm_evaltask_new", selectFieldInResm, evalTaskEntryFilterS, (String)null); JoinDataSet join = evalTaskSetEntry.join(select, JoinType.LEFT);