20250122
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user