提交代码
This commit is contained in:
@@ -1228,7 +1228,7 @@ namespace FineUIPro.Web.ZHGL.Environmental
|
|||||||
ShowNotify("该月份记录已存在!", MessageBoxIcon.Warning);
|
ShowNotify("该月份记录已存在!", MessageBoxIcon.Warning);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
Model.Environmental_ArchitectureReport oldReport = BLL.ArchitectureReportService.GetArchitectureReportByArchitectureReportId(ArchitectureReportId);
|
Model.Environmental_ArchitectureReport oldReport = BLL.ArchitectureReportService.GetArchitectureReportByArchitectureReportId(ArchitectureReportId);
|
||||||
@@ -1248,7 +1248,12 @@ namespace FineUIPro.Web.ZHGL.Environmental
|
|||||||
newItem.ArchitectureReportId = report.ArchitectureReportId;
|
newItem.ArchitectureReportId = report.ArchitectureReportId;
|
||||||
newItem.BaseNumber = System.Web.HttpUtility.HtmlDecode(item.BaseNumber);
|
newItem.BaseNumber = System.Web.HttpUtility.HtmlDecode(item.BaseNumber);
|
||||||
newItem.SortIndex = System.Web.HttpUtility.HtmlDecode(item.SortIndex);
|
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.ThisYearValue = System.Web.HttpUtility.HtmlDecode(item.ThisYearValue);
|
||||||
newItem.Rate = System.Web.HttpUtility.HtmlDecode(item.Rate);
|
newItem.Rate = System.Web.HttpUtility.HtmlDecode(item.Rate);
|
||||||
ArchitectureReportItemService.AddArchitectureReportItem(newItem);
|
ArchitectureReportItemService.AddArchitectureReportItem(newItem);
|
||||||
@@ -1265,7 +1270,7 @@ namespace FineUIPro.Web.ZHGL.Environmental
|
|||||||
PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference());
|
PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference());
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
else if (code=="3")
|
else if (code == "3")
|
||||||
{
|
{
|
||||||
Alert.ShowInParent("集团当前季度数据已锁定,无法上传!", MessageBoxIcon.Error);
|
Alert.ShowInParent("集团当前季度数据已锁定,无法上传!", MessageBoxIcon.Error);
|
||||||
}
|
}
|
||||||
@@ -1284,26 +1289,26 @@ namespace FineUIPro.Web.ZHGL.Environmental
|
|||||||
|
|
||||||
protected void btnSave_Click(object sender, EventArgs e)
|
protected void btnSave_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
/* bool isEmpty = false;
|
/* bool isEmpty = false;
|
||||||
foreach (JObject mergedRow in Grid1.GetMergedData())
|
foreach (JObject mergedRow in Grid1.GetMergedData())
|
||||||
{
|
{
|
||||||
JObject values = mergedRow.Value<JObject>("values");
|
JObject values = mergedRow.Value<JObject>("values");
|
||||||
int rowIndex = mergedRow.Value<int>("index");
|
int rowIndex = mergedRow.Value<int>("index");
|
||||||
string sortIndex = values.Value<string>("SortIndex");
|
string sortIndex = values.Value<string>("SortIndex");
|
||||||
if (sortIndex == "18" || sortIndex == "37" || sortIndex == "38")
|
if (sortIndex == "18" || sortIndex == "37" || sortIndex == "38")
|
||||||
{
|
{
|
||||||
if (Funs.GetNewDecimalOrZero(System.Web.HttpUtility.HtmlDecode(values.Value<string>("ThisYearValue"))) == 0)
|
if (Funs.GetNewDecimalOrZero(System.Web.HttpUtility.HtmlDecode(values.Value<string>("ThisYearValue"))) == 0)
|
||||||
{
|
{
|
||||||
isEmpty = true;
|
isEmpty = true;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (isEmpty)
|
if (isEmpty)
|
||||||
{
|
{
|
||||||
ShowNotify("营业收入(可比价)、万元收入二氧化碳排放(可比价)和二氧化碳排放量不能为空,必须填报数据!", MessageBoxIcon.Warning);
|
ShowNotify("营业收入(可比价)、万元收入二氧化碳排放(可比价)和二氧化碳排放量不能为空,必须填报数据!", MessageBoxIcon.Warning);
|
||||||
return;
|
return;
|
||||||
}*/
|
}*/
|
||||||
Save("add");
|
Save("add");
|
||||||
ShowNotify("保存成功!", MessageBoxIcon.Success);
|
ShowNotify("保存成功!", MessageBoxIcon.Success);
|
||||||
PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference());
|
PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference());
|
||||||
@@ -1331,7 +1336,12 @@ namespace FineUIPro.Web.ZHGL.Environmental
|
|||||||
{
|
{
|
||||||
try
|
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)
|
catch (Exception)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -29,7 +29,7 @@
|
|||||||
<OutputPath>bin\Debug\</OutputPath>
|
<OutputPath>bin\Debug\</OutputPath>
|
||||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||||
<ErrorReport>prompt</ErrorReport>
|
<ErrorReport>prompt</ErrorReport>
|
||||||
<WarningLevel>5</WarningLevel>
|
<WarningLevel>4</WarningLevel>
|
||||||
<Prefer32Bit>false</Prefer32Bit>
|
<Prefer32Bit>false</Prefer32Bit>
|
||||||
<DocumentationFile>bin\Debug\Model.xml</DocumentationFile>
|
<DocumentationFile>bin\Debug\Model.xml</DocumentationFile>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|||||||
Reference in New Issue
Block a user