0818-1555

This commit is contained in:
gaofei
2021-08-18 15:55:24 +08:00
parent a3031f2003
commit 6efc9d1c61
7 changed files with 34 additions and 79 deletions
@@ -22,7 +22,7 @@ namespace FineUIPro.Web.Comprehensive
if (!IsPostBack)
{
GetButtonPower();
BLL.CNProfessionalService.InitCNProfessionalDownList(this.sdrpCNProfessionalId, true);
BLL.DesignProfessionalService.InitDesignProfessionalDownList(this.sdrpCNProfessionalId, true);
BindGrid();
}
}
@@ -46,10 +46,10 @@ namespace FineUIPro.Web.Comprehensive
C.Remark,
C.RemarkCode,
C.UnitWorkId,
CN.ProfessionalName"
+@" FROM Comprehensive_DesignDrawings C "
+@" LEFT JOIN Base_CNProfessional CN ON C.CNProfessionalId=CN.CNProfessionalId"
+@" WHERE C.ProjectId = @ProjectId";
CN.ProfessionalName"
+ @" FROM Comprehensive_DesignDrawings C "
+ @" LEFT JOIN Base_DesignProfessional CN ON C.CNProfessionalId=CN.DesignProfessionalId"
+ @" WHERE C.ProjectId = @ProjectId";
List<SqlParameter> listStr = new List<SqlParameter>();
listStr.Add(new SqlParameter("@ProjectId", this.CurrUser.LoginProjectId));
if (sdrpCNProfessionalId.SelectedValue != BLL.Const._Null)