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

@ -334,14 +334,18 @@ namespace FineUIPro.Web.ZHGL.Information
List<Model.Information_MillionsMonthlyReportItem> mReportItemList = new List<Information_MillionsMonthlyReportItem>();
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);
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") //数据同步
{