From 81cbea9827b32d3a2fbfbd305e1d392276a04ce7 Mon Sep 17 00:00:00 2001 From: Ben Lin <maobin001@msn.com> Date: 星期四, 24 十月 2024 15:03:53 +0800 Subject: [PATCH] 一些更改 --- Tiger.Business.MES/BIZ/BIZ_MES_WO.cs | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/Tiger.Business.MES/BIZ/BIZ_MES_WO.cs b/Tiger.Business.MES/BIZ/BIZ_MES_WO.cs index b62afc1..993645e 100644 --- a/Tiger.Business.MES/BIZ/BIZ_MES_WO.cs +++ b/Tiger.Business.MES/BIZ/BIZ_MES_WO.cs @@ -456,7 +456,6 @@ /// </summary> /// <param name="input"></param> /// <returns></returns> - /// <exception cref="NotImplementedException"></exception> public async Task<ApiAction<LOG_LABEL_PRINT>> GetRePrintInfo(RePrintInput input) { var result = new ApiAction<LOG_LABEL_PRINT>(); @@ -472,7 +471,7 @@ } result.Data = await Biz.Db.Queryable<LOG_LABEL_PRINT>() - .WhereIF(input.ReqType == 0, q => q.SN.Equals(input.Code)) //鐧界洅鏍囩 + .WhereIF(input.ReqType == 0, q => q.SN.Equals(woSn.SN) || q.SN.Equals(woSn.FLOW_SN)) //鐧界洅鏍囩 .WhereIF(input.ReqType == 1, q => q.SN.Equals(woSn.OUTER_SN)) //绠辨爣绛� .FirstAsync(); } -- Gitblit v1.9.3