From 76a8ad8fa1b87975d1ad117e82be40eb35f41ef9 Mon Sep 17 00:00:00 2001 From: 南骏 池 <chiffly@163.com> Date: 星期四, 12 六月 2025 08:26:53 +0800 Subject: [PATCH] 1.工单领料管控 2.生产退料申请优化 --- service/QC/LljService.cs | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/service/QC/LljService.cs b/service/QC/LljService.cs index 4a0ae3a..a6573b0 100644 --- a/service/QC/LljService.cs +++ b/service/QC/LljService.cs @@ -730,7 +730,7 @@ //鍒犻櫎鐗瑰緛鍊� public int deleteDetail13(LLJDto dto) { - var withOracle = Db.Updateable<MesQaItemsDetectDetail13>() + var withOracle = Db.Deleteable<MesQaItemsDetectDetail13>() .Where(s => s.Guid.ToString() == dto.id13) .ExecuteCommand(); @@ -741,7 +741,7 @@ public int updateRemarks(LLJDto dto) { var withOracle = Db.Updateable<MesQaItemsDetect01>() - .SetColumns(s => s.Remarks == dto.Remarks) + .SetColumns(s => s.FngDesc == dto.Remarks) .Where(s => s.Guid.ToString() == dto.gid) .ExecuteCommand(); -- Gitblit v1.9.3