This commit is contained in:
jackchenyang 2024-05-26 22:34:40 +08:00
parent 25671f28b9
commit 23ae289a37
2 changed files with 3 additions and 1 deletions

Binary file not shown.

View File

@ -196,7 +196,9 @@ namespace FineUIPro.Web.WeldingProcess.PMI
).Distinct().ToList();
string[] arr = this.weldJointIds.Split('|');
var query = Funs.DB.View_Pipeline_WeldJoint.Where(t => t.IsPMI == true && t.PipelineId == this.tvControlItem.SelectedNodeID);
var query = Funs.DB.View_Pipeline_WeldJoint.Where(t => t.IsPMI == true
&& (t.WeldingDailyId != null && t.WeldingDailyId!="")
&& t.PipelineId == this.tvControlItem.SelectedNodeID);
if (listData.Count > 0)
{