From 9e6fb9ded61dbb6f6f615eae90fe1aaa890340a4 Mon Sep 17 00:00:00 2001
From: yl <ykxkd@outlook.com>
Date: 星期五, 15 三月 2024 15:33:34 +0800
Subject: [PATCH] 1.优化生产进度报表查询语句
---
VueWebCoreApi/DLL/DAL/BasicSettingDAL.cs | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/VueWebCoreApi/DLL/DAL/BasicSettingDAL.cs b/VueWebCoreApi/DLL/DAL/BasicSettingDAL.cs
index 45686f7..54087f6 100644
--- a/VueWebCoreApi/DLL/DAL/BasicSettingDAL.cs
+++ b/VueWebCoreApi/DLL/DAL/BasicSettingDAL.cs
@@ -2519,7 +2519,7 @@
if (customerclasscode != "" && customerclasscode != null)
{
string[] classcode = Array.ConvertAll<string, string>(customerclasscode.Split(new char[] { ',' }, StringSplitOptions.RemoveEmptyEntries), s => s.ToString()); //string鍒嗗壊杞瑂tring[]
- search += "and C.customertype in @classcode ";
+ search += "and C.customertype in @classcode";
dynamicParams.Add("@classcode", classcode);
}
if (customercode != "" && customercode != null)
--
Gitblit v1.9.3