| | |
| | | using DevExpress.Pdf.Native.BouncyCastle.Utilities.Collections; |
| | | using DevExpress.XtraLayout.Customization; |
| | | using DevExpress.XtraRichEdit.API.Native; |
| | | using Gs.DevApp.DevFrm.QC; |
| | | using Gs.DevApp.Entity; |
| | | using Gs.DevApp.ToolBox; |
| | |
| | | ToolBox.MsgHelper.ShowError("请检查称重设置!"); |
| | | return; |
| | | } |
| | | if (txtW1.Text.Trim().Length <= 0) |
| | | if (txt_weight1.Text.Trim().Length <= 0) |
| | | { |
| | | _setWeigth(1, _strCurrent); |
| | | return; |
| | | } |
| | | if (txtW2.Text.Trim().Length <= 0) |
| | | if (txt_weight2.Text.Trim().Length <= 0) |
| | | { |
| | | _setWeigth(2, _strCurrent); |
| | | return; |
| | | } |
| | | if (txtW3.Text.Trim().Length <= 0) |
| | | if (txt_weight3.Text.Trim().Length <= 0) |
| | | { |
| | | _setWeigth(3, _strCurrent); |
| | | return; |
| | | } |
| | | if (txtW4.Text.Trim().Length <= 0) |
| | | if (txt_weight4.Text.Trim().Length <= 0) |
| | | { |
| | | _setWeigth(4, _strCurrent); |
| | | return; |
| | | } |
| | | if (txtW5.Text.Trim().Length <= 0) |
| | | if (txt_weight5.Text.Trim().Length <= 0) |
| | | { |
| | | _setWeigth(5, _strCurrent); |
| | | return; |
| | |
| | | { |
| | | if (_weightType == 1) |
| | | { |
| | | txtW1.Text = _weight; |
| | | txt_weight1.Text = _weight; |
| | | return; |
| | | } |
| | | if (_weightType == 2) |
| | | { |
| | | txtW2.Text = _weight; |
| | | txt_weight2.Text = _weight; |
| | | return; |
| | | } |
| | | if (_weightType == 3) |
| | | { |
| | | txtW3.Text = _weight; |
| | | txt_weight3.Text = _weight; |
| | | return; |
| | | } |
| | | if (_weightType == 4) |
| | | { |
| | | txtW4.Text = _weight; |
| | | txt_weight4.Text = _weight; |
| | | return; |
| | | } |
| | | if (_weightType == 5) |
| | | { |
| | | txtW5.Text = _weight; |
| | | txt_weight5.Text = _weight; |
| | | return; |
| | | } |
| | | if (_weightType == 99) |
| | | { |
| | | this.txtW1.Text = this.txtW2.Text = this.txtW3.Text = this.txtW4.Text = this.txtW5.Text = ""; |
| | | this.txt_weight1.Text = this.txt_weight2.Text = this.txt_weight3.Text = this.txt_weight4.Text = this.txt_weight5.Text = ""; |
| | | return; |
| | | } |
| | | } |
| | |
| | | toolBarMenu1.isSetBtn = false; |
| | | if (txt_fcheckResu.Text.Trim() == _strTag && string.IsNullOrEmpty(txt_fngDesc.TextTxt.Trim())) |
| | | { |
| | | Gs.DevApp.ToolBox.MsgHelper.ShowError("当检验结果不合格时,请填写备注说明!"); |
| | | Gs.DevApp.ToolBox.MsgHelper.ShowError("当检验结果不合格时,请填写异常描述!"); |
| | | txt_fngDesc.Focus(); |
| | | return; |
| | | } |
| | | if (txt_fcheckResu.Text.Trim() == _strTag && string.IsNullOrEmpty(txt_xblb.TextTxt.Trim())) |
| | | { |
| | | Gs.DevApp.ToolBox.MsgHelper.ShowError("当检验结果不合格时,请填写选别类别!"); |
| | | txt_xblb.Focus(); |
| | | return; |
| | | } |
| | | var _obj = new |
| | | { |
| | | guid = UtilityHelper.ToGuid(lbGuid.Text.Trim()), //主建 |
| | | fngDesc = txt_fngDesc.TextTxt.Trim(), |
| | | iqcRemark= txt_iqcRemark.Text.Trim(), |
| | | iqcXblb = txt_xblb.TextTxt.Trim(), |
| | | }; |
| | | try |
| | | { |
| | | string strJson = UtilityHelper.HttpPost("", _webServiceName + "EditModel", JsonConvert.SerializeObject(_obj)); |
| | | ReturnModel<dynamic> _rtn = ToolBox.UtilityHelper.ReturnToDynamic(strJson); |
| | | |
| | | if (_rtn.rtnCode > 0) |
| | | { |
| | | ToolBox.MsgHelper.ShowInformation("提示:" + _rtn.rtnMsg); |