提交代码

This commit is contained in:
高飞 2025-03-19 14:44:33 +08:00
parent 43605b3404
commit 631c3794af
5 changed files with 12 additions and 1 deletions

Binary file not shown.

View File

@ -359,7 +359,18 @@ namespace FineUIPro.Web.HJGL.DataIn
{
if (string.IsNullOrEmpty(col0) || string.IsNullOrEmpty(col1) || string.IsNullOrEmpty(col2))
{
result += "第" + (i + 2).ToString() + "行," + "施工号、管线号、焊口号不能为空" + "\n";
if (string.IsNullOrEmpty(col0))
{
result += "第" + (i + 2).ToString() + "行," + "施工号不能为空" + "\n";
}
if (string.IsNullOrEmpty(col1))
{
result += "第" + (i + 2).ToString() + "行," + "管线号不能为空" + "\n";
}
if (string.IsNullOrEmpty(col2))
{
result += "第" + (i + 2).ToString() + "行," + "焊口号不能为空" + "\n";
}
}
else
{