From 161574a0dd7d9e1da6e00c65855a0c8b401c934e Mon Sep 17 00:00:00 2001
From: hao <1836460075@qq.com>
Date: 星期三, 25 六月 2025 16:21:14 +0800
Subject: [PATCH] 反审核无id通过
---
StandardInterface/MES.Service/service/BasicData/Production/ProductionOrderManager.cs | 23 ++++++++++++++++++-----
1 files changed, 18 insertions(+), 5 deletions(-)
diff --git a/StandardInterface/MES.Service/service/BasicData/Production/ProductionOrderManager.cs b/StandardInterface/MES.Service/service/BasicData/Production/ProductionOrderManager.cs
index 6291f89..31efed9 100644
--- a/StandardInterface/MES.Service/service/BasicData/Production/ProductionOrderManager.cs
+++ b/StandardInterface/MES.Service/service/BasicData/Production/ProductionOrderManager.cs
@@ -50,12 +50,25 @@
List<Womcab> mesRohInDatas)
{
var decimals = mesRohInDatas.Select(s => s.Id).ToArray();
- var update = base.DeleteById(womcaaWW.Id);
- var insertOrUpdate = db
- .Deleteable<Womcab>().In(decimals)
- .ExecuteCommand() > 0;
- if (update && insertOrUpdate) return true;
+ var update = true;
+ if (womcaaWW != null)
+ {
+ if (womcaaWW.Id != null)
+ {
+ update = base.DeleteById(womcaaWW.Id);
+ }
+ }
+ var insertOrUpdate = true;
+ if (decimals != null || decimals.Length > 0)
+ {
+ insertOrUpdate = db.Deleteable<Womcab>().In(decimals).ExecuteCommand() > 0;
+ }
+
+ if (update && insertOrUpdate)
+ {
+ return true;
+ }
throw new NotImplementedException("鏇存柊澶辫触");
}
--
Gitblit v1.9.3