质量管理;移交管理

This commit is contained in:
2024-11-18 19:40:33 +08:00
parent 5fb846030f
commit 9ce0a75143
25 changed files with 213 additions and 177 deletions
@@ -63,12 +63,17 @@ namespace FineUIPro.Web.Transfer
// strSql += " AND Test_Package_START <= @InspectionDateZ";
// listStr.Add(new SqlParameter("@InspectionDateZ", Funs.GetNewDateTime(txtEndTime.Text.Trim())));
//}
if (!string.IsNullOrEmpty(this.txtSystem.Text.Trim()))
{
strSql += " AND SystemName like @SystemName";
listStr.Add(new SqlParameter("@SystemName", "%" + this.txtSystem.Text.Trim() + "%"));
}
//if (!string.IsNullOrEmpty(this.txtSystem.Text.Trim()))
//{
// strSql += " AND SystemName like @SystemName";
// listStr.Add(new SqlParameter("@SystemName", "%" + this.txtSystem.Text.Trim() + "%"));
//}
if (!string.IsNullOrEmpty(this.txtSysSubNo.Text.Trim()))
{
strSql += " AND Test_Package like @SysSubNo";
listStr.Add(new SqlParameter("@SysSubNo", "%" + this.txtSysSubNo.Text.Trim() + "%"));
}
if (!string.IsNullOrEmpty(ddStatus.SelectedValue))
{
strSql += " And FINAL_Status='" + ddStatus.SelectedValue + "' ";