Administrator
4 天以前 56ab5ce0e07d908b29821f31178cd607d16d0487
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
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
using System;
using System.Collections.Generic;
using System.Text;
using System.Windows.Forms;
 
namespace BLL
{
    /// <summary>
    /// ·µ»ØÏÂÀ­ »ù´¡×ÊÁÏÐÅÏ¢Àà
    /// </summary>
   public  class ClsBaseDownSelect
    {
        #region ÉèÖÃÎı¾¿ò
 
 
 
        /// <summary>
        /// Ñ¡ÔñÎïÁÏ
        /// </summary>
        /// <param name="txt"></param>
        /// <param name="x"></param>
        /// <param name="y"></param>
        public static void SetTextByMater(TextBox txt, int x, int y)
        {
            DAL.ClsGy_Material_View oMater = new DAL.ClsGy_Material_View();
            if (oMater.RefreshViewDownMenu(" and ( HHelpCode like '%" + txt.Text + "%' or  HModel like '%" + txt.Text + "%' or  HName like '%" + txt.Text + "%' or HNumber like '%" + txt.Text + "%')", x, y))
            {
                txt.Text = oMater.oModel.HName;
                txt.Tag = oMater.oModel.HItemID.ToString();
                txt.ForeColor = System.Drawing.Color.Blue;
                txt.SelectAll();
            }
            else
            {
                txt.Text = "";
                txt.ForeColor = System.Drawing.Color.Black;
            }
        }
 
        /// <summary>
        /// Ñ¡Ôñ¹©Ó¦ÉÌ
        /// </summary>
        /// <param name="txt"></param>
        /// <param name="x"></param>
        /// <param name="y"></param>
        public static void SetTextBySupplier(TextBox txt, int x, int y)
        {
            DAL.ClsGy_Supplier_View oSupplier = new DAL.ClsGy_Supplier_View();
            if (oSupplier.RefreshViewDownMenu(" and (HHelpCode like '%" + txt.Text + "%' or  HName like '%" + txt.Text + "%' or HNumber like '%" + txt.Text + "%')", x, y))
            {
                txt.Text = oSupplier.oModel.HName;
                txt.Tag = oSupplier.oModel.HItemID.ToString();
                txt.ForeColor = System.Drawing.Color.Blue;
                txt.SelectAll();
            }
            else
            {
                txt.Text = "";
                txt.ForeColor = System.Drawing.Color.Black;
            }
        }
 
        /// <summary>
        /// Ñ¡Ôñ¹©Ó¦ÉÌ
        /// </summary>
        /// <param name="txt"></param>
        /// <param name="x"></param>
        /// <param name="y"></param>
        public static void SetTextBySupplier(TextBox txt, int x, int y,bool isNumber,TextBox txtName)
        {
            DAL.ClsGy_Supplier_View oSupplier = new DAL.ClsGy_Supplier_View();
            if (oSupplier.RefreshViewDownMenu(" and (HHelpCode like '%" + txt.Text + "%' or  HName like '%" + txt.Text + "%' or HNumber like '%" + txt.Text + "%')", x, y))
            {
                txt.Text = oSupplier.oModel.HNumber;
                txtName.Text = oSupplier.oModel.HName;
                txt.Tag = oSupplier.oModel.HItemID.ToString();
                txt.ForeColor = System.Drawing.Color.Blue;
                txt.SelectAll();
            }
            else
            {
                txt.Text = "";
                txt.ForeColor = System.Drawing.Color.Black;
            }
        }
 
 
        /// <summary>
        /// Ñ¡ÔñÎïÁÏ
        /// </summary>
        /// <param name="txt"></param>
        /// <param name="x"></param>
        /// <param name="y"></param>
       public static void SetTextByMater(TextBox txt, int x, int y, bool isNumber, TextBox txtName,TextBox txtModel)
        {
            DAL.ClsGy_Material_View oMater = new DAL.ClsGy_Material_View();
            if (oMater.RefreshViewDownMenu(" and (HHelpCode like '%" + txt.Text + "%' or HModel like '%" + txt.Text + "%' or  HName like '%" + txt.Text + "%' or HNumber like '%" + txt.Text + "%')", x, y))
            {
                txt.Text = oMater.oModel.HNumber;
                txtName.Text = oMater.oModel.HName;
                txtModel.Text = oMater.oModel.HModel;
                txt.Tag = oMater.oModel.HItemID.ToString();
                txt.ForeColor = System.Drawing.Color.Blue;
                txt.SelectAll();
            }
            else
            {
                txt.Text = "";
                txt.ForeColor = System.Drawing.Color.Black;
            }
        }
 
        /// <summary>
        /// Ñ¡Ôñ²Ö¿â
        /// </summary>
        /// <param name="txt"></param>
        /// <param name="x"></param>
        /// <param name="y"></param>
        public static void SetTextByWarehouse(TextBox txt, int x, int y)
        {
            DAL.ClsGy_Warehouse_View oWH = new DAL.ClsGy_Warehouse_View();
            if (oWH.RefreshViewDownMenu(" and ( HName like '%" + txt.Text + "%' or HNumber like '%" + txt.Text + "%')", x, y))
            {
                txt.Text = oWH.oModel.HName;
                txt.Tag = oWH.oModel.HItemID.ToString();
                txt.ForeColor = System.Drawing.Color.Blue;
                txt.SelectAll();
            }
            else
            {
                txt.Text = "";
                txt.ForeColor = System.Drawing.Color.Black;
            }
        }
        /// <summary>
        /// Ñ¡ÔñÖ°Ô±
        /// </summary>
        /// <param name="txt"></param>
        /// <param name="x"></param>
        /// <param name="y"></param>
        public static void SetTextByEmployee(TextBox txt, int x, int y)
        {
            DAL.ClsGy_Employee_View oEmployee = new DAL.ClsGy_Employee_View();
            if (oEmployee.RefreshViewDownMenu(" and ( HName like '%" + txt.Text + "%' or HNumber like '%" + txt.Text + "%')", x, y))
            {
                txt.Text = oEmployee.oModel.HName;
                txt.Tag = oEmployee.oModel.HItemID.ToString();
                txt.ForeColor = System.Drawing.Color.Blue;
                txt.SelectAll();
            }
            else
            {
                txt.Text = "";
                txt.ForeColor = System.Drawing.Color.Black;
            }
        }
 
 
        /// <summary>
        /// Ñ¡Ôñ½áË㷽ʽ
        /// </summary>
        /// <param name="txt"></param>
        /// <param name="x"></param>
        /// <param name="y"></param>
        public static void SetTextBySettleStyle(TextBox txt, int x, int y)
        {
            DAL.ClsGy_SettleStyle_View oSS = new DAL.ClsGy_SettleStyle_View();
            if (oSS.RefreshViewDownMenu(" and ( HName like '%" + txt.Text + "%' or HNumber like '%" + txt.Text + "%')", x, y))
            {
                txt.Text = oSS.oModel.HName;
                txt.Tag = oSS.oModel.HItemID.ToString();
                txt.ForeColor = System.Drawing.Color.Blue;
                txt.SelectAll();
            }
            else
            {
                txt.Text = "";
                txt.ForeColor = System.Drawing.Color.Black;
            }
        }
 
 
        /// <summary>
        /// Ñ¡Ôñ²¿ÃÅ
        /// </summary>
        /// <param name="txt"></param>
        /// <param name="x"></param>
        /// <param name="y"></param>
        public static void SetTextByDepartment(TextBox txt, int x, int y)
        {
            DAL.ClsGy_Department_View oDepar = new DAL.ClsGy_Department_View();
            if (oDepar.RefreshViewDownMenu(" and ( HName like '%" + txt.Text + "%' or HNumber like '%" + txt.Text + "%')", x, y))
            {
                txt.Text = oDepar.oModel.HName;
                txt.Tag = oDepar.oModel.HItemID.ToString();
                txt.ForeColor = System.Drawing.Color.Blue;
                txt.SelectAll();
            }
            else
            {
                txt.Text = "";
                txt.ForeColor = System.Drawing.Color.Black;
            }
        }
        /// <summary>
        /// Ñ¡ÔñÏúÊÛ·½Ê½
        /// </summary>
        /// <param name="txt"></param>
        /// <param name="x"></param>
        /// <param name="y"></param>
        public static void SetTextBySellStyle(TextBox txt, int x, int y)
        {
            DAL.ClsGy_SellStyle_View oSS = new DAL.ClsGy_SellStyle_View();
            if (oSS.RefreshViewDownMenu(" and ( HName like '%" + txt.Text + "%' or HNumber like '%" + txt.Text + "%')", x, y))
            {
                txt.Text = oSS.oModel.HName;
                txt.Tag = oSS.oModel.HItemID.ToString();
                txt.ForeColor = System.Drawing.Color.Blue;
                txt.SelectAll();
            }
            else
            {
                txt.Text = "";
                txt.ForeColor = System.Drawing.Color.Black;
            }
        }
        /// <summary>
        /// Ñ¡Ôñ²É¹º·½Ê½
        /// </summary>
        /// <param name="txt"></param>
        /// <param name="x"></param>
        /// <param name="y"></param>
        public static void SetTextByPoStockStyle(TextBox txt, int x, int y)
        {
            DAL.ClsGy_PoStockStyle_View oPSS = new DAL.ClsGy_PoStockStyle_View();
            if (oPSS.RefreshViewDownMenu(" and ( HName like '%" + txt.Text + "%' or HNumber like '%" + txt.Text + "%')", x, y))
            {
                txt.Text = oPSS.oModel.HName;
                txt.Tag = oPSS.oModel.HItemID.ToString();
                txt.ForeColor = System.Drawing.Color.Blue;
                txt.SelectAll();
            }
            else
            {
                txt.Text = "";
                txt.ForeColor = System.Drawing.Color.Black;
            }
        }
 
 
        /// <summary>
        /// Ñ¡Ôñ¿Í»§
        /// </summary>
        /// <param name="txt"></param>
        /// <param name="x"></param>
        /// <param name="y"></param>
        public static void SetTextByCustomer(TextBox txt, int x, int y)
        {
            DAL.ClsGy_Customer_View oCus = new DAL.ClsGy_Customer_View();
            if (oCus.RefreshViewDownMenu(" and (HHelpCode like '%" + txt.Text + "%' or  HName like '%" + txt.Text + "%' or HNumber like '%" + txt.Text + "%')", x, y))
            {
                txt.Text = oCus.oModel.HName;
                txt.Tag = oCus.oModel.HItemID.ToString();
                txt.ForeColor = System.Drawing.Color.Blue;
                txt.SelectAll();
            }
            else
            {
                txt.Text = "";
                txt.ForeColor = System.Drawing.Color.Black;
            }
        }
 
        /// <summary>
        /// Ñ¡Ôñ¿Í»§
        /// </summary>
        /// <param name="txt"></param>
        /// <param name="x"></param>
        /// <param name="y"></param>
        public static void SetTextByCustomer(TextBox txt, int x, int y,bool isNumber,TextBox txtHName)
        {
            DAL.ClsGy_Customer_View oCus = new DAL.ClsGy_Customer_View();
            if (oCus.RefreshViewDownMenu(" and (HHelpCode like '%" + txt.Text + "%' or  HName like '%" + txt.Text + "%' or HNumber like '%" + txt.Text + "%')", x, y))
            {
                txt.Text = oCus.oModel.HNumber;
                txtHName.Text = oCus.oModel.HName;
                txt.Tag = oCus.oModel.HItemID.ToString();
                txt.ForeColor = System.Drawing.Color.Blue;
                txt.SelectAll();
            }
            else
            {
                txt.Text = "";
                txt.ForeColor = System.Drawing.Color.Black;
            }
        }
 
        /// <summary>
        /// Ñ¡Ôñ±Ò±ð
        /// </summary>
        /// <param name="txt"></param>
        /// <param name="x"></param>
        /// <param name="y"></param>
        public static void SetTextByCurrency(TextBox txt, int x, int y)
        {
            DAL.ClsGy_Currency_View oCur = new DAL.ClsGy_Currency_View();
            if (oCur.RefreshViewDownMenu(" and ( HName like '%" + txt.Text + "%' or HNumber like '%" + txt.Text + "%')", x, y))
            {
                txt.Text = oCur.oModel.HName;
                txt.Tag = oCur.oModel.HItemID.ToString();
                txt.ForeColor = System.Drawing.Color.Blue;
                txt.SelectAll();
            }
            else
            {
                txt.Text = "";
                txt.ForeColor = System.Drawing.Color.Black;
            }
        }
 
        #endregion
 
 
        #region ÉèÖÃÍø¸ñ
 
        /// <summary>
        /// Ñ¡ÔñÎïÁÏ
        /// </summary>
        /// <param name="txt"></param>
        /// <param name="x"></param>
        /// <param name="y"></param>
       public static void SetGridByMater(DataGridView grdMain, string sWhere, int i, int HMaterIDCol, int HQuery1Col, int HQuery2Col, int HQuery3Col, int HQuery4Col, int HQuery5Col, int x, int y)
        {
            DAL.ClsGy_Material_View oMater = new DAL.ClsGy_Material_View();
            if (oMater.RefreshViewDownMenu(" and (HHelpCode like '%" + sWhere + "%' or  HModel like '%" + sWhere + "%' or  HName like '%" + sWhere + "%' or HNumber like '%" + sWhere + "%'or HQuery1 like '%" + sWhere + "%'or HQuery2 like '%" + sWhere + "%'or HQuery3 like '%" + sWhere + "%'or HQuery4 like '%" + sWhere + "%'or HQuery5 like '%" + sWhere + "%' )", x, y))
            {
                grdMain.Rows[i].Cells[HMaterIDCol].Value = oMater.oModel.HItemID.ToString();
            }
            else
            {
                grdMain.Rows[i].Cells[HMaterIDCol].Value = 0;
            }
        }
 
        /// <summary>
        /// Ñ¡ÔñÎïÁÏ
        /// </summary>
        /// <param name="txt"></param>
        /// <param name="x"></param>
        /// <param name="y"></param>
       public static void SetGridByMater_yt(Int64 HCusID, DataGridView grdMain, string sWhere, int i, int HMaterIDCol, int HQuery1, int HQuery2, int HQuery3, int HQuery4, int HQuery5, int x, int y)
        {
            DAL.ClsGy_Material_View oMater = new DAL.ClsGy_Material_View();
            if (oMater.RefreshViewDownMenu_yt(HCusID, " and (HSubjoin  like '%" + sWhere + "%' or  HHelpCode like '%" + sWhere + "%' or  HModel like '%" + sWhere + "%' or  HName like '%" + sWhere + "%' or HNumber like '%" + sWhere + "%'or HQuery1 like '%" + sWhere + "%' or HQuery2 like '%" + sWhere + "%' or HQuery3 like '%" + sWhere + "%' or HQuery4 like '%" + sWhere + "%' or HQuery5 like '%" + sWhere + "%'  )", x, y))
            {
                grdMain.Rows[i].Cells[HMaterIDCol].Value = oMater.oModel.HItemID.ToString();
            }
            else
            {
                grdMain.Rows[i].Cells[HMaterIDCol].Value = 0;
            }
        }
 
        #endregion
    }
}