修改入库申请单入库后备注清空

This commit is contained in:
2025-03-07 10:55:46 +08:00
parent abde789894
commit 569656b1e1
6 changed files with 317 additions and 213 deletions
@@ -12,6 +12,12 @@ namespace FineUIPro.Web.CLGL
{
public partial class ArrivalStatistics : PageBase
{
#region Methods
protected void btnSearch_Click(object sender, EventArgs e)
{
BindGrid();
}
protected void Page_Load(object sender, EventArgs e)
{
@@ -20,14 +26,17 @@ namespace FineUIPro.Web.CLGL
drpWarehouse.DataTextField = "Text";
drpWarehouse.DataValueField = "Value";
drpWarehouse.DataSource = BLL.DropListService.HJGL_WarehouseCode();
drpWarehouse.DataBind();
drpWarehouse.DataBind();
this.ddlPageSize.SelectedValue = this.Grid1.PageSize.ToString();
// 绑定表格
// this.BindGrid();
// this.BindGrid();
}
}
#endregion Methods
#region
/// <summary>
/// 绑定数据
/// </summary>
@@ -61,14 +70,14 @@ namespace FineUIPro.Web.CLGL
if (model?.MatchRate < 1 || model?.MatchRate == null)
{
Grid1.Rows[i].RowCssClass = "red";
}
}
}
#endregion
#endregion
#region GV
/// <summary>
/// 过滤表头
/// </summary>
@@ -79,6 +88,17 @@ namespace FineUIPro.Web.CLGL
// this.BindGrid();
//}
/// <summary>
/// 分页显示条数下拉框
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void ddlPageSize_SelectedIndexChanged(object sender, EventArgs e)
{
this.Grid1.PageSize = Convert.ToInt32(this.ddlPageSize.SelectedValue);
this.BindGrid();
}
/// <summary>
/// 分页
/// </summary>
@@ -101,20 +121,10 @@ namespace FineUIPro.Web.CLGL
this.Grid1.SortField = e.SortField;
this.BindGrid();
}
/// <summary>
/// 分页显示条数下拉框
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void ddlPageSize_SelectedIndexChanged(object sender, EventArgs e)
{
this.Grid1.PageSize = Convert.ToInt32(this.ddlPageSize.SelectedValue);
this.BindGrid();
}
#endregion
#endregion GV
#region
/// <summary>
/// 关闭弹出窗
/// </summary>
@@ -124,11 +134,11 @@ namespace FineUIPro.Web.CLGL
{
BindGrid();
}
#endregion
#endregion
#region
/// 导出按钮
/// </summary>
/// <param name="sender"></param>
@@ -182,11 +192,7 @@ namespace FineUIPro.Web.CLGL
return sb.ToString();
}
#endregion
protected void btnSearch_Click(object sender, EventArgs e)
{
BindGrid();
}
#endregion
}
}