This commit is contained in:
parent
65ec5eaf2f
commit
e552eb1f4d
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue