11
This commit is contained in:
@@ -41,10 +41,12 @@ namespace FineUIPro.Web.WeldingProcess.WeldingManage
|
||||
/// </summary>
|
||||
private void BindGrid()
|
||||
{
|
||||
string strSql = @"SELECT daily.DailyReportCompleteId,unit.UnitCode,team.TeamGroupName,daily.DailyReportDate,daily.IsComplete
|
||||
string strSql = @"SELECT daily.DailyReportCompleteId,unit.UnitCode,team.TeamGroupName,
|
||||
daily.DailyReportDate,daily.IsComplete,u.UserName AS ReportMan
|
||||
FROM dbo.Pipeline_DailyReportComplete daily
|
||||
LEFT JOIN dbo.Welder_TeamGroup team ON team.TeamGroupId = daily.TeamGroupId
|
||||
LEFT JOIN dbo.Base_Unit unit ON unit.UnitId = daily.UnitId
|
||||
LEFT JOIN dbo.Sys_User u ON u.UserId=daily.ReportMan
|
||||
WHERE 1=1";
|
||||
List<SqlParameter> parms = new List<SqlParameter>();
|
||||
if (this.drpTeamGroup.SelectedValue != "" && this.drpTeamGroup.SelectedValue!=Const._Null)
|
||||
|
||||
Reference in New Issue
Block a user