This commit is contained in:
geh
2026-04-09 16:09:11 +08:00
parent ad4f329930
commit bc4dac08a2
4 changed files with 124 additions and 32 deletions
@@ -42,7 +42,7 @@ namespace FineUIPro.Web.DataShow
from Comprehensive_InspectionMachine C
left join Base_Unit U on C.UnitId=U.UnitId
left join Base_CNProfessional CN on C.CNProfessionalId=CN.CNProfessionalId
where C.ProjectId = @ProjectId";
where C.InspectionType = '计量' and C.ProjectId = @ProjectId";
List<SqlParameter> listStr = new List<SqlParameter>();
strSql += " AND C.ProjectId = @ProjectId";
listStr.Add(new SqlParameter("@ProjectId", Request.Params["projectId"]));