质量不符合清单

This commit is contained in:
2026-06-15 16:11:41 +08:00
parent 749966c735
commit 1fd3ca5094
33 changed files with 7394 additions and 26 deletions
@@ -80,6 +80,11 @@
strSql += " AND Users.RoleId = @RoleId";
listStr.Add(new SqlParameter("@RoleId", this.drpRole.SelectedValue));
}
if (!string.IsNullOrWhiteSpace(this.rblIsOffice.SelectedValue))
{
strSql += " AND Users.IsOffice = @IsOffice";
listStr.Add(new SqlParameter("@IsOffice", this.rblIsOffice.SelectedValue));
}
SqlParameter[] parameter = listStr.ToArray();
DataTable tb = SQLHelper.GetDataTableRunText(strSql, parameter);