lu
2 天以前 5e376d06404a16cb3c82a93cff351c5315bbcfe3
DevApp/Gs.DevApp/DevFrm/Work/Frm_Repair.cs
@@ -14,6 +14,8 @@
    public partial class Frm_Repair : DevExpress.XtraEditors.XtraForm
    {
        string _webServiceName = "WorkRepair/";
        string goodTag = "OK";
        string badTag = "NG";
        private List<FilterEntity> _filterList = new List<FilterEntity>();
        public Frm_Repair()
        {
@@ -21,33 +23,41 @@
            this.toolBarMenu1.btnLoadClick += ToolBarMenu1_btnLoadClick;
            this.toolBarMenu1.btnQueryClick += ToolBarMenu1_btnQueryClick;
            this.toolBarMenu1.getXmlConfig();
            Gs.DevApp.ToolBox.UtilityHelper.SetGridViewParameterMx(gvMx1);
            Gs.DevApp.ToolBox.UtilityHelper.SetGridViewParameterMx(gvMx2);
            Gs.DevApp.ToolBox.UtilityHelper.SetGridViewParameter(gridView1, null, this, null, "", (value) =>
            {
                Gs.DevApp.ToolBox.UtilityHelper.JumpTab(xtraTabControl1, 0);
            });
            }, tips);
            Gs.DevApp.ToolBox.UtilityHelper.SetTabParameter(gridView1, xtraTabControl1, pageBar1, (value) =>
            {
                txt_barCode.Text = "";
                getModel(value, "", "","","");
                txt_barCode111.Text = "";
                getModel(value, "", "", "", "");
            }, (value) =>
            {
                getPageList(this.pageBar1.CurrentPage);
            });
            }, lbGuid);
            getPageList(1);
            pageBar1.PagerEvent += PageBar1_PagerEvent;
            txt_barCode.KeyDown += (s, e) =>
            txt_barCode111.KeyDown += (s, e) =>
            {
                if (e.KeyCode == Keys.Enter) { getModel(lbGuid.Text.Trim(), "","","",""); };
                if (e.KeyCode == Keys.Enter) { getModel(lbGuid.Text.Trim(), "", "", "", ""); };
            };
            btnGood.Click += (s, e) =>
            {
                getModel(lbGuid.Text.Trim(), txt_remark.TextTxt, txt_badReson.TextTxt, txt_repairMethd.TextTxt, "√");
                getModel(lbGuid.Text.Trim(), txt_badDescription.TextTxt, txt_repairReson.TextTxt.Trim(), txt_repairMethd.TextTxt.Trim(), goodTag);
            };
            btnBad.Click += (s, e) => {
                getModel(lbGuid.Text.Trim(), txt_remark.TextTxt, txt_badReson.TextTxt, txt_repairMethd.TextTxt, "×");
            btnBad.Click += (s, e) =>
            {
                getModel(lbGuid.Text.Trim(), txt_badDescription.TextTxt, txt_repairReson.TextTxt.Trim(), txt_repairMethd.TextTxt.Trim(), badTag);
            };
        }
        /// <summary>
        ///
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private async void GridView1_ColumnFilterChanged(object sender, EventArgs e)
        {
            _filterList = Gs.DevApp.ToolBox.UtilityHelper.GetDilter(gridView1.Columns, gridView1);
@@ -97,7 +107,7 @@
        private void ToolBarMenu1_btnLoadClick(object sender, EventArgs e)
        {
            if (xtraTabControl1.SelectedTabPageIndex == 1)
                getModel(lbGuid.Text.Trim(), "", "","","");
                getModel(lbGuid.Text.Trim(), "", "", "", "");
            else
            {
                //_filterList.Clear();
@@ -119,8 +129,8 @@
        /// <param name="pageSize">每页几条</param>
        private void getPageList(int curPage)
        {
            txt_barCode.Text = "";
            var _sbSqlWhere = UtilityHelper.GetSearchWhere(_filterList);
            txt_barCode111.Text = "";
            gcMain1.DataSource = null; var _sbSqlWhere = UtilityHelper.GetSearchWhere(_filterList);
            PageQueryModel pgq = new PageQueryModel(curPage, this.pageBar1.RowsCount, "a.createDate", "desc", "", _sbSqlWhere.ToString());
            string json = JsonConvert.SerializeObject(pgq);
            try
@@ -156,7 +166,7 @@
            }
        }
        /// <summary>
        ///
        /// 读取实体
        /// </summary>
        /// <param name="strGuid"></param>
        /// <param name="_badXx"></param>
@@ -165,7 +175,25 @@
        /// <param name="_checkResult"></param>
        private void getModel(string strGuid, string _badXx, string _badYy, string _badDc, string _checkResult)
        {
            string _barCode = txt_barCode.Text.Trim();
            if (!string.IsNullOrEmpty(_checkResult))
            {
                string _reason = txt_repairReson.TextTxt.Trim();
                if (string.IsNullOrEmpty(_reason))
                {
                    Toast vm = new Toast(0, "不良原因不能为空!");
                    vm.Show();
                    return;
                };
                string _meth = txt_repairMethd.TextTxt.Trim();
                if (string.IsNullOrEmpty(_meth))
                {
                    Toast vm = new Toast(0, "不良对策不能为空!");
                    vm.Show();
                    return;
                };
            }
            string _barCode = txt_barCode111.Text.Trim();
            var _obj = new
            {
                guid = strGuid,//主建
@@ -184,7 +212,21 @@
                    dynamic dy = _rtn.rtnData;
                    lbGuid.Text = strGuid;
                    UtilityHelper.SetValueByObj(this.layoutMx1.Controls, dy, false);
                    txt_barCode.ReadOnly = false;
                    lbSum1.Text = dy.lbSum1;
                    lbSum2.Text = dy.lbSum2;
                    lbSum3.Text = dy.lbSum3;
                    prog1.Position = dy.jd;
                    txt_barCode111.ReadOnly = false;
                    string _repairResult = dy.repairResult;
                    if (!string.IsNullOrEmpty(_repairResult))
                    {
                        txt_repairReson.IsReadly = true;
                        txt_repairMethd.IsReadly = true;
                    }
                    else {
                        txt_repairReson.IsReadly = false;
                        txt_repairMethd.IsReadly = false;
                    }
                    JObject _job = JObject.Parse(strJson);
                    JArray array = new JArray();
                    foreach (var a in _job["rtnData"]["list"])
@@ -237,6 +279,5 @@
                ToolBox.MsgHelper.ShowError("提示:" + ex.Message);
            }
        }
    }
}