2023-10-25

This commit is contained in:
2023-10-25 23:30:52 +08:00
parent 1580bbcbf7
commit 81d0edb9e7
23 changed files with 386 additions and 250 deletions
+1 -1
View File
@@ -771,7 +771,7 @@ namespace BLL
public static List<Base_Unit> getUnitByUnitIds(string unitids)
{
return Funs.DB.Base_Unit.Where(e => unitids.Contains(e.UnitId)).ToList();
return Funs.DB.Base_Unit.Where(e => unitids.Split(',').Contains(e.UnitId)).ToList();
}
}
}