From 0330f4f7dd0d4fcfe3d697c3cd4712cd317718e6 Mon Sep 17 00:00:00 2001 From: Ben Lin <maobin001@msn.com> Date: 星期五, 25 十月 2024 01:40:23 +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