1
This commit is contained in:
@@ -1557,19 +1557,19 @@ namespace BLL
|
||||
/// <returns></returns>
|
||||
public static List<InspectionManagementOutput> GetKeyProcessNum()
|
||||
{
|
||||
var result = (from x in Funs.DB.ProcessControl_InspectionManagementDetail
|
||||
join y in Funs.DB.WBS_BreakdownProject on x.ControlPointType equals y.BreakdownProjectId
|
||||
var result = (from x in Funs.DB.Check_SpotCheckDetail
|
||||
join y in Funs.DB.WBS_ControlItemAndCycle on x.ControlItemAndCycleId equals y.ControlItemAndCycleId
|
||||
where BeUnderConstructionList.Contains(y.ProjectId) && y.CheckAcceptType == "1" && x.CreateDate > Const.DtmarkTime
|
||||
select new Model.InspectionManagementOutput()
|
||||
{
|
||||
ProjectId = y.ProjectId,
|
||||
//ProjectName = p.ProjectName,
|
||||
//UnitName = UnitService.getUnitNamesUnitIds(x.UnitIds),
|
||||
Id = x.InspectionDetailId,
|
||||
BreakdownCode = y.BreakdownCode,
|
||||
BreakdownName = y.BreakdownName,
|
||||
Basis = y.Basis,
|
||||
CheckPoints = y.CheckPoints,
|
||||
Id = x.SpotCheckDetailId,
|
||||
BreakdownCode = y.ControlItemAndCycleCode,
|
||||
BreakdownName = y.ControlItemContent,
|
||||
Basis = y.HGForms,
|
||||
CheckPoints = y.ControlItemDef,
|
||||
}).ToList();
|
||||
return result;
|
||||
}
|
||||
@@ -1588,20 +1588,19 @@ namespace BLL
|
||||
/// <returns></returns>
|
||||
public static List<InspectionManagementOutput> GetKeyProcessOkNum()
|
||||
{
|
||||
var result = (from x in Funs.DB.ProcessControl_InspectionManagementDetail
|
||||
join y in Funs.DB.WBS_BreakdownProject on x.ControlPointType equals y.BreakdownProjectId
|
||||
join z in Funs.DB.ProcessControl_InspectionManagement on x.InspectionId equals z.InspectionId
|
||||
where BeUnderConstructionList.Contains(y.ProjectId) && y.CheckAcceptType == "1" && z.IsOnceQualified == true && x.CreateDate > Const.DtmarkTime
|
||||
var result = (from x in Funs.DB.Check_SpotCheckDetail
|
||||
join y in Funs.DB.WBS_ControlItemAndCycle on x.ControlItemAndCycleId equals y.ControlItemAndCycleId
|
||||
where BeUnderConstructionList.Contains(y.ProjectId) && y.CheckAcceptType == "1" && x.IsOK == true && x.CreateDate > Const.DtmarkTime
|
||||
select new Model.InspectionManagementOutput()
|
||||
{
|
||||
ProjectId = y.ProjectId,
|
||||
//ProjectName = p.ProjectName,
|
||||
//UnitName = UnitService.getUnitNamesUnitIds(x.UnitIds),
|
||||
Id = x.InspectionDetailId,
|
||||
BreakdownCode = y.BreakdownCode,
|
||||
BreakdownName = y.BreakdownName,
|
||||
Basis = y.Basis,
|
||||
CheckPoints = y.CheckPoints,
|
||||
Id = x.SpotCheckDetailId,
|
||||
BreakdownCode = y.ControlItemAndCycleCode,
|
||||
BreakdownName = y.ControlItemContent,
|
||||
Basis = y.HGForms,
|
||||
CheckPoints = y.ControlItemDef,
|
||||
}).ToList();
|
||||
return result;
|
||||
}
|
||||
@@ -1620,19 +1619,19 @@ namespace BLL
|
||||
/// <returns></returns>
|
||||
public static List<InspectionManagementOutput> GetSpecialProcessNum()
|
||||
{
|
||||
var result = (from x in Funs.DB.ProcessControl_InspectionManagementDetail
|
||||
join y in Funs.DB.WBS_BreakdownProject on x.ControlPointType equals y.BreakdownProjectId
|
||||
var result = (from x in Funs.DB.Check_SpotCheckDetail
|
||||
join y in Funs.DB.WBS_ControlItemAndCycle on x.ControlItemAndCycleId equals y.ControlItemAndCycleId
|
||||
where BeUnderConstructionList.Contains(y.ProjectId) && y.CheckAcceptType == "2" && x.CreateDate > Const.DtmarkTime
|
||||
select new Model.InspectionManagementOutput()
|
||||
{
|
||||
ProjectId = y.ProjectId,
|
||||
//ProjectName = p.ProjectName,
|
||||
//UnitName = UnitService.getUnitNamesUnitIds(x.UnitIds),
|
||||
Id = x.InspectionDetailId,
|
||||
BreakdownCode = y.BreakdownCode,
|
||||
BreakdownName = y.BreakdownName,
|
||||
Basis = y.Basis,
|
||||
CheckPoints = y.CheckPoints,
|
||||
Id = x.SpotCheckDetailId,
|
||||
BreakdownCode = y.ControlItemAndCycleCode,
|
||||
BreakdownName = y.ControlItemContent,
|
||||
Basis = y.HGForms,
|
||||
CheckPoints = y.ControlItemDef,
|
||||
}).ToList();
|
||||
return result;
|
||||
}
|
||||
@@ -1650,20 +1649,19 @@ namespace BLL
|
||||
/// <returns></returns>
|
||||
public static List<InspectionManagementOutput> GetSpecialProcessOkNum()
|
||||
{
|
||||
var result = (from x in Funs.DB.ProcessControl_InspectionManagementDetail
|
||||
join y in Funs.DB.WBS_BreakdownProject on x.ControlPointType equals y.BreakdownProjectId
|
||||
join z in Funs.DB.ProcessControl_InspectionManagement on x.InspectionId equals z.InspectionId
|
||||
where BeUnderConstructionList.Contains(y.ProjectId) && y.CheckAcceptType == "2" && z.IsOnceQualified == true && x.CreateDate > Const.DtmarkTime
|
||||
var result = (from x in Funs.DB.Check_SpotCheckDetail
|
||||
join y in Funs.DB.WBS_ControlItemAndCycle on x.ControlItemAndCycleId equals y.ControlItemAndCycleId
|
||||
where BeUnderConstructionList.Contains(y.ProjectId) && y.CheckAcceptType == "2" && x.IsOK == true && x.CreateDate > Const.DtmarkTime
|
||||
select new Model.InspectionManagementOutput()
|
||||
{
|
||||
ProjectId = y.ProjectId,
|
||||
//ProjectName = p.ProjectName,
|
||||
//UnitName = UnitService.getUnitNamesUnitIds(x.UnitIds),
|
||||
Id = x.InspectionDetailId,
|
||||
BreakdownCode = y.BreakdownCode,
|
||||
BreakdownName = y.BreakdownName,
|
||||
Basis = y.Basis,
|
||||
CheckPoints = y.CheckPoints,
|
||||
Id = x.SpotCheckDetailId,
|
||||
BreakdownCode = y.ControlItemAndCycleCode,
|
||||
BreakdownName = y.ControlItemContent,
|
||||
Basis = y.HGForms,
|
||||
CheckPoints = y.ControlItemDef,
|
||||
}).ToList();
|
||||
return result;
|
||||
}
|
||||
@@ -1681,19 +1679,19 @@ namespace BLL
|
||||
/// <returns></returns>
|
||||
public static List<InspectionManagementOutput> GetConcealedWorksNum()
|
||||
{
|
||||
var result = (from x in Funs.DB.ProcessControl_InspectionManagementDetail
|
||||
join y in Funs.DB.WBS_BreakdownProject on x.ControlPointType equals y.BreakdownProjectId
|
||||
var result = (from x in Funs.DB.Check_SpotCheckDetail
|
||||
join y in Funs.DB.WBS_ControlItemAndCycle on x.ControlItemAndCycleId equals y.ControlItemAndCycleId
|
||||
where BeUnderConstructionList.Contains(y.ProjectId) && y.CheckAcceptType == "3" && x.CreateDate > Const.DtmarkTime
|
||||
select new Model.InspectionManagementOutput()
|
||||
{
|
||||
ProjectId = y.ProjectId,
|
||||
//ProjectName = p.ProjectName,
|
||||
//UnitName = UnitService.getUnitNamesUnitIds(x.UnitIds),
|
||||
Id = x.InspectionDetailId,
|
||||
BreakdownCode = y.BreakdownCode,
|
||||
BreakdownName = y.BreakdownName,
|
||||
Basis = y.Basis,
|
||||
CheckPoints = y.CheckPoints,
|
||||
Id = x.SpotCheckDetailId,
|
||||
BreakdownCode = y.ControlItemAndCycleCode,
|
||||
BreakdownName = y.ControlItemContent,
|
||||
Basis = y.HGForms,
|
||||
CheckPoints = y.ControlItemDef,
|
||||
}).ToList();
|
||||
return result;
|
||||
}
|
||||
@@ -1711,20 +1709,19 @@ namespace BLL
|
||||
/// <returns></returns>
|
||||
public static List<InspectionManagementOutput> GetConcealedWorksOkNum()
|
||||
{
|
||||
var result = (from x in Funs.DB.ProcessControl_InspectionManagementDetail
|
||||
join y in Funs.DB.WBS_BreakdownProject on x.ControlPointType equals y.BreakdownProjectId
|
||||
join z in Funs.DB.ProcessControl_InspectionManagement on x.InspectionId equals z.InspectionId
|
||||
where BeUnderConstructionList.Contains(y.ProjectId) && y.CheckAcceptType == "3" && z.IsOnceQualified == true && x.CreateDate > Const.DtmarkTime
|
||||
var result = (from x in Funs.DB.Check_SpotCheckDetail
|
||||
join y in Funs.DB.WBS_ControlItemAndCycle on x.ControlItemAndCycleId equals y.ControlItemAndCycleId
|
||||
where BeUnderConstructionList.Contains(y.ProjectId) && y.CheckAcceptType == "3" && x.IsOK == true && x.CreateDate > Const.DtmarkTime
|
||||
select new Model.InspectionManagementOutput()
|
||||
{
|
||||
ProjectId = y.ProjectId,
|
||||
//ProjectName = p.ProjectName,
|
||||
//UnitName = UnitService.getUnitNamesUnitIds(x.UnitIds),
|
||||
Id = x.InspectionDetailId,
|
||||
BreakdownCode = y.BreakdownCode,
|
||||
BreakdownName = y.BreakdownName,
|
||||
Basis = y.Basis,
|
||||
CheckPoints = y.CheckPoints,
|
||||
Id = x.SpotCheckDetailId,
|
||||
BreakdownCode = y.ControlItemAndCycleCode,
|
||||
BreakdownName = y.ControlItemContent,
|
||||
Basis = y.HGForms,
|
||||
CheckPoints = y.ControlItemDef,
|
||||
}).ToList();
|
||||
return result;
|
||||
}
|
||||
@@ -1743,20 +1740,19 @@ namespace BLL
|
||||
/// <returns></returns>
|
||||
public static List<InspectionManagementOutput> GetUnitProjectAcceptNum()
|
||||
{
|
||||
var result = (from x in Funs.DB.ProcessControl_InspectionManagementDetail
|
||||
join y in Funs.DB.WBS_BreakdownProject on x.ControlPointType equals y.BreakdownProjectId
|
||||
join z in Funs.DB.ProcessControl_InspectionManagement on x.InspectionId equals z.InspectionId
|
||||
var result = (from x in Funs.DB.Check_SpotCheckDetail
|
||||
join y in Funs.DB.WBS_ControlItemAndCycle on x.ControlItemAndCycleId equals y.ControlItemAndCycleId
|
||||
where BeUnderConstructionList.Contains(y.ProjectId) && y.CheckAcceptType == "4" && x.CreateDate > Const.DtmarkTime
|
||||
select new Model.InspectionManagementOutput()
|
||||
{
|
||||
ProjectId = y.ProjectId,
|
||||
//ProjectName = p.ProjectName,
|
||||
//UnitName = UnitService.getUnitNamesUnitIds(x.UnitIds),
|
||||
Id = x.InspectionDetailId,
|
||||
BreakdownCode = y.BreakdownCode,
|
||||
BreakdownName = y.BreakdownName,
|
||||
Basis = y.Basis,
|
||||
CheckPoints = y.CheckPoints,
|
||||
Id = x.SpotCheckDetailId,
|
||||
BreakdownCode = y.ControlItemAndCycleCode,
|
||||
BreakdownName = y.ControlItemContent,
|
||||
Basis = y.HGForms,
|
||||
CheckPoints = y.ControlItemDef,
|
||||
}).ToList();
|
||||
return result;
|
||||
}
|
||||
@@ -1774,20 +1770,19 @@ namespace BLL
|
||||
/// <returns></returns>
|
||||
public static List<InspectionManagementOutput> GetUnitProjectAcceptOKNum()
|
||||
{
|
||||
var result = (from x in Funs.DB.ProcessControl_InspectionManagementDetail
|
||||
join y in Funs.DB.WBS_BreakdownProject on x.ControlPointType equals y.BreakdownProjectId
|
||||
join z in Funs.DB.ProcessControl_InspectionManagement on x.InspectionId equals z.InspectionId
|
||||
where BeUnderConstructionList.Contains(y.ProjectId) && y.CheckAcceptType == "4" && z.IsOnceQualified == true && x.CreateDate > Const.DtmarkTime
|
||||
var result = (from x in Funs.DB.Check_SpotCheckDetail
|
||||
join y in Funs.DB.WBS_ControlItemAndCycle on x.ControlItemAndCycleId equals y.ControlItemAndCycleId
|
||||
where BeUnderConstructionList.Contains(y.ProjectId) && y.CheckAcceptType == "4" && x.IsOK == true && x.CreateDate > Const.DtmarkTime
|
||||
select new Model.InspectionManagementOutput()
|
||||
{
|
||||
ProjectId = y.ProjectId,
|
||||
//ProjectName = p.ProjectName,
|
||||
//UnitName = UnitService.getUnitNamesUnitIds(x.UnitIds),
|
||||
Id = x.InspectionDetailId,
|
||||
BreakdownCode = y.BreakdownCode,
|
||||
BreakdownName = y.BreakdownName,
|
||||
Basis = y.Basis,
|
||||
CheckPoints = y.CheckPoints,
|
||||
Id = x.SpotCheckDetailId,
|
||||
BreakdownCode = y.ControlItemAndCycleCode,
|
||||
BreakdownName = y.ControlItemContent,
|
||||
Basis = y.HGForms,
|
||||
CheckPoints = y.ControlItemDef,
|
||||
}).ToList();
|
||||
return result;
|
||||
}
|
||||
@@ -1806,20 +1801,19 @@ namespace BLL
|
||||
/// <returns></returns>
|
||||
public static List<InspectionManagementOutput> GetMaterialInRecheckNum()
|
||||
{
|
||||
var result = (from x in Funs.DB.ProcessControl_InspectionManagementDetail
|
||||
join y in Funs.DB.WBS_BreakdownProject on x.ControlPointType equals y.BreakdownProjectId
|
||||
join z in Funs.DB.ProcessControl_InspectionManagement on x.InspectionId equals z.InspectionId
|
||||
var result = (from x in Funs.DB.Check_SpotCheckDetail
|
||||
join y in Funs.DB.WBS_ControlItemAndCycle on x.ControlItemAndCycleId equals y.ControlItemAndCycleId
|
||||
where BeUnderConstructionList.Contains(y.ProjectId) && y.CheckAcceptType == "5" && x.CreateDate > Const.DtmarkTime
|
||||
select new Model.InspectionManagementOutput()
|
||||
{
|
||||
ProjectId = y.ProjectId,
|
||||
//ProjectName = p.ProjectName,
|
||||
//UnitName = UnitService.getUnitNamesUnitIds(x.UnitIds),
|
||||
Id = x.InspectionDetailId,
|
||||
BreakdownCode = y.BreakdownCode,
|
||||
BreakdownName = y.BreakdownName,
|
||||
Basis = y.Basis,
|
||||
CheckPoints = y.CheckPoints,
|
||||
Id = x.SpotCheckDetailId,
|
||||
BreakdownCode = y.ControlItemAndCycleCode,
|
||||
BreakdownName = y.ControlItemContent,
|
||||
Basis = y.HGForms,
|
||||
CheckPoints = y.ControlItemDef,
|
||||
}).ToList();
|
||||
return result;
|
||||
}
|
||||
@@ -1837,20 +1831,19 @@ namespace BLL
|
||||
/// <returns></returns>
|
||||
public static List<InspectionManagementOutput> GetMaterialInRecheckOKNum()
|
||||
{
|
||||
var result = (from x in Funs.DB.ProcessControl_InspectionManagementDetail
|
||||
join y in Funs.DB.WBS_BreakdownProject on x.ControlPointType equals y.BreakdownProjectId
|
||||
join z in Funs.DB.ProcessControl_InspectionManagement on x.InspectionId equals z.InspectionId
|
||||
where BeUnderConstructionList.Contains(y.ProjectId) && y.CheckAcceptType == "5" && z.IsOnceQualified == true && x.CreateDate > Const.DtmarkTime
|
||||
var result = (from x in Funs.DB.Check_SpotCheckDetail
|
||||
join y in Funs.DB.WBS_ControlItemAndCycle on x.ControlItemAndCycleId equals y.ControlItemAndCycleId
|
||||
where BeUnderConstructionList.Contains(y.ProjectId) && y.CheckAcceptType == "5" && x.IsOK == true && x.CreateDate > Const.DtmarkTime
|
||||
select new Model.InspectionManagementOutput()
|
||||
{
|
||||
ProjectId = y.ProjectId,
|
||||
//ProjectName = p.ProjectName,
|
||||
//UnitName = UnitService.getUnitNamesUnitIds(x.UnitIds),
|
||||
Id = x.InspectionDetailId,
|
||||
BreakdownCode = y.BreakdownCode,
|
||||
BreakdownName = y.BreakdownName,
|
||||
Basis = y.Basis,
|
||||
CheckPoints = y.CheckPoints,
|
||||
Id = x.SpotCheckDetailId,
|
||||
BreakdownCode = y.ControlItemAndCycleCode,
|
||||
BreakdownName = y.ControlItemContent,
|
||||
Basis = y.HGForms,
|
||||
CheckPoints = y.ControlItemDef,
|
||||
}).ToList();
|
||||
return result;
|
||||
}
|
||||
@@ -1869,20 +1862,19 @@ namespace BLL
|
||||
/// <returns></returns>
|
||||
public static List<InspectionManagementOutput> GetSubProjectAcceptNum()
|
||||
{
|
||||
var result = (from x in Funs.DB.ProcessControl_InspectionManagementDetail
|
||||
join y in Funs.DB.WBS_BreakdownProject on x.ControlPointType equals y.BreakdownProjectId
|
||||
join z in Funs.DB.ProcessControl_InspectionManagement on x.InspectionId equals z.InspectionId
|
||||
var result = (from x in Funs.DB.Check_SpotCheckDetail
|
||||
join y in Funs.DB.WBS_ControlItemAndCycle on x.ControlItemAndCycleId equals y.ControlItemAndCycleId
|
||||
where BeUnderConstructionList.Contains(y.ProjectId) && y.CheckAcceptType == "5" && x.CreateDate > Const.DtmarkTime
|
||||
select new Model.InspectionManagementOutput()
|
||||
{
|
||||
ProjectId = y.ProjectId,
|
||||
//ProjectName = p.ProjectName,
|
||||
//UnitName = UnitService.getUnitNamesUnitIds(x.UnitIds),
|
||||
Id = x.InspectionDetailId,
|
||||
BreakdownCode = y.BreakdownCode,
|
||||
BreakdownName = y.BreakdownName,
|
||||
Basis = y.Basis,
|
||||
CheckPoints = y.CheckPoints,
|
||||
Id = x.SpotCheckDetailId,
|
||||
BreakdownCode = y.ControlItemAndCycleCode,
|
||||
BreakdownName = y.ControlItemContent,
|
||||
Basis = y.HGForms,
|
||||
CheckPoints = y.ControlItemDef,
|
||||
}).ToList();
|
||||
return result;
|
||||
}
|
||||
@@ -1900,20 +1892,19 @@ namespace BLL
|
||||
/// <returns></returns>
|
||||
public static List<InspectionManagementOutput> GetSubProjectAcceptOKNum()
|
||||
{
|
||||
var result = (from x in Funs.DB.ProcessControl_InspectionManagementDetail
|
||||
join y in Funs.DB.WBS_BreakdownProject on x.ControlPointType equals y.BreakdownProjectId
|
||||
join z in Funs.DB.ProcessControl_InspectionManagement on x.InspectionId equals z.InspectionId
|
||||
where BeUnderConstructionList.Contains(y.ProjectId) && y.CheckAcceptType == "5" && z.IsOnceQualified == true && x.CreateDate > Const.DtmarkTime
|
||||
var result = (from x in Funs.DB.Check_SpotCheckDetail
|
||||
join y in Funs.DB.WBS_ControlItemAndCycle on x.ControlItemAndCycleId equals y.ControlItemAndCycleId
|
||||
where BeUnderConstructionList.Contains(y.ProjectId) && y.CheckAcceptType == "5" && x.IsOK == true && x.CreateDate > Const.DtmarkTime
|
||||
select new Model.InspectionManagementOutput()
|
||||
{
|
||||
ProjectId = y.ProjectId,
|
||||
//ProjectName = p.ProjectName,
|
||||
//UnitName = UnitService.getUnitNamesUnitIds(x.UnitIds),
|
||||
Id = x.InspectionDetailId,
|
||||
BreakdownCode = y.BreakdownCode,
|
||||
BreakdownName = y.BreakdownName,
|
||||
Basis = y.Basis,
|
||||
CheckPoints = y.CheckPoints,
|
||||
Id = x.SpotCheckDetailId,
|
||||
BreakdownCode = y.ControlItemAndCycleCode,
|
||||
BreakdownName = y.ControlItemContent,
|
||||
Basis = y.HGForms,
|
||||
CheckPoints = y.ControlItemDef,
|
||||
}).ToList();
|
||||
return result;
|
||||
}
|
||||
@@ -1931,20 +1922,19 @@ namespace BLL
|
||||
/// <returns></returns>
|
||||
public static List<InspectionManagementOutput> GetSubdivisionalWorksAcceptNum()
|
||||
{
|
||||
var result = (from x in Funs.DB.ProcessControl_InspectionManagementDetail
|
||||
join y in Funs.DB.WBS_BreakdownProject on x.ControlPointType equals y.BreakdownProjectId
|
||||
join z in Funs.DB.ProcessControl_InspectionManagement on x.InspectionId equals z.InspectionId
|
||||
var result = (from x in Funs.DB.Check_SpotCheckDetail
|
||||
join y in Funs.DB.WBS_ControlItemAndCycle on x.ControlItemAndCycleId equals y.ControlItemAndCycleId
|
||||
where BeUnderConstructionList.Contains(y.ProjectId) && y.CheckAcceptType == "6" && x.CreateDate > Const.DtmarkTime
|
||||
select new Model.InspectionManagementOutput()
|
||||
{
|
||||
ProjectId = y.ProjectId,
|
||||
//ProjectName = p.ProjectName,
|
||||
//UnitName = UnitService.getUnitNamesUnitIds(x.UnitIds),
|
||||
Id = x.InspectionDetailId,
|
||||
BreakdownCode = y.BreakdownCode,
|
||||
BreakdownName = y.BreakdownName,
|
||||
Basis = y.Basis,
|
||||
CheckPoints = y.CheckPoints,
|
||||
Id = x.SpotCheckDetailId,
|
||||
BreakdownCode = y.ControlItemAndCycleCode,
|
||||
BreakdownName = y.ControlItemContent,
|
||||
Basis = y.HGForms,
|
||||
CheckPoints = y.ControlItemDef,
|
||||
}).ToList();
|
||||
return result;
|
||||
}
|
||||
@@ -1962,20 +1952,19 @@ namespace BLL
|
||||
/// <returns></returns>
|
||||
public static List<InspectionManagementOutput> GetSubdivisionalWorksAcceptOKNum()
|
||||
{
|
||||
var result = (from x in Funs.DB.ProcessControl_InspectionManagementDetail
|
||||
join y in Funs.DB.WBS_BreakdownProject on x.ControlPointType equals y.BreakdownProjectId
|
||||
join z in Funs.DB.ProcessControl_InspectionManagement on x.InspectionId equals z.InspectionId
|
||||
where BeUnderConstructionList.Contains(y.ProjectId) && y.CheckAcceptType == "6" && z.IsOnceQualified == true && x.CreateDate > Const.DtmarkTime
|
||||
var result = (from x in Funs.DB.Check_SpotCheckDetail
|
||||
join y in Funs.DB.WBS_ControlItemAndCycle on x.ControlItemAndCycleId equals y.ControlItemAndCycleId
|
||||
where BeUnderConstructionList.Contains(y.ProjectId) && y.CheckAcceptType == "6" && x.IsOK == true && x.CreateDate > Const.DtmarkTime
|
||||
select new Model.InspectionManagementOutput()
|
||||
{
|
||||
ProjectId = y.ProjectId,
|
||||
//ProjectName = p.ProjectName,
|
||||
//UnitName = UnitService.getUnitNamesUnitIds(x.UnitIds),
|
||||
Id = x.InspectionDetailId,
|
||||
BreakdownCode = y.BreakdownCode,
|
||||
BreakdownName = y.BreakdownName,
|
||||
Basis = y.Basis,
|
||||
CheckPoints = y.CheckPoints,
|
||||
Id = x.SpotCheckDetailId,
|
||||
BreakdownCode = y.ControlItemAndCycleCode,
|
||||
BreakdownName = y.ControlItemContent,
|
||||
Basis = y.HGForms,
|
||||
CheckPoints = y.ControlItemDef,
|
||||
}).ToList();
|
||||
return result;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user