This commit is contained in:
parent
7fd2f90fce
commit
20353d1286
|
|
@ -2,7 +2,7 @@
|
||||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<UseIISExpress>true</UseIISExpress>
|
<UseIISExpress>true</UseIISExpress>
|
||||||
<LastActiveSolutionConfig>Release|Any CPU</LastActiveSolutionConfig>
|
<LastActiveSolutionConfig>Debug|Any CPU</LastActiveSolutionConfig>
|
||||||
<Use64BitIISExpress />
|
<Use64BitIISExpress />
|
||||||
<IISExpressSSLPort />
|
<IISExpressSSLPort />
|
||||||
<IISExpressAnonymousAuthentication />
|
<IISExpressAnonymousAuthentication />
|
||||||
|
|
|
||||||
|
|
@ -495,18 +495,24 @@ namespace FineUIPro.Web.HJGL.DataIn
|
||||||
result += "第" + (i + 2).ToString() + "行," + "该焊接方法不存在" + "\n";
|
result += "第" + (i + 2).ToString() + "行," + "该焊接方法不存在" + "\n";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!string.IsNullOrEmpty(col13) && weldMat == null)
|
if (!string.IsNullOrEmpty(col13))
|
||||||
|
{
|
||||||
|
if (weldMat == null)
|
||||||
{
|
{
|
||||||
result += "第" + (i + 2).ToString() + "行," + "该焊条不存在" + "\n";
|
result += "第" + (i + 2).ToString() + "行," + "该焊条不存在" + "\n";
|
||||||
}
|
}
|
||||||
|
}
|
||||||
//else
|
//else
|
||||||
//{
|
//{
|
||||||
// result += "第" + (i + 2).ToString() + "行," + "焊条不能为空" + "\n";
|
// result += "第" + (i + 2).ToString() + "行," + "焊条不能为空" + "\n";
|
||||||
//}
|
//}
|
||||||
if (!string.IsNullOrEmpty(col14) && weldSilk == null)
|
if (!string.IsNullOrEmpty(col14))
|
||||||
|
{
|
||||||
|
if (weldSilk == null)
|
||||||
{
|
{
|
||||||
result += "第" + (i + 2).ToString() + "行," + "该焊丝不存在" + "\n";
|
result += "第" + (i + 2).ToString() + "行," + "该焊丝不存在" + "\n";
|
||||||
}
|
}
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
result += "第" + (i + 2).ToString() + "行," + "焊丝不能为空" + "\n";
|
result += "第" + (i + 2).ToString() + "行," + "焊丝不能为空" + "\n";
|
||||||
|
|
|
||||||
|
|
@ -67,7 +67,7 @@
|
||||||
<add path="ChartImg.axd" verb="GET,POST,HEAD" type="System.Web.UI.DataVisualization.Charting.ChartHttpHandler, System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" validate="false"/>
|
<add path="ChartImg.axd" verb="GET,POST,HEAD" type="System.Web.UI.DataVisualization.Charting.ChartHttpHandler, System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" validate="false"/>
|
||||||
<add path="FastReport.Export.axd" verb="*" type="FastReport.Web.Handlers.WebExport"/>
|
<add path="FastReport.Export.axd" verb="*" type="FastReport.Web.Handlers.WebExport"/>
|
||||||
</httpHandlers>
|
</httpHandlers>
|
||||||
<compilation debug="false" targetFramework="4.6.1">
|
<compilation debug="true" targetFramework="4.6.1">
|
||||||
<assemblies>
|
<assemblies>
|
||||||
<add assembly="System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
|
<add assembly="System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
|
||||||
</assemblies>
|
</assemblies>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<LastActiveSolutionConfig>Release|Any CPU</LastActiveSolutionConfig>
|
<LastActiveSolutionConfig>Debug|Any CPU</LastActiveSolutionConfig>
|
||||||
<NameOfLastUsedPublishProfile>FolderProfile</NameOfLastUsedPublishProfile>
|
<NameOfLastUsedPublishProfile>FolderProfile</NameOfLastUsedPublishProfile>
|
||||||
<UseIISExpress>true</UseIISExpress>
|
<UseIISExpress>true</UseIISExpress>
|
||||||
<Use64BitIISExpress />
|
<Use64BitIISExpress />
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue