This commit is contained in:
parent
aa7c6570c2
commit
89d13c387d
|
@ -254,21 +254,21 @@ namespace FineUIPro.Web.HJGL.HotProessManage
|
||||||
foreach (var item in trustList)
|
foreach (var item in trustList)
|
||||||
{
|
{
|
||||||
TreeNode newNode = new TreeNode();
|
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
|
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 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
|
join z in db.HJGL_CH_HotProessTrustItem on y.JOT_ID equals z.JOT_ID
|
||||||
where z.HotProessTrustId == item.HotProessTrustId
|
where z.HotProessTrustId == item.HotProessTrustId
|
||||||
select x.ISO_IsoNo).FirstOrDefault();
|
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.CommandName = "委托单号";
|
||||||
newNode.EnableClickEvent = true;
|
newNode.EnableClickEvent = true;
|
||||||
node.Nodes.Add(newNode);
|
node.Nodes.Add(newNode);
|
||||||
|
|
Loading…
Reference in New Issue