using System; using System.Collections.Generic; using System.Configuration; using System.Drawing; using System.Windows.Forms; using QMAPP.FJC.Entity; using QMAPP.FJC.Entity.Equipment; using QMAPP.ServicesAgent; using QMAPP.WinForm.Common; using QMFrameWork.Common.Serialization; using QMFrameWork.Data; using QMAPP.Entity; namespace QMAPP.WinForm.Forms.Injection { /// /// 模块编号:M11-3 /// 作 用:设备停机维护 /// 作 者:王庆男 /// 编写日期:2015年06月01日 /// public partial class EquipmentMaintainForm : Form { EquipmentMaintain searchModel = new EquipmentMaintain();//查询条件 public EquipmentMaintainForm() { InitializeComponent(); } #region 窗体载入 private void Form_Load(object sender, EventArgs e) { #region 绑定下拉列表 BasicData basicData = new BasicData(); //初始化控件属性 this.DGView.AutoGenerateColumns = false; //加载所有设备下拉列表 this.comMachine.DataSource = basicData.GetMachineInfoList(new string[]{}, true); this.comMachine.DisplayMember = "MACHINENAME"; this.comMachine.ValueMember = "MACHINECODDE"; #endregion //初始化分页 this.pager1.Init(); //加载默认查询条件 SetSearchModel(); BindGirdData(); } #endregion #region 绑定数据 private DataPage BindGirdData() { List recorders = null;//查询结果列表 DataPage dataPage = new DataPage(); //获取前台分页设置信息 dataPage = pager1.DataPage; try { #region 服务查询 QMAPP.ServicesAgent.ServiceAgent agent = ClientContext.GetServiceAgent(); dataPage = agent.InvokeServiceFunction(B9BasicService.EquipmentMaintainBLL_GetList.ToString(), searchModel, dataPage); recorders = JsonConvertHelper.GetDeserialize>(dataPage.Result.ToString()); #endregion this.DGView.DataSource = recorders; this.pager1.DataPage = dataPage; } catch (Exception ex) { throw ex; } return dataPage; } #endregion /// /// 分页事件 /// /// /// private DataPage pager1_EventPaging(Controls.EventPagingArg e) { return BindGirdData(); } /// /// 查询事件 /// /// /// private void tsbSearch_Click(object sender, EventArgs e) { SetSearchModel(); this.pager1.Init(); BindGirdData(); } /// /// 设置查询条件 /// private void SetSearchModel() { searchModel = new EquipmentMaintain(); //设备 if (this.comMachine.SelectedValue != null && string.IsNullOrEmpty(this.comMachine.SelectedValue.ToString().Trim()) == false) { searchModel.MACHINECODDE = this.comMachine.SelectedValue.ToString().Trim(); } //开始时间 if (string.IsNullOrEmpty(this.dtpStart.Text.Trim()) == false) { searchModel.DOWNTIMESTART = Convert.ToDateTime(this.dtpStart.Text); } //结束时间 if (string.IsNullOrEmpty(this.dtpEnd.Text.Trim()) == false) { searchModel.DOWNTIMEEND = Convert.ToDateTime(this.dtpEnd.Text).AddDays(1); } } /// /// 删除 /// /// /// private void tsbDelete_Click(object sender, EventArgs e) { if (this.DGView.SelectedRows.Count <= 0) return; if (MessageBox.Show(Resource1.ConfirmDelete, Resource1.ConfirmTitle, MessageBoxButtons.OKCancel) != DialogResult.OK) return; #region 删除 string selectKey = this.DGView.SelectedRows[0].Cells["Pid"].Value.ToString(); QMAPP.ServicesAgent.ServiceAgent agent = ClientContext.GetServiceAgent(); if (Convert.ToDateTime(this.DGView.SelectedRows[0].Cells["DateEnd"].Value) == DateTime.MinValue)//判断结束时间是否为空 { if (MessageBox.Show(Resource1.ConfirmDeleteMachine, Resource1.ConfirmTitle, MessageBoxButtons.OKCancel) == DialogResult.OK) { //删除并更新 DataResult result = agent.InvokeServiceFunction>(B9BasicService.EquipmentMaintainBLL_DeleteEquipmentMaintainAndUpdateMachine.ToString(), selectKey); MessageBox.Show(result.Msg); if (result.IsSuccess) { BindGirdData(); } } } else { //直接删除 DataResult result = agent.InvokeServiceFunction>(B9BasicService.EquipmentMaintainBLL_Delete.ToString(), selectKey); MessageBox.Show(result.Msg); if (result.IsSuccess) { BindGirdData(); } } #endregion } /// /// 打开维护页面 /// /// /// private void tsbAdd_Click(object sender, EventArgs e) { EquipmentMaintainEditForm editForm = new EquipmentMaintainEditForm(); DialogResult result = editForm.ShowDialog(); if (result == System.Windows.Forms.DialogResult.OK)//判断是否操作成功 { this.pager1.Init(); BindGirdData(); } } /// /// 打开维护页面 /// /// /// private void tsbEdit_Click(object sender, EventArgs e) { if (this.DGView.SelectedRows.Count > 0) { string selectKey = this.DGView.SelectedRows[0].Cells["Pid"].Value.ToString(); EquipmentMaintainEditForm editForm = new EquipmentMaintainEditForm(selectKey); DialogResult result = editForm.ShowDialog(); if (result == System.Windows.Forms.DialogResult.OK)//判断是否操作成功 { this.pager1.Init(); BindGirdData(); } } } /// /// 行序号 /// /// /// private void DG_RowPostPaint(object sender, DataGridViewRowPostPaintEventArgs e) { Rectangle rectangle = new Rectangle(e.RowBounds.Location.X, e.RowBounds.Location.Y, this.DGView.RowHeadersWidth - 4, e.RowBounds.Height); TextRenderer.DrawText(e.Graphics, (e.RowIndex + 1).ToString(), new Font("宋体", 12, FontStyle.Bold), rectangle, this.DGView.RowHeadersDefaultCellStyle.ForeColor, TextFormatFlags.VerticalCenter | TextFormatFlags.Right); } } }