1
This commit is contained in:
@@ -781,14 +781,14 @@ namespace FineUIPro.Web.HJGL.DataIn
|
||||
|
||||
var steel = BLL.HJGL_MaterialService.GetSteelBySteID(ste);
|
||||
var floorQ = from x in floorWelderQualifys
|
||||
where wmeCode1.Contains(x.WeldingMethodId)
|
||||
where x.WeldingMethodId.Contains(wmeCode1)
|
||||
&& (x.WeldingLocationId == "ALL" || (location == null || location == "" || x.WeldingLocationId.Contains(location)))
|
||||
&& (steel == null || x.MaterialType.Contains(steel.STE_SteelType ?? ""))
|
||||
&& x.WeldType.Contains(weldType)
|
||||
// && (dia == null || x.SizesMin<=dia)
|
||||
select x;
|
||||
var cellQ = from x in cellWelderQualifys
|
||||
where wmeCode2.Contains(x.WeldingMethodId)
|
||||
where x.WeldingMethodId.Contains(wmeCode2)
|
||||
&& (x.WeldingLocationId == "ALL" || (location == null || location == "" || x.WeldingLocationId.Contains(location)))
|
||||
&& (steel == null || x.MaterialType.Contains(steel.STE_SteelType ?? ""))
|
||||
&& x.WeldType.Contains(weldType)
|
||||
|
||||
@@ -613,14 +613,14 @@ namespace FineUIPro.Web.HJGL.WeldingManage
|
||||
|
||||
var steel = BLL.HJGL_MaterialService.GetSteelBySteID(ste);
|
||||
var floorQ = from x in floorWelderQualifys
|
||||
where wmeCode1.Contains(x.WeldingMethodId)
|
||||
where x.WeldingMethodId.Contains(wmeCode1)
|
||||
&& (x.WeldingLocationId == "ALL" || (location == null || location == "" || x.WeldingLocationId.Contains(location)))
|
||||
&& (steel == null || x.MaterialType.Contains(steel.STE_SteelType ?? ""))
|
||||
&& x.WeldType.Contains(weldType)
|
||||
// && (dia == null || x.SizesMin<=dia)
|
||||
select x;
|
||||
var cellQ = from x in cellWelderQualifys
|
||||
where wmeCode2.Contains(x.WeldingMethodId)
|
||||
where x.WeldingMethodId.Contains(wmeCode2)
|
||||
&& (x.WeldingLocationId == "ALL" || (location == null || location == "" || x.WeldingLocationId.Contains(location)))
|
||||
&& (steel == null || x.MaterialType.Contains(steel.STE_SteelType ?? ""))
|
||||
&& x.WeldType.Contains(weldType)
|
||||
|
||||
@@ -370,14 +370,14 @@ namespace WebAPI.Controllers
|
||||
|
||||
var steel = BLL.HJGL_MaterialService.GetSteelBySteID(ste);
|
||||
var floorQ = from x in floorWelderQualifys
|
||||
where wmeCode1.Contains(x.WeldingMethodId)
|
||||
where x.WeldingMethodId.Contains(wmeCode1)
|
||||
&& (x.WeldingLocationId == "ALL" || (location == null || location == "" || x.WeldingLocationId.Contains(location)))
|
||||
&& (steel == null || x.MaterialType.Contains(steel.STE_SteelType ?? ""))
|
||||
&& x.WeldType.Contains(weldType)
|
||||
// && (dia == null || x.SizesMin<=dia)
|
||||
select x;
|
||||
var cellQ = from x in cellWelderQualifys
|
||||
where wmeCode2.Contains(x.WeldingMethodId)
|
||||
where x.WeldingMethodId.Contains(wmeCode2)
|
||||
&& (x.WeldingLocationId == "ALL" || (location == null || location == "" || x.WeldingLocationId.Contains(location)))
|
||||
&& (steel == null || x.MaterialType.Contains(steel.STE_SteelType ?? ""))
|
||||
&& x.WeldType.Contains(weldType)
|
||||
|
||||
Reference in New Issue
Block a user