bklLiudl
2024-07-23 277bbae216debe7e6c04e8cc6ee6e1ba9763e14b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
using Commom.Utility;
using Common;
using Model;
using System;
using System.Collections.Generic;
using System.Data;
using System.Text;
 
namespace BLL.DAL
{
    public class DALStroeMat
    {
        /// <summary>
        /// 获取库存信息
        /// </summary>
        /// <param name="Json"></param>
        /// <param name="pageInfo"></param>
        /// <returns></returns>
        public IList<StroeMat> GetStroeMat(StroeMat Json, ref PageInfo pageInfo)
        {
            try
            {
                IList<StroeMat> list = new List<StroeMat>();
                StringBuilder strSql = new StringBuilder();
                strSql.Append("select * from View_StroeMat_Material where 1=1 " + $" AND (DepartGuid='{Json.DepartGuid}' or DepartGuid is null) ");
 
                if (Json.MatNo != null && Json.MatNo != "")
                {
                    strSql.Append(" and MatNo like '%" + Json.MatNo + "%' ");
                }
                if (Json.MatName != null && Json.MatName != "")
                {
                    strSql.Append(" and MatName like '%" + Json.MatName + "%' ");
                }
                if (Json.PackFormat != null && Json.PackFormat != "")
                {
                    strSql.Append(" and PackFormat like '%" + Json.PackFormat + "%'  ");
                }
                //if (!string.IsNullOrEmpty(Json.Unit))     // 物料单位不作为条件
                //{
                //    strSql.Append(" and Unit = " + Json.Unit.AddQuotes());
                //}
                if (!string.IsNullOrEmpty(Json.BrandId))
                {
                    strSql.Append(" and BrandId = " + Json.BrandId.AddQuotes());
                }
                if (!string.IsNullOrEmpty(Json.MatTypeId))
                {
                    strSql.Append(" and MatTypeId = " + Json.MatTypeId.AddQuotes());
                }
 
                SqlParam[] param = null;
                DataTable dt = DataFactory.SqlDataBase().GetPageList(strSql.ToString(), param, "MatNo", "ASC", ref pageInfo);
 
                list = ModelConvertHelper<StroeMat>.DataTableToModel(dt);
 
                return list;
            }
            catch
            {
                throw new NotImplementedException();
            }
        }
 
        /// <summary>
        /// 获取库存明细
        /// </summary>
        /// <param name="Json"></param>
        /// <param name="pageInfo"></param>
        /// <returns></returns>
        public IList<StroeItems> GetStroeItems(StroeItems Json, ref PageInfo pageInfo)
        {
            try
            {
                IList<StroeItems> list = new List<StroeItems>();
                StringBuilder strSql = new StringBuilder();
                strSql.Append("select * from View_StroeItems_Material where 1=1 " + $" AND (DepartGuid='{Json.DepartGuid}' or DepartGuid is null) ");
 
                if (!string.IsNullOrEmpty(Json.LingNo))
                {
                    strSql.Append("and LingNo like '%" + Json.LingNo + "%' ");
                }
                if (!string.IsNullOrEmpty(Json.Addre))
                {
                    strSql.Append("and Addre like '%" + Json.Addre + "%' ");
                }
                if (!string.IsNullOrEmpty(Json.Palno))
                {
                    strSql.Append("and Palno like '%" + Json.Palno + "%' ");
                }
                if (!string.IsNullOrEmpty(Json.TuNo))
                {
                    strSql.Append("and TuNo like '%" + Json.TuNo + "%' ");
                }
 
                // 批次号
                if (!string.IsNullOrEmpty(Json.BatchNo))
                {
                    strSql.Append("and BatchNo like '%" + Json.BatchNo + "%' ");
                }
                // 批次描述
                if (!string.IsNullOrEmpty(Json.BatchDemo))
                {
                    strSql.Append("and BatchName like '%" + Json.BatchDemo + "%' ");
                }
 
                if (!string.IsNullOrEmpty(Json.MatNo))
                {
                    strSql.Append("and MatNo like '%" + Json.MatNo + "%' ");
                }
                if (!string.IsNullOrEmpty(Json.MatName))
                {
                    strSql.Append("and MatName like '%" + Json.MatName + "%' ");
                }
                if (!string.IsNullOrEmpty(Json.PackFormat))
                {
                    strSql.Append("and PackFormat like '%" + Json.PackFormat + "%' ");
                }
                if (!string.IsNullOrEmpty(Json.MatTypeId))
                {
                    strSql.Append("and MatTypeId = " + Json.MatTypeId.AddQuotes());
                }
                // 序号
                if (!string.IsNullOrEmpty(Json.YeNo))
                {
                    strSql.Append(" and YeNo like '%" + Json.YeNo + "%' ");
                }
                // 合格证判定
                if (!string.IsNullOrEmpty(Json.Certificate))
                {
                    if (Json.Certificate == "有")
                    {
                        strSql.Append(" and LEN(isnull(certificate,'')) > 0");
                    }
                    else
                    {
                        strSql.Append(" and LEN(isnull(certificate,'')) = 0");
                    }
                }
 
 
                SqlParam[] param = null;
                DataTable dt = DataFactory.SqlDataBase().GetPageList(strSql.ToString(), param, "[dbo].PadLeft(YeNo,'0',3),MatNo ", "desc", ref pageInfo);
               // DataTable dt = DataFactory.SqlDataBase().GetPageList(strSql.ToString(), param, "[dbo].PadLeft(YeNo,'0',3)", "ASC", ref pageInfo);
 
                list = ModelConvertHelper<StroeItems>.DataTableToModel(dt);
 
                return list;
            }
            catch
            {
                throw new NotImplementedException();
            }
        }
 
        public DataTable GetStroeMatDetail(StroeMat Json)
        {
            try
            {
                StringBuilder strSql = new StringBuilder();
                strSql.Append("select * from View_StroeMat_Material where 1=1 ");
 
                if (Json.MatNo != null && Json.MatNo != "")
                {
                    strSql.Append(" and MatNo like '%" + Json.MatNo + "%' ");
                }
                if (Json.MatName != null && Json.MatName != "")
                {
                    strSql.Append(" and MatName like '%" + Json.MatName + "%' ");
                }
                if (Json.PackFormat != null && Json.PackFormat != "")
                {
                    strSql.Append(" and PackFormat like '%" + Json.PackFormat + "%'  ");
                }
                if (!string.IsNullOrEmpty(Json.BrandId))
                {
                    strSql.Append(" and BrandId = " + Json.BrandId.AddQuotes());
                }
                if (!string.IsNullOrEmpty(Json.MatTypeId))
                {
                    strSql.Append(" and MatTypeId = " + Json.MatTypeId.AddQuotes());
                }
 
                DataTable dt = DataFactory.SqlDataBase().GetDataTableBySQL(strSql);
                dt.TableName = "View_StroeMat_Material";
 
                return dt;
            }
            catch
            {
                throw new NotImplementedException();
            }
        }
 
        public DataTable GetStroeItems(StroeItems Json)
        {
            try
            {
                IList<StroeItems> list = new List<StroeItems>();
                StringBuilder strSql = new StringBuilder();
                strSql.Append("select * from View_StroeItems_Material where 1=1 ");
 
                if (!string.IsNullOrEmpty(Json.LingNo))
                {
                    strSql.Append("and LingNo like '%" + Json.LingNo + "%' ");
                }
                if (!string.IsNullOrEmpty(Json.Addre))
                {
                    strSql.Append("and Addre like '%" + Json.Addre + "%' ");
                }
                if (!string.IsNullOrEmpty(Json.Palno))
                {
                    strSql.Append("and Palno like '%" + Json.Palno + "%' ");
                }
                if (!string.IsNullOrEmpty(Json.TuNo))
                {
                    strSql.Append("and TuNo like '%" + Json.TuNo + "%' ");
                }
 
                if (!string.IsNullOrEmpty(Json.MatNo))
                {
                    strSql.Append("and MatNo like '%" + Json.MatNo + "%' ");
                }
                if (!string.IsNullOrEmpty(Json.MatName))
                {
                    strSql.Append("and MatName like '%" + Json.MatName + "%' ");
                }
                if (!string.IsNullOrEmpty(Json.PackFormat))
                {
                    strSql.Append("and PackFormat like '%" + Json.PackFormat + "%' ");
                }
                if (!string.IsNullOrEmpty(Json.MatTypeId))
                {
                    strSql.Append("and MatTypeId = " + Json.MatTypeId.AddQuotes());
                }
 
                strSql.Append(" order by [dbo].PadLeft(YeNo,'0',3) asc; ");
 
                DataTable dt = DataFactory.SqlDataBase().GetDataTableBySQL(strSql);
                dt.TableName = "TbItems";
                return dt;
            }
            catch
            {
                throw new NotImplementedException();
            }
        }
    }
}