From 4f18572bce174f7d131e11d3f69156183ff7c71d Mon Sep 17 00:00:00 2001
From: yl <ykxkd@outlook.com>
Date: 星期四, 09 二月 2023 21:34:06 +0800
Subject: [PATCH] 采购订单存储过程修改、采购订单明细接口

---
 VueWebApi/DLL/DAL/BasicSettingDAL.cs |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/VueWebApi/DLL/DAL/BasicSettingDAL.cs b/VueWebApi/DLL/DAL/BasicSettingDAL.cs
index ecee0df..32b52e3 100644
--- a/VueWebApi/DLL/DAL/BasicSettingDAL.cs
+++ b/VueWebApi/DLL/DAL/BasicSettingDAL.cs
@@ -1839,7 +1839,7 @@
                 sql = @"select B.id,B.ando_cogfigid,U.usercode,U.username,A.enable  from TAnDon_Roul_ConFig A
                         inner join TAnDon_Roul_ConFigUser B on A.id=B.ando_cogfigid
                         left  join TUser U on B.usercode=U.usercode
-                        where A.wkshp_code=@wkshopcode and A.andotype_code=@calltypecode";
+                        where A.wkshp_code=@wkshopcode and A.andotype_code=@calltypecode and U.is_delete=0";
                 dynamicParams.Add("@wkshopcode", wkshopcode);
                 dynamicParams.Add("@calltypecode", calltypecode);
                 var data = DapperHelper.selectdata(sql, dynamicParams);

--
Gitblit v1.9.3