20240410 开车会议管理
This commit is contained in:
@@ -28,8 +28,10 @@ namespace FineUIPro.Web.TestRun.DriverReport
|
||||
string strSql = @"SELECT report.MonthReportId,
|
||||
report.ProjectId,
|
||||
report.MonthReportCode,
|
||||
(CONVERT(varchar(10),DATEADD(DAY,1,DATEADD(MONTH,-1,report.MonthReportDate)),120)+'至'+CONVERT(varchar(10),report.MonthReportDate,120)) as MonthReportDate"
|
||||
(CONVERT(varchar(10),DATEADD(DAY,1,DATEADD(MONTH,-1,report.MonthReportDate)),120)+'至'+CONVERT(varchar(10),report.MonthReportDate,120)) as MonthReportDate,
|
||||
RIGHT(att.AttachUrl,CHARINDEX('_',REVERSE(att.AttachUrl))-1) AS AttachUrl"
|
||||
+ @" FROM TestRun_MonthReport AS report "
|
||||
+ @" LEFT JOIN AttachFile AS att ON att.ToKeyId=report.MonthReportId "
|
||||
+ @" WHERE report.ProjectId=@projectId ";
|
||||
List<SqlParameter> listStr = new List<SqlParameter>();
|
||||
listStr.Add(new SqlParameter("@projectId", this.CurrUser.LoginProjectId));
|
||||
|
||||
Reference in New Issue
Block a user