20250318 质量优化

This commit is contained in:
2025-03-18 21:54:11 +08:00
parent 5fa3744594
commit 94b3b15b35
12 changed files with 435 additions and 95 deletions
@@ -41,8 +41,8 @@ namespace FineUIPro.Web.Comprehensive
listStr.Add(new SqlParameter("@ProjectId", this.CurrUser.LoginProjectId));
if (sdrpUnitId.SelectedValue != BLL.Const._Null)
{
strSql += " AND C.SendUnit=@UnitId";
listStr.Add(new SqlParameter("@UnitId", sdrpUnitId.SelectedValue));
strSql += " AND C.ReceiveUnit like @UnitId";
listStr.Add(new SqlParameter("@UnitId", "%" + sdrpUnitId.SelectedValue + "%"));
}
if (this.drpProfessionalId.SelectedValue != BLL.Const._Null)
{
@@ -348,7 +348,7 @@ namespace FineUIPro.Web.Comprehensive
select x);
if (sdrpUnitId.SelectedValue != BLL.Const._Null)
{
lists = lists.Where(x => x.SendUnit == sdrpUnitId.SelectedValue);
lists = lists.Where(x => x.ReceiveUnit.Contains(sdrpUnitId.SelectedValue));
}
if (this.drpProfessionalId.SelectedValue != BLL.Const._Null)
{