cdk
6 天以前 c42e01627d34dc2ff3d18cc47b2018de3dbef36d
DevApp/Gs.DevApp/DevFrm/QC/Jyxm.cs
@@ -18,10 +18,13 @@
    public partial class Jyxm : DevExpress.XtraEditors.XtraUserControl
    {
        private List<FilterEntity> _filterList = new List<FilterEntity>();
        string _ucItem = "";//物料
        private readonly string _webServiceName = "MesQmCheckitemManager/";
        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 = "2.50---(AQL_0_250)";//默认接收水平
        public Jyxm(string _strType)
        {
            InitializeComponent();
@@ -43,28 +46,29 @@
            toolBarMenu1.xlsInService = "XlsInItemJyxm&" + strType;
            //类型,iqc,ipqc巡检,ipqc首检查,fqc,iqc的样品值默认为5,其它为1
            txt_ftype.Text = strType;
            if (strType == "iqc")
            if (strType == QcSeason.iqc.ToString())
                dfValue = 5;
            if (strType == QcSeason.fqc.ToString())
                dfValue = 999;
            //如果是ipqc巡检,显示工位
            if (strType != "ipqc巡检")
            if (strType != QcSeason.ipqc巡检.ToString())
            {
                gvMx1.Columns["stationName"].Visible = false;
            }
            //如果是ipqc首检,显示认证
            if (strType != "ipqc首检")
            {
                gvMx1.Columns["isRzxx"].Visible = false;
            }
            //新行初始值
            this.gvMx1.InitNewRow += (s, e) =>
        {
            this.gvMx1.SetRowCellValue(e.RowHandle, "ypsl", dfValue);
            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);
@@ -91,7 +95,7 @@
                    Gs.DevApp.ToolBox.MsgHelper.ShowInformation("该项目未审核,暂不能复制到其它物料!");
                    return;
                }
                JyxmShow frm = new JyxmShow(lbGuid.Text.Trim(), strType);
                JyxmShowCopy frm = new JyxmShowCopy(lbGuid.Text.Trim(), strType);
                frm.ShowDialog();
            };
        }
@@ -257,14 +261,7 @@
        private void ToolBarMenu1_btnSaveClick(object sender, EventArgs e)
        {
            toolBarMenu1.isSetBtn = false;
            string _orgId = txt_fSubsidiary.GetId();
            if (string.IsNullOrEmpty(_orgId))
            {
                MsgHelper.Warning("请选择使用组织!");
                txt_fSubsidiary.Focus();
                return;
            }
            string _ItemId = txt_itemId.GetId();
            string _ItemId = txt_itemId.EditValue.ToString().Trim();
            if (string.IsNullOrEmpty(_ItemId))
            {
                MsgHelper.Warning("请选择物料!");
@@ -319,7 +316,7 @@
                        }
                        if (string.IsNullOrEmpty(row["ypsl"].ToString()))
                        {
                            MsgHelper.ShowError("样品数量平不能为空!");
                            MsgHelper.ShowError("样品数量不能为空!");
                            return;
                        }
                        string _Fstand = row["Fstand"].ToString();
@@ -369,6 +366,7 @@
                            FdownAllow = Gs.DevApp.ToolBox.UtilityHelper.GetDecimal(row["FdownAllow"].ToString()),
                            ypsl = Gs.DevApp.ToolBox.UtilityHelper.GetDecimal(row["ypsl"].ToString()),
                            stationName = row["stationName"].ToString(),
                            FcheckType = row["FcheckType"].ToString(),
                            isRzxx = _isRzxx,
                        });
                    }
@@ -390,9 +388,9 @@
                        JsonConvert.SerializeObject(_obj));
                    var _rtn =
                        UtilityHelper.ReturnToDynamic(strJson);
                    MsgHelper.Warning("提示:" + _rtn.rtnMsg);
                    if (_rtn.rtnCode > 0)
                    {
                        MsgHelper.ShowInformation("提示:" + _rtn.rtnMsg);
                        lbGuid.Text = _rtn.rtnData;
                        toolBarMenu1.isSetBtn = true;
                        var gridViews = new List<GridView>();
@@ -401,10 +399,12 @@
                        toolBarMenu1.currentAction = "";
                        Gs.DevApp.ToolBox.UtilityHelper.JumpTab(xtraTabControl1, 6);
                    }
                    else
                        MsgHelper.ShowError("提示:" + _rtn.rtnMsg);
                }
                catch (Exception ex)
                {
                    MsgHelper.Warning("提示:" + ex.Message);
                    MsgHelper.ShowError("提示:" + ex.Message);
                }
            }
            catch (Exception ex)
@@ -457,7 +457,7 @@
            }
            catch (Exception ex)
            {
                MsgHelper.Warning("提示:" + ex.Message);
                MsgHelper.ShowError("提示:" + ex.Message);
            }
        }
        /// <summary>
@@ -471,7 +471,7 @@
            if (toolBarMenu1.currentAction == "edit") isEdit = true;
            if (string.IsNullOrEmpty(strGuid))
            {
                MsgHelper.Warning("请先选择你要操作的行!");
                MsgHelper.ShowError("请先选择你要操作的行!");
                return;
            }
            var _obj = new
@@ -488,12 +488,10 @@
                if (_rtn.rtnCode > 0)
                {
                    var dy = _rtn.rtnData;
                    _ucItem = dy.itemId;
                    lbGuid.Text = strGuid;
                    var gvList = new List<GridView>();
                    gvList.Add(gvMx1);
                    UtilityHelper.SetValueByObj(this.layoutMx1.Controls, dy, isEdit, gvList);
                    _ucItem = "";
                    var _job = JObject.Parse(strJson);
                    var array = new JArray();
                    foreach (var a in _job["rtnData"]["list"]) array.Add(a);
@@ -504,6 +502,7 @@
                        gcMx1.DataSource = dt;
                        gcMx1.ForceInitialize();
                        gvMx1.BestFitColumns();
                        Gs.DevApp.ToolBox.UtilityHelper.SetGridLayout(gvMx1);
                    }
                    else
                    {
@@ -512,12 +511,12 @@
                }
                else
                {
                    MsgHelper.Warning("提示:" + _rtn.rtnMsg);
                    MsgHelper.ShowError("提示:" + _rtn.rtnMsg);
                }
            }
            catch (Exception ex)
            {
                MsgHelper.Warning("提示:" + ex.Message);
                MsgHelper.ShowError("提示:" + ex.Message);
            }
        }
@@ -542,13 +541,14 @@
                case 2:
                    strMsg = "批准";
                    break;
            };
            }
            ;
            toolBarMenu1.guidKey = "";
            string rowGuid, rowName;
            (rowGuid, rowName) = UtilityHelper.GetCurrentRow(xtraTabControl1, lbGuid, txt_itemNo, gridView1, "itemNo");
            if (string.IsNullOrEmpty(rowGuid))
            {
                MsgHelper.Warning("请先选择你要操作的行!");
                MsgHelper.ShowError("请先选择你要操作的行!");
                return;
            }
            if (!MsgHelper.AskQuestion("你选择了【" + rowName + "】,确定" + strMsg + "吗?"))
@@ -589,26 +589,34 @@
            }
            catch (Exception ex)
            {
                MsgHelper.Warning("提示:" + ex.Message);
                MsgHelper.ShowError("提示:" + ex.Message);
            }
        }
        #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, _ucItem, " ", strType);
            };
            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();
@@ -616,7 +624,9 @@
            _getListJssp();
            _getListJysp();
            _getListStation();
            _getListGroup();
        }
        /// <summary>
        /// 读取检验项目
        /// </summary>
@@ -635,7 +645,7 @@
            }
            catch (Exception ex)
            {
                MsgHelper.Warning("提示:" + ex.Message);
                MsgHelper.ShowError("提示:" + ex.Message);
            }
        }
        /// <summary>
@@ -661,7 +671,7 @@
            }
            catch (Exception ex)
            {
                MsgHelper.Warning("提示:" + ex.Message);
                MsgHelper.ShowError("提示:" + ex.Message);
            }
        }
        /// <summary>
@@ -682,7 +692,7 @@
            }
            catch (Exception ex)
            {
                MsgHelper.Warning("提示:" + ex.Message);
                MsgHelper.ShowError("提示:" + ex.Message);
            }
        }
        /// <summary>
@@ -702,13 +712,11 @@
                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)
            {
                MsgHelper.Warning("提示:" + ex.Message);
                MsgHelper.ShowError("提示:" + ex.Message);
            }
        }
        /// <summary>
@@ -731,6 +739,9 @@
                ,"1.50---(AQL_0_150)"
                ,"2.00---(AQL_0_200)"
                ,"2.50---(AQL_0_250)"
                ,"4.00---(AQL_0_400)"
                ,"6.50---(AQL_0_650)"
                ,"10.00---(AQL_1_000)"
            });
        }
        /// <summary>
@@ -748,7 +759,22 @@
                ,"7.特殊检验水平(S4)"
            });
        }
        /// <summary>
        /// 读取检验水平
        /// </summary>
        private void _getListGroup()
        {
            rptGroup.Items.AddRange(new string[] {
               "外观"
               ,"颜色"
               ,"尺寸"
               , "关键部件一致性"
               , "品水测试"
                ,"制热性能"
                ,"进水压力"
                ,"电气性能"
            });
        }
        /// <summary>
        /// 关联检验标准名称
        /// </summary>
@@ -812,6 +838,5 @@
            }
        }
        #endregion
    }
}