| | |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Data; |
| | | using System.Threading.Tasks; |
| | | using System.Windows.Forms; |
| | | using DevExpress.XtraEditors; |
| | | using DevExpress.XtraEditors; |
| | | using DevExpress.XtraGrid.Views.Grid; |
| | | using Gs.DevApp.Entity; |
| | | using Gs.DevApp.ToolBox; |
| | |
| | | using MES.Service.Modes; |
| | | using Newtonsoft.Json; |
| | | using Newtonsoft.Json.Linq; |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Data; |
| | | using System.Threading.Tasks; |
| | | using System.Windows.Forms; |
| | | |
| | | |
| | | namespace Gs.DevApp.DevFrm.QC |
| | |
| | | { |
| | | private List<FilterEntity> _filterList = new List<FilterEntity>(); |
| | | private readonly string _webServiceName = "MesQmCheckitemManager/"; |
| | | public string strType = ""; |
| | | public string strType = "";//iqc type |
| | | public decimal dfValue = 1; //iqc的样品数量默认5,否则1 |
| | | private string dftSsampleSizeName = "GB/T2828.1-2012/ISO";//默认 |
| | | private string dftSsampleSizeNo = "GB/T2828.1-2012/ISO";//默认 |
| | | private string dftFcheckLevel = "2.一般检验水平(II)";//默认检验水平 |
| | | private string dftFacLevel = "0.015---(AQL_0_0015)";//默认接收水平 |
| | | public Jyxm(string _strType) |
| | | { |
| | | InitializeComponent(); |
| | | strType = _strType; |
| | | |
| | | } |
| | | protected override void OnCreateControl() |
| | | { |
| | |
| | | toolBarMenu1.btnEscClick += ToolBarMenu1_btnEscClick; |
| | | toolBarMenu1.btnQueryClick += ToolBarMenu1_btnQueryClick; |
| | | toolBarMenu1.btnChkClick += ToolBarMenu1_btnChkClick; |
| | | toolBarMenu1.btnPiZhunClick += ToolBarMenu1_btnPiZhunClick; |
| | | this.toolBarMenu1.getXmlConfig(); |
| | | toolBarMenu1.btnFChkClick += ToolBarMenu1_btnFChkClick; |
| | | toolBarMenu1.xlsInService = "XlsInItemJyxm&" + strType; |
| | | //类型,iqc,ipqc巡检,ipqc首检查,fqc,iqc的样品值默认为5,其它为1 |
| | | txt_ftype.Text = strType; |
| | | if (strType == QcSeason.iqc.ToString()) |
| | | dfValue = 5; |
| | | //如果是ipqc巡检,显示工位 |
| | | if (strType != QcSeason.ipqc巡检.ToString()) |
| | | { |
| | | gvMx1.Columns["stationName"].Visible = false; |
| | | } |
| | | //如果是ipqc首检,显示认证 |
| | | if (strType != QcSeason.ipqc首检.ToString()) |
| | | { |
| | | gvMx1.Columns["isRzxx"].Visible = false; |
| | | } |
| | | //新行初始值 |
| | | this.gvMx1.InitNewRow += (s, e) => |
| | | { |
| | | int newIndex = gvMx1.DataRowCount + 1; |
| | | this.gvMx1.SetRowCellValue(e.RowHandle, "ypsl", dfValue); |
| | | this.gvMx1.SetRowCellValue(e.RowHandle, "forder", newIndex); |
| | | this.gvMx1.SetRowCellValue(e.RowHandle, "sampleSizeName", dftSsampleSizeName); |
| | | this.gvMx1.SetRowCellValue(e.RowHandle, "sampleSizeNo", dftSsampleSizeNo); |
| | | this.gvMx1.SetRowCellValue(e.RowHandle, "facLevel", dftFacLevel); |
| | | this.gvMx1.SetRowCellValue(e.RowHandle, "fcheckLevel", dftFcheckLevel); |
| | | }; |
| | | this.toolBarMenu1.getXmlConfig(); |
| | | Form parentForm = this.FindForm(); |
| | | Gs.DevApp.ToolBox.UtilityHelper.SetGridViewParameterMx(gvMx1); |
| | | Gs.DevApp.ToolBox.UtilityHelper.SetGridViewParameterMx(gvMx1, tips); |
| | | Gs.DevApp.ToolBox.UtilityHelper.SetGridViewParameter(gridView1, picCheckBox, parentForm, "foneChecked", "", (value) => |
| | | { |
| | | Gs.DevApp.ToolBox.UtilityHelper.JumpTab(xtraTabControl1, 0); |
| | | }); |
| | | }, tips); |
| | | Gs.DevApp.ToolBox.UtilityHelper.SetTabParameter(gridView1, xtraTabControl1, pageBar1, (value) => |
| | | { |
| | | getModel(value); |
| | | }, (value) => |
| | | { |
| | | getPageList(this.pageBar1.CurrentPage); |
| | | }); |
| | | }, lbGuid); |
| | | getPageList(1); |
| | | pageBar1.PagerEvent += PageBar1_PagerEvent; |
| | | _setIno(); |
| | | btnSelect.Click += (s, e) => |
| | | btnCopy.Click += (s, e) => |
| | | { |
| | | var frm = new SelectCheckDt("jyxm"); |
| | | frm.UpdateParent += (ss, ee) => |
| | | if ((lbGuid.Text.Trim().Length < 10)) |
| | | { |
| | | var lst = ee.DynamicList; |
| | | var json = JsonConvert.SerializeObject(lst); |
| | | DataTable _newTable = (DataTable)JsonConvert.DeserializeObject(json, (typeof(DataTable))); |
| | | DataTable _oldTable = (DataTable)gridControl2.DataSource; |
| | | DataRow[] sourceRows = _newTable.Select(); |
| | | for (int i = 0; i < sourceRows.Length; i++) |
| | | { |
| | | _oldTable.ImportRow(sourceRows[i]); |
| | | } |
| | | gridControl2.BindingContext = new BindingContext(); |
| | | gridControl2.DataSource = _oldTable; |
| | | gridControl2.ForceInitialize(); |
| | | }; |
| | | Gs.DevApp.ToolBox.MsgHelper.ShowInformation("请先保存当前信息!"); |
| | | return; |
| | | } |
| | | if ((txt_foneChecked.Checked == false)) |
| | | { |
| | | Gs.DevApp.ToolBox.MsgHelper.ShowInformation("该项目未审核,暂不能复制到其它物料!"); |
| | | return; |
| | | } |
| | | JyxmShowCopy frm = new JyxmShowCopy(lbGuid.Text.Trim(), strType); |
| | | frm.ShowDialog(); |
| | | }; |
| | | btnSave.Click += BtnSave_Click; |
| | | |
| | | } |
| | | |
| | | |
| | | |
| | | private void GridView1_ColumnFilterChanged(object sender, EventArgs e) |
| | | { |
| | | Gs.DevApp.ToolBox.UtilityHelper.GetDilter(gridView1.Columns, gridView1); |
| | | _filterList = Gs.DevApp.ToolBox.UtilityHelper.GetDilter(gridView1.Columns, gridView1); |
| | | Task.Delay(100); |
| | | getPageList(1); |
| | | } |
| | |
| | | /// <param name="e"></param> |
| | | private void ToolBarMenu1_btnQueryClick(object sender, EventArgs e) |
| | | { |
| | | Form parentForm; |
| | | if (this.Parent is Form) |
| | | parentForm = this.Parent as Form; |
| | | else |
| | | parentForm = this.Parent.Parent as Form; |
| | | gridView1.ColumnFilterChanged -= GridView1_ColumnFilterChanged; |
| | | gridView1.ActiveFilter.Clear(); |
| | | gridView1.ColumnFilterChanged += GridView1_ColumnFilterChanged; |
| | | var frm = new ShowFilter(gridView1.Columns, _filterList); |
| | | var frm = new ShowFilter(gridView1.Columns, _filterList, parentForm.GetType().FullName); |
| | | frm.UpdateParent += Frm_UpdateParent; |
| | | frm.ShowDialog(); |
| | | } |
| | |
| | | _filterList = e.FilterList; |
| | | getPageList(1); |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 批准 |
| | | /// 反审核 |
| | | /// </summary> |
| | | /// <param name="sender"></param> |
| | | /// <param name="e"></param> |
| | | private void ToolBarMenu1_btnPiZhunClick(object sender, EventArgs e) |
| | | /// <exception cref="NotImplementedException"></exception> |
| | | private void ToolBarMenu1_btnFChkClick(object sender, EventArgs e) |
| | | { |
| | | _toolCk(2); |
| | | _toolCk(0); |
| | | } |
| | | |
| | | /// <summary> |
| | |
| | | { |
| | | List<DevExpress.XtraGrid.Views.Grid.GridView> gvList = new List<DevExpress.XtraGrid.Views.Grid.GridView>(); |
| | | gvList.Add(gvMx1); |
| | | gvList.Add(gridView2); |
| | | UtilityHelper.ChangeEnableByControl(this.layoutMx1.Controls, true, gvList); |
| | | } |
| | | } |
| | |
| | | Gs.DevApp.ToolBox.UtilityHelper.JumpTab(xtraTabControl1, 4); |
| | | var gridViews = new List<GridView>(); |
| | | gridViews.Add(gvMx1); |
| | | gridViews.Add(gridView2); |
| | | UtilityHelper.CleanValueByControl(this.layoutMx1.Controls, true, gridViews); |
| | | UtilityHelper.SetDefaultTable(gcMx1, gvMx1); |
| | | xtraTabPageCopy.PageEnabled = false; |
| | | } |
| | | |
| | | /// <summary> |
| | |
| | | private void ToolBarMenu1_btnSaveClick(object sender, EventArgs e) |
| | | { |
| | | toolBarMenu1.isSetBtn = false; |
| | | string _ItemId = txt_itemId.GetId(); |
| | | string _ItemId = txt_itemId.EditValue.ToString().Trim(); |
| | | if (string.IsNullOrEmpty(_ItemId)) |
| | | { |
| | | MsgHelper.Warning("请选择物料!"); |
| | |
| | | MsgHelper.ShowError("接受水平不能为空!"); |
| | | return; |
| | | } |
| | | if (string.IsNullOrEmpty(row["ypsl"].ToString())) |
| | | { |
| | | MsgHelper.ShowError("样品数量平不能为空!"); |
| | | return; |
| | | } |
| | | string _Fstand = row["Fstand"].ToString(); |
| | | string _FupAllow = row["FupAllow"].ToString(); |
| | | string _FdownAllow = row["FdownAllow"].ToString(); |
| | | string _isRzxxTxt = row["isRzxx"].ToString(); |
| | | bool _isRzxx = false; |
| | | if (_isRzxxTxt == "1" || _isRzxxTxt.ToUpper() == "true".ToUpper()) |
| | | _isRzxx = true; |
| | | //假如三个都为空通过 |
| | | if (string.IsNullOrEmpty(_Fstand) && string.IsNullOrEmpty(_FupAllow) && string.IsNullOrEmpty(_FdownAllow)) |
| | | { |
| | | |
| | | } |
| | | else |
| | | { |
| | |
| | | Memo = row["memo"].ToString(), |
| | | FupAllow = Gs.DevApp.ToolBox.UtilityHelper.GetDecimal(row["FupAllow"].ToString()), |
| | | FdownAllow = Gs.DevApp.ToolBox.UtilityHelper.GetDecimal(row["FdownAllow"].ToString()), |
| | | FqaType = this.strType, |
| | | ypsl = Gs.DevApp.ToolBox.UtilityHelper.GetDecimal(row["ypsl"].ToString()), |
| | | stationName = row["stationName"].ToString(), |
| | | FcheckType = row["FcheckType"].ToString(), |
| | | isRzxx = _isRzxx, |
| | | }); |
| | | } |
| | | } |
| | |
| | | ItemId = long.Parse(_ItemId), |
| | | Memo = txt_memo.Text.Trim(), |
| | | ItemNo = txt_itemNo.Text.Trim(), |
| | | Ftype = "1", |
| | | Fversion = Gs.DevApp.ToolBox.UtilityHelper.ToLong(txt_fversion.Text.Trim()), |
| | | Ftype = this.strType, |
| | | Fversion = 0, |
| | | list = lst |
| | | }; |
| | | try |
| | |
| | | toolBarMenu1.isSetBtn = true; |
| | | var gridViews = new List<GridView>(); |
| | | gridViews.Add(gvMx1); |
| | | gridViews.Add(gridView2); |
| | | UtilityHelper.ChangeEnableByControl(this.layoutMx1.Controls, false, gridViews); |
| | | toolBarMenu1.currentAction = ""; |
| | | Gs.DevApp.ToolBox.UtilityHelper.JumpTab(xtraTabControl1, 6); |
| | | } |
| | | } |
| | | catch (Exception ex) |
| | |
| | | { |
| | | MsgHelper.ShowError("提示:" + ex.Message); |
| | | } |
| | | |
| | | } |
| | | |
| | | /// <summary> |
| | |
| | | /// <param name="pageSize">每页几条</param> |
| | | private void getPageList(int curPage) |
| | | { |
| | | var _sbSqlWhere = UtilityHelper.GetSearchWhere(_filterList); |
| | | gcMain1.DataSource = null; var _sbSqlWhere = UtilityHelper.GetSearchWhere(_filterList); |
| | | _sbSqlWhere += " and b.guid is not null"; |
| | | _sbSqlWhere += " and a.FTYPE='" + this.strType + "'"; |
| | | var pgq = new PageQueryModel(curPage, this.pageBar1.RowsCount, |
| | | "org.FNumber asc ,b.item_no asc,a.FVERSION desc", "", "", _sbSqlWhere.ToString()); |
| | | var json = JsonConvert.SerializeObject(pgq); |
| | |
| | | { |
| | | gcMain1.DataSource = dt; |
| | | gcMain1.ForceInitialize(); |
| | | gridView1.BestFitColumns(); |
| | | gridView1.BestFitColumns(); Gs.DevApp.ToolBox.UtilityHelper.SetGridLayout(gridView1); |
| | | } |
| | | else |
| | | UtilityHelper.SetDefaultTable(gcMain1, gridView1); |
| | |
| | | MsgHelper.Warning("提示:" + ex.Message); |
| | | } |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 读取实体 |
| | | /// </summary> |
| | | /// <param name="strGuid"></param> |
| | | private void getModel(string strGuid) |
| | | { |
| | | bool isEdit = false; |
| | |
| | | MsgHelper.Warning("请先选择你要操作的行!"); |
| | | return; |
| | | } |
| | | xtraTabPageCopy.PageEnabled = !isEdit; |
| | | var _obj = new |
| | | { |
| | | guid = strGuid //主建 |
| | |
| | | lbGuid.Text = strGuid; |
| | | var gvList = new List<GridView>(); |
| | | gvList.Add(gvMx1); |
| | | UtilityHelper.SetValueByObj(this.layoutMx1.Controls, dy, |
| | | isEdit, gvList); |
| | | UtilityHelper.SetValueByObj(this.layoutMx1.Controls, dy, isEdit, gvList); |
| | | var _job = JObject.Parse(strJson); |
| | | var array = new JArray(); |
| | | foreach (var a in _job["rtnData"]["list"]) array.Add(a); |
| | |
| | | gcMx1.DataSource = dt; |
| | | gcMx1.ForceInitialize(); |
| | | gvMx1.BestFitColumns(); |
| | | Gs.DevApp.ToolBox.UtilityHelper.SetGridLayout(gvMx1); |
| | | } |
| | | else |
| | | { |
| | | UtilityHelper.SetDefaultTable(gcMx1, gvMx1); |
| | | } |
| | | UtilityHelper.SetDefaultTable(gridControl2, gridView2); |
| | | } |
| | | else |
| | | { |
| | |
| | | { |
| | | case -1: |
| | | strMsg = "删除"; |
| | | break; |
| | | case 0: |
| | | strMsg = "反审核"; |
| | | break; |
| | | case 1: |
| | | strMsg = "审核"; |
| | |
| | | _webServiceName + "EditModelSubmit", |
| | | JsonConvert.SerializeObject(_obj)); |
| | | var _rtn = UtilityHelper.ReturnToDynamic(strJson); |
| | | MsgHelper.Warning(_rtn.rtnData.outMsg.ToString()); |
| | | |
| | | if (_inFieldValue < 0 && _rtn.rtnCode > 0) |
| | | { |
| | | if (xtraTabControl1.SelectedTabPageIndex == 0) |
| | | { |
| | | getPageList(this.pageBar1.CurrentPage); |
| | | } |
| | | else |
| | | Gs.DevApp.ToolBox.UtilityHelper.JumpTab(xtraTabControl1, 2); |
| | | } |
| | | if (_rtn.rtnCode > 0 && _rtn.rtnData.outSum * 1 > 0) |
| | | { |
| | | if (xtraTabControl1.SelectedTabPageIndex == 1) |
| | | { |
| | | getModel(lbGuid.Text.Trim()); |
| | | Form parentForm = this.FindForm(); |
| | | UtilityHelper.SetCheckIco(gridView1, "foneChecked", "foneCheckor", "foneCheckdate", picCheckBox, parentForm, _inFieldValue > 0 ? "1" : "0"); |
| | | } |
| | | else |
| | | { |
| | | //注意,这里和其它页面有点不一样 |
| | | getPageList(this.pageBar1.CurrentPage); |
| | | int rowHandle = gridView1.LocateByValue("guid", rowGuid); |
| | | gridView1.FocusedRowHandle = rowHandle; |
| | | } |
| | | int rowHandle = gridView1.LocateByValue(1, gridView1.Columns["guid"], rowGuid); |
| | | gridView1.FocusedRowHandle = rowHandle; |
| | | Form parentForm = this.FindForm(); |
| | | UtilityHelper.SetCheckIco(gridView1, "foneChecked", "foneCheckor", "foneCheckdate", picCheckBox, parentForm, _inFieldValue.ToString()); |
| | | } |
| | | MsgHelper.Warning(_rtn.rtnData.outMsg.ToString()); |
| | | } |
| | | catch (Exception ex) |
| | | { |
| | |
| | | #region 以下为种种下拉 |
| | | private void _setIno() |
| | | { |
| | | this.txt_fSubsidiary.EditChanged += (s, e) => |
| | | txt_itemId.Click += (s, e) => |
| | | { |
| | | string _orgId = txt_fSubsidiary.GetId(); |
| | | if (string.IsNullOrEmpty(_orgId)) |
| | | return; |
| | | txt_itemId.getSuppler(_orgId); |
| | | //txt_gg.Text =""; |
| | | //txt_itemNo.Text = ""; |
| | | }; |
| | | txt_itemId.EditChanged += (s, e) => |
| | | { |
| | | if (!string.IsNullOrEmpty(this.txt_itemId.GetModel())) |
| | | txt_gg.Text = this.txt_itemId.GetModel(); |
| | | if (!string.IsNullOrEmpty(this.txt_itemId.GetCode())) |
| | | txt_itemNo.Text = this.txt_itemId.GetCode(); |
| | | var frm = new JyxmShow(this.strType); |
| | | frm.UpdateParent += (ss, ee) => |
| | | { |
| | | try |
| | | { |
| | | var lst = new List<dynamic>(); |
| | | lst = ee.DynamicList; |
| | | txt_itemId.Text = lst[0].itemId; |
| | | txt_gg.Text = lst[0].itemModel; |
| | | txt_mc.Text = lst[0].itemName; |
| | | txt_itemNo.Text = lst[0].itemNo; |
| | | txt_fSubsidiary.Text = lst[0].fSubsidiary; |
| | | } |
| | | catch (Exception ex) |
| | | { |
| | | MessageBox.Show(ex.Message); |
| | | } |
| | | }; |
| | | frm.ShowDialog(); |
| | | }; |
| | | _getListJyxm(); |
| | | _getListJygj(); |
| | | _getListJybz(); |
| | | _getListJssp(); |
| | | _getListJysp(); |
| | | _getListStation(); |
| | | _getListGroup(); |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 读取检验项目 |
| | | /// </summary> |
| | |
| | | MsgHelper.Warning("提示:" + ex.Message); |
| | | } |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 读取检验工位 |
| | | /// </summary> |
| | | private void _getListStation() |
| | | { |
| | | string _where = " and 1=1 and s_type='工位信息' and pid<>'00000000-0000-0000-0000-000000000000'"; |
| | | var pgq = new PageQueryModel(1, 999999, "a.defect_name", "asc", "", _where); |
| | | var json = JsonConvert.SerializeObject(pgq); |
| | | try |
| | | { |
| | | var strReturn = |
| | | UtilityHelper.HttpPost("", "MesDefectCodeManager/GetListPage", json); |
| | | var dd = UtilityHelper.ReturnToTablePage(strReturn); |
| | | var dt = dd.rtnData.list; |
| | | foreach (DataRow dr in dt.Rows) |
| | | { |
| | | //tlMenu.KeyFieldName = "guid"; |
| | | //tlMenu.ParentFieldName = "pid"; |
| | | rptStation.Items.Add(dr["defectName"].ToString()); |
| | | } |
| | | } |
| | | catch (Exception ex) |
| | | { |
| | | MsgHelper.Warning("提示:" + ex.Message); |
| | | } |
| | | } |
| | | /// <summary> |
| | | /// 读取检验工具 |
| | | /// </summary> |
| | |
| | | foreach (DataRow dr in dt.Rows) |
| | | { |
| | | rptJYBZ.Items.Add((new CboItemEntity(dr["SampleSizeNo"].ToString(), dr["SampleSizeName"].ToString()))); |
| | | //rptJYBZ.Items.Add((new CboItemEntity(dr["SampleSizeNo"].ToString(), dr["SampleSizeName"].ToString()))); |
| | | //string ddddd = dr["SampleSizeName"].ToString(); |
| | | } |
| | | } |
| | | catch (Exception ex) |
| | |
| | | { |
| | | rptJSSP.Items.AddRange(new string[] { |
| | | "0.010---(AQL_0_0010)" |
| | | , "0.015---(AQL_0_0015)" |
| | | , "0.025---(AQL_0_0025)" |
| | | ,"0.015---(AQL_0_0015)" |
| | | ,"0.025---(AQL_0_0025)" |
| | | ,"0.040---(AQL_0_0040)" |
| | | ,"0.065---(AQL_0_0065)" |
| | | ,"0.10---(AQL_0_010)" |
| | |
| | | ,"7.特殊检验水平(S4)" |
| | | }); |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 读取检验水平 |
| | | /// </summary> |
| | | private void _getListGroup() |
| | | { |
| | | rptGroup.Items.AddRange(new string[] { |
| | | "外观" |
| | | ,"颜色" |
| | | ,"尺寸" |
| | | , "关键部件一致性" |
| | | , "品水测试" |
| | | ,"制热性能" |
| | | ,"进水压力" |
| | | ,"电气性能" |
| | | }); |
| | | } |
| | | /// <summary> |
| | | /// 关联检验标准名称 |
| | | /// </summary> |
| | |
| | | gvMx1.SetRowCellValue(dataIndex, "sampleSizeName", _txt); |
| | | } |
| | | } |
| | | /// <summary> |
| | | /// 移出明细 |
| | | /// </summary> |
| | | /// <param name="sender"></param> |
| | | /// <param name="e"></param> |
| | | private void repositoryItemButtonEdit1_ButtonClick(object sender, DevExpress.XtraEditors.Controls.ButtonPressedEventArgs e) |
| | | { |
| | | gvMx1.CloseEditor(); |
| | |
| | | } |
| | | } |
| | | #endregion |
| | | /// <summary> |
| | | /// 删除复制项 |
| | | /// </summary> |
| | | /// <param name="sender"></param> |
| | | /// <param name="e"></param> |
| | | private void repositoryItemButtonEdit3_ButtonClick(object sender, DevExpress.XtraEditors.Controls.ButtonPressedEventArgs e) |
| | | { |
| | | gridView2.CloseEditor(); |
| | | gridView2.UpdateCurrentRow(); |
| | | var rowhandle = gridView2.FocusedRowHandle; |
| | | if (rowhandle < 0) |
| | | return; |
| | | if (e.Button.Index == 0) |
| | | { |
| | | var dr = gridView2.GetDataRow(rowhandle); |
| | | if (!MsgHelper.AskQuestion("你选择了1条数据,确定删除吗?")) |
| | | return; |
| | | gridView2.DeleteRow(rowhandle); |
| | | return; |
| | | } |
| | | } |
| | | /// <summary> |
| | | /// 提交物料复制 |
| | | /// </summary> |
| | | /// <param name="sender"></param> |
| | | /// <param name="e"></param> |
| | | /// <exception cref="NotImplementedException"></exception> |
| | | private void BtnSave_Click(object sender, EventArgs e) |
| | | { |
| | | int _rows = gridView2.RowCount; |
| | | if (_rows <= 0) |
| | | { |
| | | MsgHelper.ShowInformation("请选择你需要复制的物料!"); |
| | | return; |
| | | } |
| | | |
| | | if (!MsgHelper.AskQuestion("你选择了" + _rows.ToString() + "条数据,确定保存吗?")) |
| | | return; |
| | | System.Text.StringBuilder _sbGuids = new System.Text.StringBuilder(); |
| | | for (var i = 0; i < gridView2.DataRowCount; i++) |
| | | { |
| | | var row = gridView2.GetDataRow(i); |
| | | if (_sbGuids.Length > 0) |
| | | _sbGuids.Append(","); |
| | | Guid? _guid = UtilityHelper.ToGuid(row["guid"].ToString()); |
| | | _sbGuids.Append(_guid.ToString()); |
| | | } |
| | | var _obj = new |
| | | { |
| | | sourceGuid = UtilityHelper.ToGuid(lbGuid.Text.Trim()), |
| | | itemGuids = _sbGuids.ToString() |
| | | }; |
| | | try |
| | | { |
| | | var strJson = UtilityHelper.HttpPost("", _webServiceName + "ItemsComyMx", JsonConvert.SerializeObject(_obj)); |
| | | var _rtn = UtilityHelper.ReturnToDynamic(strJson); |
| | | MsgHelper.Warning("提示:" + _rtn.rtnMsg); |
| | | if (_rtn.rtnCode > 0) |
| | | { |
| | | UtilityHelper.SetDefaultTable(gridControl2, gridView2); |
| | | } |
| | | } |
| | | catch (Exception ex) |
| | | { |
| | | MsgHelper.Warning("提示:" + ex.Message); |
| | | } |
| | | } |
| | | } |
| | | } |