This commit is contained in:
李超 2026-04-29 11:19:09 +08:00
commit 6d0bb3f46d
1 changed files with 11 additions and 7 deletions

View File

@ -335,13 +335,17 @@ namespace FineUIPro.Web.ZHGL.Information
GetItems(report.MillionsMonthlyReportId);
foreach (var item in items)
{
if (!string.IsNullOrEmpty(item.Name))
{
item.Affiliation = System.Web.HttpUtility.HtmlDecode(item.Affiliation);
item.Name = System.Web.HttpUtility.HtmlDecode(item.Name);
MillionsMonthlyReportItemService.AddMillionsMonthlyReportItem(item);
mReportItemList.Add(item);
}
item.Affiliation = System.Web.HttpUtility.HtmlDecode(item.Affiliation);
item.Name = !string.IsNullOrWhiteSpace(item.Name) ? System.Web.HttpUtility.HtmlDecode(item.Name) : string.Empty;
MillionsMonthlyReportItemService.AddMillionsMonthlyReportItem(item);
mReportItemList.Add(item);
//if (!string.IsNullOrEmpty(item.Name))
//{
// item.Affiliation = System.Web.HttpUtility.HtmlDecode(item.Affiliation);
// item.Name = System.Web.HttpUtility.HtmlDecode(item.Name);
// MillionsMonthlyReportItemService.AddMillionsMonthlyReportItem(item);
// mReportItemList.Add(item);
//}
}
if (type == "updata") //数据同步
{