From 4361513fb831fdd416356e576682358bd72a121c Mon Sep 17 00:00:00 2001 From: Cloud Zhang <941187371@qq.com> Date: 星期四, 16 五月 2024 14:20:36 +0800 Subject: [PATCH] 合并 --- Tiger.Business/WMS/MengQi/Biz.Mq.SNData.cs | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/Tiger.Business/WMS/MengQi/Biz.Mq.SNData.cs b/Tiger.Business/WMS/MengQi/Biz.Mq.SNData.cs index c6e8205..1d63e76 100644 --- a/Tiger.Business/WMS/MengQi/Biz.Mq.SNData.cs +++ b/Tiger.Business/WMS/MengQi/Biz.Mq.SNData.cs @@ -124,6 +124,7 @@ .WhereIF(!string.IsNullOrEmpty(strTime[2]), x => x.ModelCode.Equals(strTime[2])) .WhereIF(!string.IsNullOrEmpty(strTime[3]), x => x.CustomerCode.Equals(strTime[3])) .WhereIF(!string.IsNullOrEmpty(strTime[4]), x => x.DeliveryNo.Equals(strTime[4])) + .WhereIF(!string.IsNullOrEmpty(strTime[5]), x => x.CustModel.Equals(strTime[5])) .ToPageListAsync(pageList.pageIndex, pageList.pageSize, total); pageList.totals = total; } @@ -157,6 +158,7 @@ .WhereIF(!string.IsNullOrEmpty(where.model), x => x.ModelCode == where.model) .WhereIF(!string.IsNullOrEmpty(where.customerCode), x => x.CustomerCode.Equals(where.customerCode)) .WhereIF(!string.IsNullOrEmpty(where.deliveryNo), x => x.DeliveryNo.Equals(where.deliveryNo)) + .WhereIF(!string.IsNullOrEmpty(where.custParam1), x => x.CustModel.Equals(where.custParam1)) .ToListAsync(); } catch (Exception ex) @@ -189,6 +191,7 @@ .WhereIF(!string.IsNullOrEmpty(where.model), x => x.ItemCode == where.model) .WhereIF(!string.IsNullOrEmpty(where.customerCode), x => x.CustomerCode.Equals(where.customerCode)) .WhereIF(!string.IsNullOrEmpty(where.deliveryNo), x => x.DeliveryNo.Equals(where.deliveryNo)) + .WhereIF(!string.IsNullOrEmpty(where.custParam1), x => x.CustModel.Equals(where.custParam1)) .OrderBy(x=>x.CREATE_TIME).OrderBy(x => x.Scanner).ToListAsync(); } catch (Exception ex) -- Gitblit v1.9.3