From 641bb063b34459cea7dca7bbd087710888f8e091 Mon Sep 17 00:00:00 2001
From: admin <qiutairan163@163.com>
Date: 星期一, 10 十一月 2025 13:21:36 +0800
Subject: [PATCH] AddExportNotice的出库数量Qty<0校验
---
Wms/WMS.BLL/BllSoServer/ExportNoticeServer.cs | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Wms/WMS.BLL/BllSoServer/ExportNoticeServer.cs b/Wms/WMS.BLL/BllSoServer/ExportNoticeServer.cs
index de7852a..5210a92 100644
--- a/Wms/WMS.BLL/BllSoServer/ExportNoticeServer.cs
+++ b/Wms/WMS.BLL/BllSoServer/ExportNoticeServer.cs
@@ -1231,7 +1231,7 @@
//娣诲姞鍑哄簱鍗�
foreach (var d in model.Detail)
{
- if (d.Qty < 0M)
+ if (d.Qty < 0)
{
throw new Exception("鍑哄簱鏁伴噺蹇呴』澶т簬0");
}
--
Gitblit v1.8.0