From 89d13c387d9f93a09b3cf7d65b09d5332c63ec85 Mon Sep 17 00:00:00 2001 From: gaofei1985 <181547018@qq.com> Date: Tue, 12 Aug 2025 10:42:23 +0800 Subject: [PATCH] 1 --- .../HotProessManage/HotProessTrust.aspx.cs | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/HJGL_DS/FineUIPro.Web/HJGL/HotProessManage/HotProessTrust.aspx.cs b/HJGL_DS/FineUIPro.Web/HJGL/HotProessManage/HotProessTrust.aspx.cs index fc68283..c84ae16 100644 --- a/HJGL_DS/FineUIPro.Web/HJGL/HotProessManage/HotProessTrust.aspx.cs +++ b/HJGL_DS/FineUIPro.Web/HJGL/HotProessManage/HotProessTrust.aspx.cs @@ -254,21 +254,21 @@ namespace FineUIPro.Web.HJGL.HotProessManage foreach (var item in trustList) { TreeNode newNode = new TreeNode(); - if (item.IsPrint == true) - { - newNode.Text = item.HotProessTrustCode; - } - else - { - newNode.Text = "" + item.HotProessTrustCode + ""; - } - newNode.NodeID = item.HotProessTrustId; var isoNo = (from x in db.HJGL_PW_IsoInfo join y in db.HJGL_PW_JointInfo on x.ISO_ID equals y.ISO_ID join z in db.HJGL_CH_HotProessTrustItem on y.JOT_ID equals z.JOT_ID where z.HotProessTrustId == item.HotProessTrustId select x.ISO_IsoNo).FirstOrDefault(); - newNode.ToolTip = isoNo; + if (item.IsPrint == true) + { + newNode.Text = isoNo; + } + else + { + newNode.Text = "" + isoNo + ""; + } + newNode.NodeID = item.HotProessTrustId; + newNode.ToolTip = item.HotProessTrustCode; newNode.CommandName = "委托单号"; newNode.EnableClickEvent = true; node.Nodes.Add(newNode);