using System; using System.Collections.Generic; using System.Data; using System.Data.SqlClient; using System.Linq; using BLL; using Newtonsoft.Json.Linq; namespace FineUIPro.Web.HotProcessHard { public partial class HardFeedback : PageBase { #region 定义项 /// /// 硬度委托主键 /// public string HardTrustID { get { return (string)ViewState["HardTrustID"]; } set { ViewState["HardTrustID"] = value; } } #endregion #region 加载页面 /// /// 加载页面 /// /// /// protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { this.ddlPageSize.SelectedValue = this.Grid1.PageSize.ToString(); this.HardTrustID = string.Empty; this.InitTreeMenu();//加载树 } } #endregion #region 加载树 /// /// 加载树 /// private void InitTreeMenu() { this.tvControlItem.Nodes.Clear(); TreeNode rootNode = new TreeNode(); var project = BLL.Base_ProjectService.GetProjectByProjectId(this.CurrUser.LoginProjectId); rootNode.Text = "[" + project.ProjectCode + "]" + project.ProjectName; rootNode.NodeID = "0"; rootNode.Expanded = true; this.tvControlItem.Nodes.Add(rootNode); var trusts = (from x in Funs.DB.Hard_Trust where x.ProjectId == this.CurrUser.LoginProjectId select x).ToList(); this.BindNodes(rootNode, trusts); } /// /// 绑定树节点 /// /// private void BindNodes(TreeNode node, List trusts) { foreach (var item in trusts) { TreeNode newNode = new TreeNode(); newNode.Text = item.HardTrustNo; newNode.NodeID = item.HardTrustID; newNode.ToolTip = item.HardTrustNo; newNode.CommandName = Resources.Lan.RequestSheetNumber; newNode.EnableClickEvent = true; node.Nodes.Add(newNode); } } #endregion #region 点击TreeView /// /// 点击TreeView /// /// /// protected void tvControlItem_NodeCommand(object sender, TreeCommandEventArgs e) { this.HardTrustID = tvControlItem.SelectedNodeID; this.BindGrid(); } #endregion #region 数据绑定 protected void TextBox_TextChanged(object sender, EventArgs e) { this.BindGrid(); } /// /// 数据绑定 /// private void BindGrid() { this.SetTextTemp(); this.PageInfoLoad(); ///页面输入提交信息 string strSql = string.Empty; List listStr = new List(); if (this.tvControlItem.SelectedNode.CommandName == Resources.Lan.RequestSheetNumber) { strSql = @"SELECT * " + @" FROM dbo.View_Hard_TrustItem AS Trust" + @" WHERE Trust.HardTrustID=@HardTrustID"; listStr.Add(new SqlParameter("@HardTrustID", this.HardTrustID)); } if (!string.IsNullOrEmpty(this.txtPipelineCode.Text.Trim())) { strSql += @" and Trust.PipelineCode like @PipelineCode "; listStr.Add(new SqlParameter("@PipelineCode", "%" + this.txtPipelineCode.Text.Trim() + "%")); } if (!string.IsNullOrEmpty(this.txtWeldJointCode.Text.Trim())) { strSql += @" and Trust.WeldJointCode like @WeldJointCode "; listStr.Add(new SqlParameter("@WeldJointCode", "%" + this.txtWeldJointCode.Text.Trim() + "%")); } SqlParameter[] parameter = listStr.ToArray(); DataTable tb = SQLHelper.GetDataTableRunText(strSql, parameter); // 2.获取当前分页数据 //var table = this.GetPagedDataTable(Grid1, tb1); Grid1.RecordCount = tb.Rows.Count; tb = GetFilteredTable(Grid1.FilteredData, tb); var table = this.GetPagedDataTable(Grid1, tb); Grid1.DataSource = table; Grid1.DataBind(); //是否合格的绑定 for (int i = 0; i < this.Grid1.Rows.Count; i++) { string hardTrustItemId = this.Grid1.Rows[i].DataKeys[0].ToString(); if (hardTrustItemId != null) { var hardFeedback = BLL.Hard_TrustItemService.GetHardTrustItemById(hardTrustItemId); if (hardFeedback.IsPass == true) { this.Grid1.Rows[i].Values[8] = BLL.Const._True;//合格 } else if (hardFeedback.IsPass == false) { this.Grid1.Rows[i].Values[9] = BLL.Const._True;//不合格 } } } } #region 加载页面输入提交信息 /// /// 加载页面输入提交信息 /// private void PageInfoLoad() { this.SimpleForm1.Reset(); ///重置所有字段 var trust = Funs.DB.View_Hard_Trust.FirstOrDefault(x => x.HardTrustID == this.HardTrustID); if (trust != null) { this.txtHardTrustNo.Text = trust.HardTrustNo; this.txtHardTrustUnit.Text = trust.HardTrustUnitName; this.txtInstallation.Text = trust.InstallationName; this.txtCheckUnit.Text = trust.CheckUnitName; this.txtHardTrustMan.Text = trust.HardTrustManName; if (trust.HardTrustDate != null) { this.txtHardTrustDate.Text = string.Format("{0:yyyy-MM-dd}", trust.HardTrustDate); } this.txtHardnessMethod.Text = trust.HardnessMethod; this.txtHardnessRate.Text = trust.HardnessRate; this.txtStandards.Text = trust.Standards; this.txtInspectionNum.Text = trust.InspectionNum; this.txtCheckNum.Text = trust.CheckNum; this.txtTestWeldNum.Text = trust.TestWeldNum; this.txtSendee.Text = trust.Sendee; this.txtDetectionTime.Text = trust.DetectionTimeStr; } } #endregion /// /// 情况 /// private void SetTextTemp() { this.txtHardTrustNo.Text = string.Empty; this.txtHardTrustUnit.Text = string.Empty; this.txtInstallation.Text = string.Empty; this.txtCheckUnit.Text = string.Empty; this.txtHardTrustMan.Text = string.Empty; this.txtHardTrustDate.Text = string.Empty; this.txtHardnessMethod.Text = string.Empty; this.txtHardnessRate.Text = string.Empty; this.txtStandards.Text = string.Empty; this.txtInspectionNum.Text = string.Empty; this.txtCheckNum.Text = string.Empty; this.txtTestWeldNum.Text = string.Empty; this.txtSendee.Text = string.Empty; this.txtDetectionTime.Text = string.Empty; } #endregion #region 分页排序 #region 页索引改变事件 /// /// 页索引改变事件 /// /// /// protected void Grid1_PageIndexChange(object sender, GridPageEventArgs e) { BindGrid(); } #endregion #region 排序 /// /// 排序 /// /// /// protected void Grid1_Sort(object sender, GridSortEventArgs e) { BindGrid(); } #endregion #region 分页选择下拉改变事件 /// /// 分页选择下拉改变事件 /// /// /// protected void ddlPageSize_SelectedIndexChanged(object sender, EventArgs e) { Grid1.PageSize = Convert.ToInt32(ddlPageSize.SelectedValue); BindGrid(); } #endregion #endregion #region 提交 /// /// 提交反馈结果 /// /// /// protected void btnSave_Click(object sender, EventArgs e) { if (CommonService.GetAllButtonPowerList(this.CurrUser.LoginProjectId, this.CurrUser.UserId, Const.HJGL_HardFeedbackMenuId, Const.BtnSave)) { JArray ModifiedData = Grid1.GetMergedData(); foreach (JObject modifiedRow in ModifiedData) { int index = modifiedRow.Value("index"); JObject values = modifiedRow.Value("values"); CheckBoxField cbIsPass = (CheckBoxField)Grid1.FindColumn("IsPass"); CheckBoxField cbIsNotPass = (CheckBoxField)Grid1.FindColumn("IsNotPass"); string hardTrustItemId = Grid1.DataKeys[index][0].ToString(); var hardFeedback = BLL.Hard_TrustItemService.GetHardTrustItemById(hardTrustItemId); if (hardFeedback != null) { bool newIsPass = cbIsPass.GetCheckedState(index); bool newIsNotPass = cbIsNotPass.GetCheckedState(index); var hotProessTrustItem = Funs.DB.HotProess_TrustItem.FirstOrDefault(x => x.WeldJointId == hardFeedback.WeldJointId && x.HotProessTrustItemId == hardFeedback.HotProessTrustItemId); if (newIsPass) { hardFeedback.IsPass = true; if (hotProessTrustItem != null) //更新热处理委托硬度不合格记录id为空 { hotProessTrustItem.HardTrustItemID = null; } hotProessTrustItem.IsPass = true; } else if (newIsNotPass) { hardFeedback.IsPass = false; if (hotProessTrustItem != null) //更新热处理委托硬度不合格记录id值 { hotProessTrustItem.HardTrustItemID = hardFeedback.HardTrustItemID; } hotProessTrustItem.IsPass = false; } else { hardFeedback.IsPass = null; hotProessTrustItem.HardTrustItemID = null; hotProessTrustItem.IsPass = null; } BLL.HotProessTrustItemService.UpdateHotProessTrustItem(hotProessTrustItem); BLL.Hard_TrustItemService.UpdateHardTrustItem(hardFeedback); } } ShowNotify(Resources.Lan.SubmitSuccessful, MessageBoxIcon.Success); } else { Alert.ShowInTop(Resources.Lan.NoPrivilegePrompt, MessageBoxIcon.Warning); } } #endregion #region 关闭弹出窗口及刷新页面 /// /// 关闭弹出窗口 /// /// /// protected void Window1_Close(object sender, WindowCloseEventArgs e) { this.HardTrustID = this.hdHardTrustID.Text; this.BindGrid(); //this.InitTreeMenu(); this.hdHardTrustID.Text = string.Empty; } /// /// 查询 /// /// /// protected void Tree_TextChanged(object sender, EventArgs e) { this.InitTreeMenu(); //this.BindGrid(); } #endregion } }