服务端的TigerApi 框架,基于.NET6 2024 版本
Ben Lin
2024-05-12 5d7e809ed08be4354ec31e53b7a580f2c30c1e8a
盟祺-增加客户物料编码
已修改3个文件
27 ■■■■■ 文件已修改
Tiger.Business/WMS/MengQi/Biz.Mq.SNData.cs 3 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Tiger.Model.Net/Entitys/WMS/MengQi/SNData.cs 12 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Tiger.Model.Net/Entitys/WMS/MengQi/SNData_His.cs 12 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
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)
Tiger.Model.Net/Entitys/WMS/MengQi/SNData.cs
@@ -249,6 +249,18 @@
                _DeliveryNo = value;
            }
        }
        private string _CustModel = null;
        public string CustModel
        {
            get
            {
                return _CustModel;
            }
            set
            {
                _CustModel = value;
            }
        }
    }
    public class SNData_Ext
Tiger.Model.Net/Entitys/WMS/MengQi/SNData_His.cs
@@ -116,6 +116,18 @@
                _DeliveryNo = value;
            }
        }
        private string _CustModel = null;
        public string CustModel
        {
            get
            {
                return _CustModel;
            }
            set
            {
                _CustModel = value;
            }
        }
    }
    public class SNDataWhere