服务端的TigerApi 框架,基于.NET6 2024 版本
Ben Lin
2024-10-24 81cbea9827b32d3a2fbfbd305e1d392276a04ce7
一些更改
已修改1个文件
3 ■■■■ 文件已修改
Tiger.Business.MES/BIZ/BIZ_MES_WO.cs 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
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();
            }