diff --git a/SGGL/FineUIPro.Web/CQMS/Comprehensive/DataReceivingDocDataIn.aspx.cs b/SGGL/FineUIPro.Web/CQMS/Comprehensive/DataReceivingDocDataIn.aspx.cs
index fbe491e8..a438e5df 100644
--- a/SGGL/FineUIPro.Web/CQMS/Comprehensive/DataReceivingDocDataIn.aspx.cs
+++ b/SGGL/FineUIPro.Web/CQMS/Comprehensive/DataReceivingDocDataIn.aspx.cs
@@ -261,11 +261,7 @@ namespace FineUIPro.Web.CQMS.Comprehensive
}
string row9 = pds.Rows[i][9].ToString();
- if (string.IsNullOrEmpty(row9))
- {
- result += (i + 2).ToString() + "," + "上报日期" + "," + "此项为必填项!" + "|";
- }
- else
+ if (!string.IsNullOrEmpty(row9))
{
try
{
diff --git a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj
index 9a02d7c9..67a02b30 100644
--- a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj
+++ b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj
@@ -19048,7 +19048,7 @@
-
+