This commit is contained in:
2025-01-22 14:23:47 +08:00
parent 726383b62e
commit d0d56a1ff3
3 changed files with 19 additions and 19 deletions
@@ -670,7 +670,7 @@ namespace FineUIPro.Web.CQMS.ProcessControl
join y in Funs.DB.Division_SubProjects on x.DivisionId equals y.DivisionId
where x.ProjectId == this.CurrUser.LoginProjectId
&& x.UnitWorkId == this.drpUnitWorkId.SelectedValue
&& y.ParentId == null
&& (y.ParentId == null || y.ParentId == "")
select new
{
y.DivisionId,
@@ -699,7 +699,7 @@ namespace FineUIPro.Web.CQMS.ProcessControl
join y in Funs.DB.Division_SubProjects on x.DivisionId equals y.DivisionId
where x.ProjectId == this.CurrUser.LoginProjectId
&& x.UnitWorkId == this.drpChirldUnitWorkId.SelectedValue
&& y.ParentId == null
&& (y.ParentId == null || y.ParentId == "")
select new
{
y.DivisionId,
@@ -769,13 +769,13 @@ namespace FineUIPro.Web.CQMS.ProcessControl
#endregion
//分项工程
this.drpProEngineering.Items.Clear();
this.drpProEngineering.Items.Clear();
var q = (from x in Funs.DB.WBS_DivisionDivide
join y in Funs.DB.Division_SubProjects on x.DivisionId equals y.DivisionId
where x.ProjectId == this.CurrUser.LoginProjectId
&& x.UnitWorkId == this.drpUnitWorkId.SelectedValue
&& y.ParentId == this.drpBranch.SelectedValue
&& y.ParentId != null
&& (y.ParentId != null && y.ParentId != "")
select new
{
y.DivisionId,