Public Sub Search() Dim dateSql = EndTime.Value.ToString("yyyy-MM-dd") Dim sql As String If CmbItem.SelectedValue = "ProductName" Then sql = $"where M_StencilDetails.StencilID in (select StencilID from M_StencilAndProduct where ProductName like '%{TxtCondition.Text}%') " ElseIf CmbItem.SelectedValue = "StencilID" Then sql = $"where M_StencilDetails.{CmbItem.SelectedValue} like '%{TxtCondition.Text}%' " Else sql = $"where {CmbItem.SelectedValue} like '%{TxtCondition.Text}%' " End If If cmbWorkShop.Text <> "ALL" Then sql &= $"and workshop = '{cmbWorkShop.Text}'" End If If CheckBox1.Checked = False Then sql &= " and StateID != 2" End If Dim dt As DataTable = SparesBLL.GetStencilData(dateSql, sql) Dim dtRow As DataRow() = dt.Select("StencilUsesCount>=280000 and StateID <> 2") cursorDt = dt.Clone For Each item As DataRow In dtRow cursorDt.ImportRow(item) Next If cursorDt IsNot Nothing Then tsbLink.Text = cursorDt.Rows.Count tsbLink.Visible = True tsbTipText.Visible = True Else tsbLink.Visible = False tsbTipText.Visible = False End If DgvStencil.DataSource = dt End Sub
时间: 2024-02-14 09:33:44 浏览: 123
这是一段用于搜索数据的VB.NET代码,根据不同的条件进行筛选,最终将结果显示在DataGridView控件中。其中,先根据下拉框选择的条件和文本框中输入的关键字构造SQL语句,然后根据复选框和下拉框选择的条件再添加一些筛选条件。最后将符合条件的数据复制到一个新的DataTable中,并将其绑定到DataGridView控件上。
相关问题
翻译这段代码 results.ForEach(r => { var batchCodes = GetBatchCode(codeMappings, r.Code); var index = DataGrid.Rows.Add(); DataGrid.Rows[index].Tag = r.Id; DataGrid.Rows[index].Cells[0].Value = r.Code; DataGrid.Rows[index].Cells[1].Value = batchCodes.Item1; DataGrid.Rows[index].Cells[2].Value = batchCodes.Item2; DataGrid.Rows[index].Cells[3].Value = r.Result == 1 ? CommonUtility.OkStr : CommonUtility.NgStr; DataGrid.Rows[index].Cells[4].Value = r.StartTime?.ToString("yyyy-MM-dd HH:mm:ss"); DataGrid.Rows[index].Cells[5].Value = r.EndTime?.ToString("yyyy-MM-dd HH:mm:ss"); DataGrid.Rows[index].Cells[6].Value = r.NgInfo; if (r.Result != 1) { DataGrid.Rows[index].Cells[3].Style.ForeColor = Color.Red; DataGrid.Rows[index].Cells[6].Style.ForeColor = Color.Red; } r.Datas.ForEach(d => { var columnName = $"Column{d.DataId}"; DataGrid.Rows[index].Cells[columnName].Value = d.Value; if (d.Value == CommonUtility.NgStr || !string.IsNullOrEmpty(d.NgInfo)) { DataGrid.Rows[index].Cells[columnName].Style.ForeColor = Color.Red; } });
这段代码是使用foreach循环对一个名为results的集合进行迭代。对于集合中的每个元素r,执行以下操作:
1. 通过调用GetBatchCode方法,使用codeMappings和r.Code作为参数,获取一个名为batchCodes的元组。
2. 使用DataGrid.Rows.Add()方法在DataGrid中添加一行,并将其索引赋值给变量index。
3. 设置新添加行的Tag属性为r.Id。
4. 将新添加行的第一个单元格(Cells[0])设置为r.Code的值。
5. 将新添加行的第二个单元格(Cells[1])设置为batchCodes.Item1的值。
6. 将新添加行的第三个单元格(Cells[2])设置为batchCodes.Item2的值。
7. 根据r.Result的值,将新添加行的第四个单元格(Cells[3])设置为CommonUtility.OkStr或CommonUtility.NgStr。
8. 将新添加行的第五个单元格(Cells[4])设置为r.StartTime的格式化字符串("yyyy-MM-dd HH:mm:ss")。
9. 将新添加行的第六个单元格(Cells[5])设置为r.EndTime的格式化字符串("yyyy-MM-dd HH:mm:ss")。
10. 将新添加行的第七个单元格(Cells[6])设置为r.NgInfo的值。
11. 如果r.Result不等于1,则将新添加行的第四个单元格和第七个单元格的文本颜色设置为红色。
12. 对r.Datas集合进行循环操作,对于集合中的每个元素d,执行以下操作:
a. 根据d.DataId生成一个列名columnName。
b. 将新添加行的名为columnName的单元格(Cells[columnName])设置为d.Value的值。
c. 如果d.Value等于CommonUtility.NgStr或d.NgInfo不为空,则将名为columnName的单元格的文本颜色设置为红色。
总体来说,这段代码的目的是将结果数据逐行添加到DataGrid控件中,并根据一些条件设置单元格的属性和样式。
filterInfo() { this.data = this.tableList.slice(0); if (this.tableList.length > 0) { //进行时间筛选 this.working = this.getworkinghours(this.workinghours); this.starttime = this.working.substring(0, 10); this.endtime = this.working.substring(13, 23); if (this.starttime != '' || this.endtime != '') { this.data = this.data.filter(item => { return this.starttime <= moment(item.bringoutdate).format('YYYY-MM-DD') && moment(item.bringoutdate).format('YYYY-MM-DD') <= this.endtime; }); } } },
这段代码的作用是将一个表格数据的副本 `slice(0)` 赋给 `this.data`,然后根据时间筛选条件 `this.starttime` 和 `this.endtime`,对 `this.data` 进行过滤操作,返回符合时间范围的数据。具体的分析如下:
首先,代码将原始的表格数据 `this.tableList` 的一个副本通过 `slice(0)` 方法复制给了 `this.data`,这么做是为了保证不会修改原始数据,同时得到一个新的数组,可以对其进行过滤操作。
接下来,代码判断了表格数据的长度,如果表格数据不为空,就对其进行时间筛选。时间筛选的条件是根据 `this.workinghours` 得到的工作时间计算出开始时间 `this.starttime` 和结束时间 `this.endtime`,然后将数组中的每个元素 `item` 分别与时间范围进行比较,如果符合条件,则将该元素加入到过滤后的数据中。
最终,代码返回过滤后的数据 `this.data`,包含了符合时间范围的表格数据。
阅读全文