20240410 开车会议管理
This commit is contained in:
@@ -37,10 +37,12 @@ namespace FineUIPro.Web.TestRun.DriverReport
|
||||
report.ReportType,
|
||||
report.Remark,
|
||||
unitWork.UnitWorkName,
|
||||
u.UserName AS CompilePersonName"
|
||||
u.UserName AS CompilePersonName,
|
||||
RIGHT(att.AttachUrl,CHARINDEX('_',REVERSE(att.AttachUrl))-1) AS AttachUrl"
|
||||
+ @" FROM Driver_DriverReport AS report "
|
||||
+ @" LEFT JOIN WBS_UnitWork AS unitWork ON unitWork.UnitWorkId = report.UnitWorkId"
|
||||
+ @" LEFT JOIN Sys_User AS u ON u.UserId = report.CompilePerson"
|
||||
+ @" LEFT JOIN AttachFile AS att ON att.ToKeyId=report.DriverReportId "
|
||||
+ @" WHERE report.ProjectId=@projectId AND report.ReportType='4'";
|
||||
List<SqlParameter> listStr = new List<SqlParameter>();
|
||||
listStr.Add(new SqlParameter("@projectId", this.CurrUser.LoginProjectId));
|
||||
|
||||
Reference in New Issue
Block a user