2023-10-24
This commit is contained in:
Binary file not shown.
@@ -258,11 +258,11 @@ namespace FineUIPro.Web.HJGL.WeldingManage
|
||||
string col3 = pds[i].D;
|
||||
if (string.IsNullOrEmpty(col3))
|
||||
{
|
||||
result.Add("第" + (i + 1).ToString() + "行," + "介质名称" + "," + "此项为必填项!" + "|");
|
||||
result.Add("第" + (i + 1).ToString() + "行," + "介质代号" + "," + "此项为必填项!" + "|");
|
||||
}
|
||||
else
|
||||
{
|
||||
var Medium = getMedium.FirstOrDefault(x => x.MediumName == col3);
|
||||
var Medium = getMedium.FirstOrDefault(x => x.MediumCode == col3);
|
||||
if (Medium == null)
|
||||
{
|
||||
// result += "第" + (i + 1).ToString() + "行," + "该介质不存在!" + "|";
|
||||
|
||||
Reference in New Issue
Block a user