优化材料和焊接数据页面显示及筛选功能
This commit is contained in:
@@ -70,9 +70,95 @@ namespace FineUIPro.Web.CLGL
|
||||
{
|
||||
string strSql = @"select *
|
||||
from dbo.CLGL_PipelineMaterialList c
|
||||
where c.ProjectId=@ProjectId order by c.C28 desc";
|
||||
where c.ProjectId=@ProjectId ";
|
||||
List<SqlParameter> listStr = new List<SqlParameter>();
|
||||
listStr.Add(new SqlParameter("@ProjectId", BLL.ProjectService.GetCLProjectCodeByProjectId(this.CurrUser.LoginProjectId)));
|
||||
if (!string.IsNullOrEmpty(txtC1.Text.Trim()))
|
||||
{
|
||||
strSql += " AND c.C1 like @C1";
|
||||
listStr.Add(new SqlParameter("@C1", "%" + txtC1.Text.Trim() + "%"));
|
||||
}
|
||||
if (!string.IsNullOrEmpty(txtC2.Text.Trim()))
|
||||
{
|
||||
strSql += " AND c.C2 like @C2";
|
||||
listStr.Add(new SqlParameter("@C2", "%" + txtC2.Text.Trim() + "%"));
|
||||
}
|
||||
if (!string.IsNullOrEmpty(txtC3.Text.Trim()))
|
||||
{
|
||||
strSql += " AND c.C3 like @C3";
|
||||
listStr.Add(new SqlParameter("@C3", "%" + txtC3.Text.Trim() + "%"));
|
||||
}
|
||||
if (!string.IsNullOrEmpty(txtC4.Text.Trim()))
|
||||
{
|
||||
strSql += " AND c.C4 like @C4";
|
||||
listStr.Add(new SqlParameter("@C4", "%" + txtC4.Text.Trim() + "%"));
|
||||
}
|
||||
if (!string.IsNullOrEmpty(txtC6.Text.Trim()))
|
||||
{
|
||||
strSql += " AND c.C6 like @C6";
|
||||
listStr.Add(new SqlParameter("@C6", "%" + txtC6.Text.Trim() + "%"));
|
||||
}
|
||||
if (!string.IsNullOrEmpty(txtC7.Text.Trim()))
|
||||
{
|
||||
strSql += " AND c.C7 like @C7";
|
||||
listStr.Add(new SqlParameter("@C7", "%" + txtC7.Text.Trim() + "%"));
|
||||
}
|
||||
if (!string.IsNullOrEmpty(txtC8.Text.Trim()))
|
||||
{
|
||||
strSql += " AND c.C8 like @C8";
|
||||
listStr.Add(new SqlParameter("@C8", "%" + txtC8.Text.Trim() + "%"));
|
||||
}
|
||||
if (!string.IsNullOrEmpty(txtC9.Text.Trim()))
|
||||
{
|
||||
strSql += " AND c.C9 like @C9";
|
||||
listStr.Add(new SqlParameter("@C9", "%" + txtC9.Text.Trim() + "%"));
|
||||
}
|
||||
if (!string.IsNullOrEmpty(txtC13.Text.Trim()))
|
||||
{
|
||||
strSql += " AND c.C13 like @C13";
|
||||
listStr.Add(new SqlParameter("@C13", "%" + txtC13.Text.Trim() + "%"));
|
||||
}
|
||||
if (!string.IsNullOrEmpty(txtC14.Text.Trim()))
|
||||
{
|
||||
strSql += " AND c.C14 like @C14";
|
||||
listStr.Add(new SqlParameter("@C14", "%" + txtC14.Text.Trim() + "%"));
|
||||
}
|
||||
if (!string.IsNullOrEmpty(txtC15.Text.Trim()))
|
||||
{
|
||||
strSql += " AND c.C15 like @C15";
|
||||
listStr.Add(new SqlParameter("@C15", "%" + txtC15.Text.Trim() + "%"));
|
||||
}
|
||||
if (!string.IsNullOrEmpty(txtC21.Text.Trim()))
|
||||
{
|
||||
strSql += " AND c.C21 like @C21";
|
||||
listStr.Add(new SqlParameter("@C21", "%" + txtC21.Text.Trim() + "%"));
|
||||
}
|
||||
if (!string.IsNullOrEmpty(txtC22.Text.Trim()))
|
||||
{
|
||||
strSql += " AND c.C22 like @C22";
|
||||
listStr.Add(new SqlParameter("@C22", "%" + txtC22.Text.Trim() + "%"));
|
||||
}
|
||||
if (!string.IsNullOrEmpty(txtC23.Text.Trim()))
|
||||
{
|
||||
strSql += " AND c.C23 like @C23";
|
||||
listStr.Add(new SqlParameter("@C23", "%" + txtC23.Text.Trim() + "%"));
|
||||
}
|
||||
if (!string.IsNullOrEmpty(txtC24.Text.Trim()))
|
||||
{
|
||||
strSql += " AND c.C24 like @C24";
|
||||
listStr.Add(new SqlParameter("@C24", "%" + txtC24.Text.Trim() + "%"));
|
||||
}
|
||||
if (!string.IsNullOrEmpty(txtC26.Text.Trim()))
|
||||
{
|
||||
strSql += " AND c.C26 like @C26";
|
||||
listStr.Add(new SqlParameter("@C26", "%" + txtC26.Text.Trim() + "%"));
|
||||
}
|
||||
if (!string.IsNullOrEmpty(txtC29.Text.Trim()))
|
||||
{
|
||||
strSql += " AND c.C29 like @C29";
|
||||
listStr.Add(new SqlParameter("@C29", "%" + txtC29.Text.Trim() + "%"));
|
||||
}
|
||||
strSql += " order by c.C28 desc";
|
||||
SqlParameter[] parameter = listStr.ToArray();
|
||||
DataTable tb = SQLHelper.GetDataTableRunText(strSql, parameter);
|
||||
Grid1.RecordCount = tb.Rows.Count;
|
||||
@@ -82,6 +168,32 @@ namespace FineUIPro.Web.CLGL
|
||||
Grid1.DataBind();
|
||||
}
|
||||
|
||||
protected void btnQuery_Click(object sender, EventArgs e)
|
||||
{
|
||||
BindGrid();
|
||||
}
|
||||
protected void btnRset_Click(object sender, EventArgs e)
|
||||
{
|
||||
txtC1.Text = "";
|
||||
txtC2.Text = "";
|
||||
txtC3.Text = "";
|
||||
txtC4.Text = "";
|
||||
txtC6.Text = "";
|
||||
txtC7.Text = "";
|
||||
txtC8.Text = "";
|
||||
txtC9.Text = "";
|
||||
txtC13.Text = "";
|
||||
txtC14.Text = "";
|
||||
txtC15.Text = "";
|
||||
txtC21.Text = "";
|
||||
txtC22.Text = "";
|
||||
txtC23.Text = "";
|
||||
txtC24.Text = "";
|
||||
txtC26.Text = "";
|
||||
txtC29.Text = "";
|
||||
BindGrid();
|
||||
}
|
||||
|
||||
#region 分页
|
||||
/// <summary>
|
||||
/// 分页
|
||||
|
||||
Reference in New Issue
Block a user