| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295 |
- /*******************************************************************************
- * Copyright(c) 2015 DongkeSoft All rights reserved. / Confidential
- * 类的信息:
- * 1.程序名称:F_MST_1301.cs
- * 2.功能描述:装具管理
- * 编辑履历:
- * 作者 日期 版本 修改内容
- * 冯林勇 2022/07/25 1.00 新建
- *******************************************************************************/
- using Dongke.IBOSS.PRD.Basics.BaseResources;
- using Dongke.IBOSS.PRD.Basics.DockPanel;
- using Dongke.IBOSS.PRD.Client.CommonModule;
- using Dongke.IBOSS.PRD.Client.Controls;
- using Dongke.IBOSS.PRD.Client.DataModels;
- using Dongke.IBOSS.PRD.WCF.DataModels;
- using Dongke.IBOSS.PRD.WCF.Proxys;
- using Dongke.WinForm.Controls;
- using System;
- using System.Data;
- using System.Windows.Forms;
- namespace Dongke.IBOSS.PRD.Client.PCModule
- {
- /// <summary>
- /// 装具管理
- /// </summary>
- public partial class F_MST_1301 : DockPanelBase
- {
- #region 成员变量
- // 单例模式
- private static F_MST_1301 _instance;
- // 正在查询
- private bool _isSearching = false;
- private DataSet DataSource;
- private int _selectedRowIndex;
- #endregion
- #region 构造函数
- public F_MST_1301()
- {
- InitializeComponent();
- this.tsbtnAdd.Text = ButtonText.TSBTN_ADD;
- this.tsbtnEdit.Text = ButtonText.TSBTN_EDIT;
- this.tsbtnAdaptive.Text = ButtonText.TSBTN_ADAPTIVE;
- this.tsbtnClose.Text = ButtonText.TSBTN_CLOSE;
- this.btnSearch.Text = ButtonText.BTN_SEARCH;
- this.btnClearCondition.Text = ButtonText.BTN_CLEARCONDITION;
- }
- #endregion
- #region 单例模式
- /// <summary>
- /// 单例模式,防止重复创建窗体
- /// </summary>
- public static F_MST_1301 Instance
- {
- get
- {
- if (_instance == null)
- {
- _instance = new F_MST_1301();
- }
- return _instance;
- }
- }
- #endregion
- #region 事件
- /// <summary>
- /// 搜索按钮事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void btnSearch_Click(object sender, EventArgs e)
- {
- try
- {
- this._isSearching = true;
- this.dgvEntrucKing.DataSource = null;
- this.dgvEntrucKingDetail.DataSource = null;
- this._selectedRowIndex = 0;
- // 记录当前选中行
- int selectRowIndex = this._selectedRowIndex;
- this.DataSource = this.GetSearchData();
- if (this.DataSource != null)
- {
- // 控制明细不查询
- this.Tag = false;
- this.dgvEntrucKing.DataSource = this.DataSource.Tables[0];
- this.dgvEntrucKing.Rows[selectRowIndex].Selected = true;
- this.dgvEntrucKing.CurrentCell = this.dgvEntrucKing.Rows[selectRowIndex].Cells["EntruckingCode"];
- this.Tag = true;
- dgvEntrucKing_SelectionChanged(null, null);
- this.dgvEntrucKing.Focus();
- }
- else
- {
- // 提示未查找到数据
- MessageBox.Show(Messages.MSG_CMN_I002, this.Text,
- MessageBoxButtons.OK, MessageBoxIcon.Information);
- }
- this._isSearching = false;
- }
- catch (Exception ex)
- {
- this.btnSearch.Enabled = true;
- this.btnClearCondition.Enabled = true;
- // 对异常进行共通处理
- ExceptionManager.HandleEventException(this.ToString(),
- System.Reflection.MethodBase.GetCurrentMethod().Name, this.Text, ex);
- }
- }
- /// <summary>
- /// 总单选择事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void dgvEntrucKing_SelectionChanged(object sender, EventArgs e)
- {
- try
- {
- // 在绑定总表时 不查询明细
- if (!Convert.ToBoolean(this.Tag)
- || this.dgvEntrucKing.CurrentCell == null)
- {
- return;
- }
- // 选中行时查询明细
- else
- {
- this._selectedRowIndex = this.dgvEntrucKing.CurrentCell.RowIndex;
- dgvEntrucKingDetail.DataSource = null;
- string entruckingCode = this.dgvEntrucKing.Rows[_selectedRowIndex].Cells["EntruckingCode"].Value.ToString();
- ClientRequestEntity cre = new ClientRequestEntity();
- cre.NameSpace = "F_MST_1301";
- cre.Name = "GetEntruckingInfoDetail";
- cre.Properties["EntruckingCode"] = entruckingCode;
- ServiceResultEntity sre = SystemModuleProxy.Service.DoRequest(cre);
- if (sre.Status == Basics.BaseResources.Constant.ServiceResultStatus.Success)
- {
- if (sre.Data != null && sre.Data.Tables.Count > 0 && sre.Data.Tables[0].Rows.Count > 0)
- {
- this.dgvEntrucKingDetail.DataSource = sre.Data.Tables[0];
- }
- else
- {
- this.dgvEntrucKingDetail.DataSource = null;
- }
- }
- }
- }
- catch (Exception ex)
- {
- // 对异常进行共通处理
- ExceptionManager.HandleEventException(this.ToString(),
- System.Reflection.MethodBase.GetCurrentMethod().Name, this.Text, ex);
- }
- finally
- {
- this.dgvEntrucKing.Enabled = true;
- }
- }
- /// <summary>
- /// 清空按钮事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void btnClearCondition_Click(object sender, EventArgs e)
- {
- this.txtEntruckingCode.Clear();
- }
- /// <summary>
- /// 新增按钮事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void tsbtnAddUser_Click(object sender, EventArgs e)
- {
- try
- {
- F_MST_1302 frmFPC1302 = new F_MST_1302(null);
- DialogResult dialogresult = frmFPC1302.ShowDialog();
- btnSearch_Click(sender, null);
- }
- catch (Exception ex)
- {
- // 对异常进行共通处理
- ExceptionManager.HandleEventException(this.ToString(),
- System.Reflection.MethodBase.GetCurrentMethod().Name, this.Text, ex);
- }
- }
- /// <summary>
- /// 编辑按钮事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void tsbtnEditUser_Click(object sender, EventArgs e)
- {
- try
- {
- if (this.dgvEntrucKing.SelectedRows.Count != 0)
- {
- string entruckingCode = this.dgvEntrucKing.SelectedRows[0].Cells["EntruckingCode"].Value.ToString();
- F_MST_1302 frmFPC1302 = new F_MST_1302(entruckingCode);
- DialogResult dialogresult = frmFPC1302.ShowDialog();
- btnSearch_Click(sender, null);
- }
- }
- catch (Exception ex)
- {
- // 对异常进行共通处理
- ExceptionManager.HandleEventException(this.ToString(),
- System.Reflection.MethodBase.GetCurrentMethod().Name, this.Text, ex);
- }
- }
- /// <summary>
- /// 窗体加载事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void F_MST_1301_Load(object sender, EventArgs e)
- {
- // 按钮权限控制
- FormPermissionManager.FormPermissionControl(this.Name, this,
- LogInUserInfo.CurrentUser.CurrentUserEntity.UserRightData,
- LogInUserInfo.CurrentUser.CurrentUserEntity.FunctionData);
- }
- /// <summary>
- /// 自适应列宽
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void tsbtnAdaptive_Click(object sender, EventArgs e)
- {
- this.dgvEntrucKing.AutoResizeColumns(DataGridViewAutoSizeColumnsMode.AllCells);
- }
- /// <summary>
- /// 关闭按钮事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void tsbtnClose_Click(object sender, EventArgs e)
- {
- this.Close();
- }
- /// <summary>
- /// 释放窗体
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void F_MST_1301_FormClosed(object sender, FormClosedEventArgs e)
- {
- _instance = null;
- }
- #endregion
- #region 私有方法
- /// <summary>
- /// 根据界面查询条件获取数据集
- /// </summary>
- private DataSet GetSearchData()
- {
- try
- {
- ClientRequestEntity cre = new ClientRequestEntity();
- cre.NameSpace = "F_MST_1301";
- cre.Name = "GetEntruckingInfo";
- cre.Properties["EntruckingCode"] = txtEntruckingCode.Text;
- ServiceResultEntity sre = SystemModuleProxy.Service.DoRequest(cre);
- if (sre.Status == Basics.BaseResources.Constant.ServiceResultStatus.Success)
- {
- return sre.Data;
- }
- return null;
- }
- catch (Exception ex)
- {
- throw ex;
- }
- }
- #endregion
- }
- }
|