This commit is contained in:
佘春生 2024-05-26 22:52:28 +08:00
commit 9dae8f88fb
1 changed files with 3 additions and 1 deletions

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)
{