This commit is contained in:
2025-03-14 19:50:18 +08:00
parent 99635c4969
commit 35b4d60fd6
14 changed files with 185 additions and 362 deletions

View File

@@ -12,6 +12,7 @@ using System.Threading.Tasks;
using Kingdee.BOS.Orm.DataEntity;
using System.Data;
using Pilot.Report.Exploitation.PublicClass;
using Pilot.Report.Exploitation.Common;
namespace Pilot.Report.Exploitation.ResultsKanbanSummary
{
@@ -614,7 +615,8 @@ namespace Pilot.Report.Exploitation.ResultsKanbanSummary
0 Sort
FROM #TempTable5 t1 GROUP BY t1.Area) t1
order by t1.Area,Sort;", tableName);
Loghelp.Log("BuilderReportSqlAndTempTable");
Loghelp.Log(sql);
DBUtils.Execute(this.Context, sql);
}
@@ -712,6 +714,8 @@ namespace Pilot.Report.Exploitation.ResultsKanbanSummary
) temp
";
string SqlStr = string.Format(sql, sSQL, rowId + 1, rowId + 2, rowId + 1024);
Loghelp.Log("GetListData");
Loghelp.Log(SqlStr);
return base.GetListData(SqlStr);
}
}