From 97f17d7b4826a7cc7dfad65eb1265fc5bc9c0f83 Mon Sep 17 00:00:00 2001 From: Yang <903110162@qq.com> Date: Tue, 16 May 2023 00:51:32 +0800 Subject: [PATCH] commit by yzf --- FactorySystemBll/HalfMaterialTeamworkBll.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/FactorySystemBll/HalfMaterialTeamworkBll.cs b/FactorySystemBll/HalfMaterialTeamworkBll.cs index 403d633..74b2155 100644 --- a/FactorySystemBll/HalfMaterialTeamworkBll.cs +++ b/FactorySystemBll/HalfMaterialTeamworkBll.cs @@ -601,7 +601,8 @@ namespace FactorySystemBll { foreach (TFS_Material item in temps) { - if (first.FIsNew || item.FIsNew) fids += item.FID + ",";//父级新则子一级全部都要、自己是新 + //if (first.FIsNew || item.FIsNew) + fids += item.FID + ",";//父级新则子一级全部都要、自己是新 dtoList.Add(new BomFormulaDto() { mId = item.FID, isNew = item.FIsNew, childs = GetBomFormulaChild(item, formulaList, out string nextIds) }); if (!string.IsNullOrEmpty(nextIds)) fids += nextIds + ","; }