This commit is contained in:
高飞 2025-08-12 10:42:23 +08:00
parent aa7c6570c2
commit 89d13c387d
1 changed files with 10 additions and 10 deletions

View File

@ -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 = "<font color='#FF7575'>" + item.HotProessTrustCode + "</font>";
}
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 = "<font color='#FF7575'>" + isoNo + "</font>";
}
newNode.NodeID = item.HotProessTrustId;
newNode.ToolTip = item.HotProessTrustCode;
newNode.CommandName = "委托单号";
newNode.EnableClickEvent = true;
node.Nodes.Add(newNode);