提交代码
This commit is contained in:
parent
774af1be61
commit
eb753a1fa4
|
|
@ -1248,7 +1248,12 @@ namespace FineUIPro.Web.ZHGL.Environmental
|
|||
newItem.ArchitectureReportId = report.ArchitectureReportId;
|
||||
newItem.BaseNumber = System.Web.HttpUtility.HtmlDecode(item.BaseNumber);
|
||||
newItem.SortIndex = System.Web.HttpUtility.HtmlDecode(item.SortIndex);
|
||||
newItem.LastYearValue = System.Web.HttpUtility.HtmlDecode(item.LastYearValue);
|
||||
string str = item.LastYearValue;
|
||||
if (str == "6E-05")
|
||||
{
|
||||
str = "0.00006";
|
||||
}
|
||||
newItem.LastYearValue = System.Web.HttpUtility.HtmlDecode(str);
|
||||
newItem.ThisYearValue = System.Web.HttpUtility.HtmlDecode(item.ThisYearValue);
|
||||
newItem.Rate = System.Web.HttpUtility.HtmlDecode(item.Rate);
|
||||
ArchitectureReportItemService.AddArchitectureReportItem(newItem);
|
||||
|
|
@ -1331,7 +1336,12 @@ namespace FineUIPro.Web.ZHGL.Environmental
|
|||
{
|
||||
try
|
||||
{
|
||||
decimal d = Convert.ToDecimal(values.Value<string>("LastYearValue"));
|
||||
string str = values.Value<string>("LastYearValue");
|
||||
if (str == "6E-05")
|
||||
{
|
||||
str = "0.00006";
|
||||
}
|
||||
decimal d = Convert.ToDecimal(str);
|
||||
}
|
||||
catch (Exception)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@
|
|||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>5</WarningLevel>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<Prefer32Bit>false</Prefer32Bit>
|
||||
<DocumentationFile>bin\Debug\Model.xml</DocumentationFile>
|
||||
</PropertyGroup>
|
||||
|
|
|
|||
Loading…
Reference in New Issue