提交代码
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user