From a3c2d67636b9eec3185f56f06fb3bf6aaa525104 Mon Sep 17 00:00:00 2001 From: "tanfengling@x-ri.com" <123456> Date: Mon, 10 Nov 2025 11:28:01 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E6=B3=9B=E5=BE=AE=E5=B7=A5=E5=85=B7?= =?UTF-8?q?=E7=B1=BB=E3=80=91=E6=9F=A5=E8=AF=A2=E4=BA=BA=E5=91=98=E7=9A=84?= =?UTF-8?q?=E6=B3=9B=E5=BE=AEID=20=20=20=E6=94=B9=E4=B8=BA=E4=BB=8E?= =?UTF-8?q?=E5=88=86=E6=9E=90=E7=9A=84=E4=B8=BB=E8=81=8C=E9=83=A8=E9=97=A8?= =?UTF-8?q?=E6=9F=A5=E8=AF=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lc123/cloud/app/plugin/utils/FWUtils.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lc123/cloud/app/plugin/utils/FWUtils.java b/lc123/cloud/app/plugin/utils/FWUtils.java index ec91b64..8c4040e 100644 --- a/lc123/cloud/app/plugin/utils/FWUtils.java +++ b/lc123/cloud/app/plugin/utils/FWUtils.java @@ -82,7 +82,8 @@ public class FWUtils { */ public static String getFwUserIdByKdUserNumber(String kdUserNumber, String deptNumber){ QFilter f1 = new QFilter("number", "=", kdUserNumber); - QFilter f2 = new QFilter("entryentity.dpt.number", "=", deptNumber); +// QFilter f2 = new QFilter("entryentity.dpt.number", "=", deptNumber); + QFilter f2 = new QFilter("entryentity.ispartjob", "=", false); DynamicObject bos_user = QueryServiceHelper.queryOne("bos_user", "id,entryentity.tqq9_fwuserid", new QFilter[]{f1, f2}); if (bos_user != null) { String tqq9_fwuserid = bos_user.getString("entryentity.tqq9_fwuserid");