From cbeb997178132c5c71d57b5011847f7d6e21930a Mon Sep 17 00:00:00 2001
From: yl <ykxkd@outlook.com>
Date: 星期五, 08 十一月 2024 15:58:55 +0800
Subject: [PATCH] 1.入库记录删除 2.畅捷通T+反写产成品入库单(直接写表) 3.erp同步基础资料和订单改为根据配置取T+或者T8 4.通用基础资料仓库资料放出erpid 5.生产入库查询信息接口调整字段(T+和T8共用)
---
VueWebCoreApi/DLL/DAL/ReportManagerDAL.cs | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/VueWebCoreApi/DLL/DAL/ReportManagerDAL.cs b/VueWebCoreApi/DLL/DAL/ReportManagerDAL.cs
index cf232b8..e269956 100644
--- a/VueWebCoreApi/DLL/DAL/ReportManagerDAL.cs
+++ b/VueWebCoreApi/DLL/DAL/ReportManagerDAL.cs
@@ -1740,7 +1740,7 @@
if (data.Rows.Count > 0 && data.Rows.Count == groupedRecords[i].count)
{
//鍒犻櫎鍏ュ簱鍗曚富琛�
- sql = @"delete TK_WMS_Inwh_Main where hbillno=@hbillno";
+ sql = @"delete from TK_WMS_Inwh_Main where hbillno=@hbillno";
list.Add(new
{
str = sql,
@@ -1755,7 +1755,7 @@
for (int i = 0; i < json.Count; i++)
{
//鍒犻櫎鍏ュ簱鍗曞瓙琛�
- sql = @"delete TK_WMS_Inwh_Sub where hbillno=@hbillno and inbarcode=@inbarcode";
+ sql = @"delete from TK_WMS_Inwh_Sub where hbillno=@hbillno and inbarcode=@inbarcode";
list.Add(new
{
str = sql,
--
Gitblit v1.9.3