This commit is contained in:
2025-10-27 15:04:14 +08:00
parent 3bc378cd12
commit 5e5d4ba5fe
2 changed files with 26 additions and 25 deletions
@@ -27,7 +27,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
public void BindGrid()
{
string strSql = @"select Id, Sortid, StartDate, EndDate, ProjectId,ReportType
from Report_WeekAndMonthReport_New C
from Report_WeekAndMonthReport_New C with(nolock)
where C.ReportType='1' AND C.ProjectId = @ProjectId";
List<SqlParameter> listStr = new List<SqlParameter>();
listStr.Add(new SqlParameter("@ProjectId", this.CurrUser.LoginProjectId));