From ceefd67c02e36ff020d8417f2b4fe28e8e91f5e1 Mon Sep 17 00:00:00 2001 From: ndbs Date: Tue, 16 May 2023 10:19:50 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B5=84=E4=BA=A7=E5=8F=98=E5=8A=A8=E7=94=B3?= =?UTF-8?q?=E8=AF=B7=E6=9F=A5=E8=AF=A2=E6=9D=A1=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Views/Ass_FixAssetsApply/Index.cshtml | 2 +- .../Ass_FixAssetsApply/Ass_FixAssetsApplyService.cs | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_FixAssetsApply/Index.cshtml b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_FixAssetsApply/Index.cshtml index 22a07acf5..a00754127 100644 --- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_FixAssetsApply/Index.cshtml +++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_FixAssetsApply/Index.cshtml @@ -31,7 +31,7 @@
卡片编号
- +
资产名称
diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/AssetManagementSystem/Ass_FixAssetsApply/Ass_FixAssetsApplyService.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/AssetManagementSystem/Ass_FixAssetsApply/Ass_FixAssetsApplyService.cs index a9e85e5ed..229a7a034 100644 --- a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/AssetManagementSystem/Ass_FixAssetsApply/Ass_FixAssetsApplyService.cs +++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/AssetManagementSystem/Ass_FixAssetsApply/Ass_FixAssetsApplyService.cs @@ -63,10 +63,10 @@ namespace Learun.Application.TwoDevelopment.AssetManagementSystem dp.Add("StorageId", queryParam["StorageId"].ToString(), DbType.String); strSql.Append(" AND t.StorageId = @StorageId "); } - if (!queryParam["CardNumber"].IsEmpty()) + if (!queryParam["FACode"].IsEmpty()) { - dp.Add("CardNumber", "%" + queryParam["CardNumber"].ToString() + "%", DbType.String); - strSql.Append(" AND t.CardNumber Like @CardNumber "); + dp.Add("FACode", "%" + queryParam["FACode"].ToString() + "%", DbType.String); + strSql.Append(" AND t.FACode Like @FACode "); } if (!queryParam["FAName"].IsEmpty()) {