fqc
lu
2025-04-09 4e8057788238516770131bb399bd39c2b0d70006
DevApp/Gs.DevApp/DevFrm/FQC/Frm_FqcDetect01Check.cs
@@ -6,6 +6,7 @@
using System;
using System.Collections.Generic;
using System.Data;
using System.Runtime.InteropServices;
using System.Threading.Tasks;
using System.Windows.Forms;
@@ -100,7 +101,7 @@
                ToolBox.MsgHelper.Warning("提示:" + ex.Message);
            }
        }
        /// <summary>
        /// 分页事件
        /// </summary>
@@ -166,7 +167,6 @@
            Gs.DevApp.ToolBox.UtilityHelper.JumpTab(xtraTabControl1, 1);
        }
        /// <summary>
        /// 刷新事件
        /// </summary>
@@ -189,7 +189,7 @@
                getPageList(this.pageBar1.CurrentPage);
            }
        }
        /// <summary>
        /// 修改事件
        /// </summary>
@@ -228,57 +228,94 @@
        private void ToolBarMenu1_btnSaveClick(object sender, EventArgs e)
        {
            toolBarMenu1.isSetBtn = false;
            string _txt_djType = txt_djType.Text.Trim();
            string _txt_fbatchQty = txt_fbatchQty.Text.Trim();
            string _txt_lifnr = txt_lifnr.Text.Trim();
            string _txt_suppId ="";
            string _txt_lineId ="";
            string _txt_itemId = txt_itemId11111.Text.Trim();
            string _txt_remarks = txt_remarks.Text.Trim();
            string _txt_workNo = txt_workNo.GetCode();
            string _txt_epTag = txt_epTag.Text.Trim();
            string _freceQty = txt_freceQty.Text.Trim();
            string _txt_fngHandle = txt_fngHandle.Text.Trim();
            string _txt_fmrmode = txt_fmrmode.GetCode();
            string _txt_fzrId = txt_fzrId.GetId();
            string _txt_workNo = txt_workNo.Text.Trim();
            string _txt_msg = txt_msg.TextTxt;
            string _txt_fmanageNo = txt_fmanageNo.Text.Trim();
            string _txt_lotNo2 = txt_lotNo2.Text.Trim();
            string _txt_lotNo1 = txt_lotNo1.Text.Trim();
            string _txt_lotNo = txt_lotNo.Text.Trim();
            if (txt_djType.SelectedIndex <= 0)
            string _txt_zrType=txt_zrType.Text.Trim();
            if (txt_freceQty.SelectedIndex <= 0)
            {
                Gs.DevApp.ToolBox.MsgHelper.Warning("单据类型不能为空!");
                txt_djType.Focus();
                Gs.DevApp.ToolBox.MsgHelper.Warning("请选择判定结果!");
                txt_freceQty.Focus();
                return;
            }
            if (string.IsNullOrEmpty(_txt_fbatchQty.Trim()))
            //当为不合格时,要选择处置结果
            if (txt_freceQty.SelectedIndex != 1)
            {
                Gs.DevApp.ToolBox.MsgHelper.Warning("抽检数量不能为空!");
                txt_fbatchQty.Focus();
                return;
                if (txt_fngHandle.SelectedIndex <= 0)
                {
                    Gs.DevApp.ToolBox.MsgHelper.Warning("请选择处置结果!");
                    txt_fngHandle.Focus();
                    return;
                }
                if (_txt_fzrId.Length<= 0)
                {
                    Gs.DevApp.ToolBox.MsgHelper.Warning("请选择责任人!");
                    txt_fzrId.Focus();
                    return;
                }
                if (txt_zrType.SelectedIndex <= 0)
                {
                    Gs.DevApp.ToolBox.MsgHelper.Warning("请选择责任判定!");
                    txt_zrType.Focus();
                    return;
                }
                //当处置结果为反工时,要选择工序和反工编号
                if (txt_fngHandle.SelectedIndex == 1)
                {
                    if (string.IsNullOrEmpty(_txt_workNo))
                    {
                        Gs.DevApp.ToolBox.MsgHelper.Warning("请填写反工单号!");
                        txt_workNo.Focus();
                        return;
                    }
                    if (string.IsNullOrEmpty(_txt_fmrmode))
                    {
                        Gs.DevApp.ToolBox.MsgHelper.Warning("请填选择反工工序!");
                        txt_fmrmode.Focus();
                        return;
                    }
                }
                else {
                    if (!string.IsNullOrEmpty(_txt_workNo))
                    {
                        Gs.DevApp.ToolBox.MsgHelper.Warning("不需要填写反工单号!");
                        txt_workNo.Focus();
                        return;
                    }
                    if (!string.IsNullOrEmpty(_txt_fmrmode))
                    {
                        Gs.DevApp.ToolBox.MsgHelper.Warning("不需要选择反工工序!");
                        txt_fmrmode.Focus();
                        return;
                    }
                }
            }
            if (string.IsNullOrEmpty(_txt_lotNo.Trim()))
            {
                Gs.DevApp.ToolBox.MsgHelper.Warning("工单号不能为空!");
                txt_lotNo.Focus();
                return;
            //当为合格时,就不应该选择其它项目了
            else {
                if (( _txt_fmrmode.Length + _txt_fzrId.Length + _txt_workNo.Length) > 0  || txt_zrType.SelectedIndex>0 || txt_fngHandle.SelectedIndex > 0)
                {
                    Gs.DevApp.ToolBox.MsgHelper.Warning("当判定结果为合格时,就不应该选择其它项目了!");
                    txt_freceQty.Focus();
                    return;
                }
            }
            var _obj = new
            {
                guid = UtilityHelper.ToGuid(lbGuid.Text.Trim()), //主建
                djType = _txt_djType,
                fbatchQty = _txt_fbatchQty,
                lifnr = _txt_lifnr,
                suppId = _txt_suppId,
                lineId = _txt_lineId,
                itemId = _txt_itemId,
                remarks = _txt_remarks,
                workNo = _txt_workNo,
                epTag = _txt_epTag,
                freceQty = _freceQty,
                fngHandle = _txt_fngHandle,
                fzrId = _txt_fzrId,
                workNo = _txt_workNo,
                fmrmode = _txt_fmrmode,
                msg = _txt_msg,
                fmanageNo = _txt_fmanageNo,
                lotNo2 = _txt_lotNo2,
                lotNo1 = _txt_lotNo1,
                lotNo = _txt_lotNo
                zrType= _txt_zrType,
                edtType = 1
            };
            try
            {
@@ -288,7 +325,6 @@
                if (_rtn.rtnCode > 0)
                {
                    lbGuid.Text = _rtn.rtnData.outGuid;
                    txt_releaseNo.Text = _rtn.rtnData.outNo;
                    toolBarMenu1.isSetBtn = true;
                    UtilityHelper.ChangeEnableByControl(this.layoutMx1.Controls, false);
                    this.setEable(false);
@@ -522,7 +558,7 @@
                    {
                        if (xtraTabControl1.SelectedTabPageIndex == 1)
                        {
                            getModel(lbGuid.Text.Trim(),"0");
                            getModel(lbGuid.Text.Trim(), "0");
                        }
                        int rowHandle = gridView1.LocateByValue(1, gridView1.Columns["guid"], rowGuid);
                        gridView1.FocusedRowHandle = rowHandle;