Esempio n. 1
0
 private void cmbProject_SelectedIndexChanged(object sender, EventArgs e)
 {
     txtScan.Enabled = false;
     if (cmbProject.Text.Trim() != "" && cmbProject.Text.Trim() != "System.Data.DataRowView")
     {
         SqlConn.GetDbName = "SFC" + cmbProject.Text;
         string    sql = "select ID, ProductName from T_SnFormat";
         DataTable dt  = new DataTable();
         try
         {
             dt = SqlConn.sqlDataTable(sql);
             //if (dt.Rows.Count > 0)
             {
                 cmbModel.DataSource    = dt;
                 cmbModel.DisplayMember = "ProductName";
                 cmbModel.ValueMember   = "ID";
                 cmbModel.SelectedIndex = -1;
             }
         }
         catch (Exception ex)
         {
             MessageBox.Show(this, "Load Model Fail: " + ex.Message);
         }
         //if (cmbProject.Text.Trim() == "SAMSUNG" || cmbProject.Text.Trim() == "GOOGLE")
         //{
         //    cbLQ.Visible = true;
         //    cbLQ.Checked = true;
         //}
         //else
         //    cbLQ.Visible = false;
     }
 }
Esempio n. 2
0
        public void ProjectLoad()
        {
            SqlConn.GetDbName = "CentralDatabase";
            //get Station
            string    sql2 = "select ID, [StationName] from [tblStation]";
            DataTable dt2  = new DataTable();

            try
            {
                dt2 = SqlConn.sqlDataTable(sql2);
                if (dt2.Rows.Count > 0)
                {
                    cmbStation.DataSource    = dt2;
                    cmbStation.DisplayMember = "StationName";
                    cmbStation.ValueMember   = "ID";
                    cmbStation.SelectedIndex = -1;
                }
            }
            catch (Exception ex2)
            {
                MessageBox.Show(this, "Load Station Fail: " + ex2.Message);
                return;
            }
            //Load project
            string    sql = "select [Description] from [T_DataBaseCfg]";
            DataTable dt  = new DataTable();

            try
            {
                dt = SqlConn.sqlDataTable(sql);
                if (dt.Rows.Count > 0)
                {
                    cmbProject.DataSource    = dt;
                    cmbProject.DisplayMember = "Description";
                    cmbProject.SelectedIndex = -1;
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show(this, "Load Project Fail: " + ex.Message);
                return;
            }
        }
Esempio n. 3
0
        public void LotNoSetup()
        {
            ulong number = 0;

            if (txtLotName.Text == "" && !ulong.TryParse(txtLotQty.Text.Trim(), out number))
            {
                MessageBox.Show(this, "DỮ LIỆU NHẬP VÀO KHÔNG ĐÚNG/输入数据错误");
                return;
            }
            //Check LotNo

            string    sql = string.Format("select ID, Qty, FinishQty, IsFinish, PassQty from tblLotNo where LotName='{0}'", txtLotName.Text.Trim());
            DataTable dt  = new DataTable();

            try
            {
                dt = SqlConn.sqlDataTable(sql);
                if (dt.Rows.Count > 0)
                {
                    int iQty       = Convert.ToInt32(dt.Rows[0]["Qty"]);
                    int iFinishQty = Convert.ToInt32(dt.Rows[0]["FinishQty"]);
                    int iPassQty   = Convert.ToInt32(dt.Rows[0]["PassQty"]);
                    int iIsFinish  = Convert.ToInt32(dt.Rows[0]["IsFinish"]);
                    if (iIsFinish == 1)
                    {
                        MessageBox.Show(this, "LÔ NÀY ĐÃ ĐẦY/此批次已满");
                        return;
                    }
                    lblLotQty.Text     = iQty.ToString();
                    lblCurrentQty.Text = iFinishQty.ToString();
                    lblOK.Text         = iPassQty.ToString();
                }
                else if (dt.Rows.Count <= 0)
                {
                    lblLotQty.Text     = txtLotQty.Text.Trim();
                    lblCurrentQty.Text = "0";
                    lblOK.Text         = "0";
                    string sInsert = string.Format("insert into tblLotNo ([LotName],[Qty],[FinishQty],[PassQty],[IsFinish],[BeginTime]) values ('{0}', {1}, {2}, {3}, {4}, '{5}')", txtLotName.Text.Trim(), Convert.ToInt32(txtLotQty.Text.Trim()), 0, 0, 0, DateTime.Now.ToString("yyyy/MM/dd HH:mm:ss"));
                    try
                    {
                        SqlConn.ExecuteNonSql(sInsert);
                    }
                    catch (Exception ex)
                    {
                        MessageBox.Show(this, "Insert LotNo Fail: " + ex.Message);
                        return;
                    }
                }
            }
            catch (Exception ex2)
            {
                MessageBox.Show(this, "Check LotNo Fail: " + ex2.Message);
            }
            //YangJunHai add check lot format 20200604
            //MessageBox.Show(moDel);
            string    sqllot = string.Format("select ProductCode from T_SnFormat WITH(NOLOCK) where ProductName='{0}'", moDel);
            DataTable dtlot  = new DataTable();

            try
            {
                dtlot = SqlConn.sqlDataTable(sqllot);
                string lot = dtlot.Rows[0]["ProductCode"].ToString();
                //string newlotname = lot.Replace("*", "");
                // string[] listlotname = lot.Split('*');
                // string newlotname = listlotname[0];
                if (txtLotName.Text.Contains(lot))
                {
                    //MessageBox.Show("OKKKKKKKKKKKLA");
                    lblLotNo.Text = txtLotName.Text.Trim();
                    tb.Focus();
                    lv.Items.Clear();
                    this.Close();
                }
                else
                {
                    MessageBox.Show("SAI SỐ LÔ / 批次号错误!", "ERROR", MessageBoxButtons.OK, MessageBoxIcon.Error);
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show(this, "CheckSN connect Fail: " + ex.Message);
                return;
            }
            //Hai add end
        }
Esempio n. 4
0
        public void SnCheck()
        {
            if (rTX.Checked)
            {
                SqlConn.GetDbName = "SFC" + cmbProject.Text;//version 1.0.5 added

                /*//Check SN Format
                 * //Thread.Sleep(300);
                 * if (txtScan.Text.Trim().Length != SNFormat.Length || !Regex.IsMatch(txtScan.Text.Trim().Replace(" ", "A"), newFormat))
                 * {
                 *  MessageBox.Show("NG");
                 *  txtScan.Clear();
                 * }
                 * else
                 * {
                 *  MessageBox.Show("OK");
                 *  txtScan.Clear();
                 *  return;
                 * }
                 *
                 * return;*/

                if (cmbProject.Text == "" || cmbModel.Text == "" || cmbStation.Text == "")
                {
                    MessageBox.Show(this, "DỮ LIỆU CÀI ĐẶT TRỐNG/设置数据为空");
                    ResultStatus("STANDBY");
                    return;
                }
                if (toolStripStatusLabel2.Text.Contains("未设定"))
                {
                    MessageBox.Show("CHƯA CÀI ĐẶT SỐ LÔ/批次号未设置");
                    ResultStatus("STANDBY");
                    return;
                }
                string sn   = txtScan.Text.Trim();
                int    cQty = Convert.ToInt32(toolStripStatusLabel6.Text.Trim());
                int    pQty = Convert.ToInt32(toolStripStatusLabel8.Text.Trim());
                if (cQty >= Convert.ToInt32(toolStripStatusLabel4.Text.Trim()))
                {
                    MessageBox.Show("LÔ NÀY ĐÃ ĐẦY/此批次已满");
                    ResultStatus("STANDBY");
                    txtScan.Enabled = false;
                    return;
                }
                ResultStatus("RUN");
                //Check SN Format
                //if (sn.Length != SNFormat.Length || !Regex.IsMatch(sn.Replace(" ", "A"), newFormat))
                if (!Regex.IsMatch(sn.Replace(" ", "A"), newFormat))
                {
                    //MessageBox.Show("ĐỊNH DẠNG SN SAI/SN规则错误");
                    ResultStatus("FAIL");
                    label4.Text = sn + ":ĐỊNH DẠNG SN SAI/SN规则错误";
                    PwdConfirm();
                    return;
                }
                //Check tblData Result
                string    sCheckResult = string.Format("select Result from tblData WITH(NOLOCK) where SN='{0}' and StationID={1} order by CreateTime desc", sn, cmbStation.SelectedValue);
                DataTable dt1          = new DataTable();
                try
                {
                    dt1 = SqlConn.sqlDataTable(sCheckResult);
                }
                catch (Exception ex1)
                {
                    MessageBox.Show("Can not check Data: " + ex1.Message);
                    return;
                }
                if (dt1.Rows.Count > 0)
                {
                    bool tblDataResult = bool.Parse(dt1.Rows[0][0].ToString());
                    if (tblDataResult)
                    {
                        label4.Text = sn + ": TRÙNG MÃ/重码,请隔离";
                        ResultStatus("FAIL");
                        PwdConfirm();
                        return;
                    }
                }

                // if ((cmbProject.Text.Trim() == "SAMSUNG" || cmbProject.Text.Trim() == "GOOGLE") && cbLQ.Checked)//version 1.0.5 added
                if (cbLQ.Checked)
                {
                    //check TQ test result
                    SqlConn.GetDbName = "sfcRelay";
                    string    TQCheck = string.Format("Select top 1 Result From T_SnCollection Where SN = '{0}' and Station='漏气测试'  order by ID desc", sn);
                    DataTable dt2     = new DataTable();
                    try
                    {
                        dt2 = SqlConn.sqlDataTable(TQCheck);
                    }
                    catch (Exception ex)
                    {
                        MessageBox.Show(this, "CheckSN TQ connect Fail: " + ex.Message);
                        return;
                    }
                    if (dt2.Rows.Count == 0)
                    {
                        label4.Text = sn + ":CHƯA TEST RÒ KHÍ/漏气未测试";
                        ResultStatus("FAIL");
                        PwdConfirm();
                        return;
                    }
                    else if (dt2.Rows.Count > 0)
                    {
                        string sResult = dt2.Rows[0]["Result"].ToString();
                        if (sResult != "OK")
                        {
                            label4.Text = sn + ":RÒ KHÍ TEST NG/漏气测试NG";
                            ResultStatus("FAIL");
                            PwdConfirm();
                            return;
                        }
                    }
                    SqlConn.GetDbName = "SFC" + cmbProject.Text;
                }
                //Test Ang-ten
                if (cbAT.Checked)
                {
                    //check TQ test result
                    //SqlConn.GetDbName = "sfcRelay";
                    string    TQCheck = string.Format("select IsPass, PassLevel from T_SN_Test WITH(NOLOCK) where SN='{0}' and IsRepair = '4' order by [Time] desc", sn);
                    DataTable dt2     = new DataTable();
                    try
                    {
                        dt2 = SqlConn.sqlDataTable(TQCheck);
                    }
                    catch (Exception ex)
                    {
                        MessageBox.Show(this, "CheckSN TQ connect Fail: " + ex.Message);
                        return;
                    }
                    if (dt2.Rows.Count == 0)
                    {
                        label4.Text = sn + ":CHƯA TEST ĂNG-TEN/天线未测试";
                        ResultStatus("FAIL");
                        PwdConfirm();
                        return;
                    }
                    else if (dt2.Rows.Count > 0)
                    {
                        string sResult = dt2.Rows[0]["PassLevel"].ToString();
                        if (sResult != "OK")
                        {
                            label4.Text = sn + ":ĂNG-TEN TEST NG/天线测试NG";
                            ResultStatus("FAIL");
                            PwdConfirm();
                            return;
                        }
                    }
                    SqlConn.GetDbName = "SFC" + cmbProject.Text;
                }
                //check NI test result
                string    sqlCheck = string.Format("select IsPass, PassLevel from T_SN_Test WITH(NOLOCK) where SN='{0}' and IsRepair = '3' order by [Time] desc", sn);
                DataTable dt       = new DataTable();
                try
                {
                    dt = SqlConn.sqlDataTable(sqlCheck);
                }
                catch (Exception ex)
                {
                    MessageBox.Show(this, "CheckSN connect Fail: " + ex.Message);
                    return;
                }
                if (dt.Rows.Count == 0)
                {
                    label4.Text = sn + ":CHƯA TEST TÍNH NĂNG/性能未测试";
                    ResultStatus("FAIL");
                    PwdConfirm();
                    return;
                }
                else if (dt.Rows.Count > 0)
                {
                    int iResult = int.Parse(dt.Rows[0]["IsPass"].ToString());
                    if (cbType.Text.Trim() == "A+")
                    {
                        if (dt.Rows.Count == 1)
                        {
                            if (iResult == 1)
                            {
                                if (cbType.Text.Trim() != "") // 检查产品的档位
                                {
                                    string pType = dt.Rows[0]["PassLevel"].ToString();
                                    //int i = pType.LastIndexOf("_") + 1;
                                    //pType = pType.Substring(i, pType.LastIndexOf(".txt") - i);
                                    //MessageBox.Show(pType);
                                    if (pType.Trim() != cbType.Text.Trim())
                                    {
                                        label4.Text = sn + ":LOẠI HÀNG KHÔNG ĐÚNG/产品的档位错误 -- " + pType;
                                        ResultStatus("FAIL");
                                        PwdConfirm();
                                        return;
                                    }
                                }
                                pQty++;
                                toolStripStatusLabel8.Text = pQty.ToString();
                                ResultStatus("PASS");
                            }
                            else
                            {
                                label4.Text = sn + ":TÍNH NĂNG TEST NG/性能测试NG";
                                MessageBox.Show("NG1");
                                ResultStatus("FAIL");
                                PwdConfirm();
                                return;
                            }
                        }
                        else
                        {
                            label4.Text = sn + ":TÍNH NĂNG TEST NG/性能测试NG";
                            ResultStatus("FAIL");
                            PwdConfirm();
                            return;
                        }
                    }
                    else
                    {
                        if (iResult == 1)
                        {
                            if (cbType.Text.Trim() != "") // 检查产品的档位
                            {
                                string pType = dt.Rows[0]["PassLevel"].ToString();
                                //int i = pType.LastIndexOf("_") + 1;
                                //pType = pType.Substring(i, pType.LastIndexOf(".txt") - i);
                                //MessageBox.Show(pType);
                                if (pType.Trim() != cbType.Text.Trim())
                                {
                                    label4.Text = sn + ":LOẠI HÀNG KHÔNG ĐÚNG/产品的档位错误 -- " + pType;
                                    ResultStatus("FAIL");
                                    PwdConfirm();
                                    return;
                                }
                            }
                            pQty++;
                            toolStripStatusLabel8.Text = pQty.ToString();
                            ResultStatus("PASS");
                        }
                        else
                        {
                            label4.Text = sn + ":TÍNH NĂNG TEST NG/性能测试NG";
                            ResultStatus("FAIL");
                            PwdConfirm();
                            return;
                        }
                    }
                }
                cQty++;
                toolStripStatusLabel6.Text = cQty.ToString();
                //update pici
                string sqlUpdate = "";
                if (cQty == Convert.ToInt32(toolStripStatusLabel4.Text.Trim()))
                {
                    sqlUpdate = string.Format("update tblLotNo set FinishQty={0}, PassQty={1}, EndTime='{2}' where LotName='{3}'", cQty, pQty, DateTime.Now.ToString("yyyy/MM/dd HH:mm:ss"), toolStripStatusLabel2.Text);
                }
                else
                {
                    sqlUpdate = string.Format("update tblLotNo set FinishQty={0}, PassQty={1} where LotName='{2}'", cQty, pQty, toolStripStatusLabel2.Text);
                }
                try
                {
                    SqlConn.ExecuteNonSql(sqlUpdate);
                }
                catch (Exception ex2)
                {
                    MessageBox.Show(this, "Update LotNo Fail: " + ex2.Message);
                    return;
                }
                //insert Data
                string detail = label4.Text;
                if (detail.Contains("OK"))
                {
                    detail = "OK";
                }
                string sqlInsert = string.Format("insert into tblData (SN, Result, StationID, ModelID, CreateTime, Detail) values ('{0}', {1}, {2}, {3}, '{4}', N'{5}')", sn, iResult, cmbStation.SelectedValue, cmbModel.SelectedValue, DateTime.Now.ToString("yyyy/MM/dd HH:mm:ss"), detail);
                try
                {
                    SqlConn.ExecuteNonSql(sqlInsert);
                }
                catch (Exception ex3)
                {
                    MessageBox.Show(this, "Insert SN Fail: " + ex3.Message);
                    return;
                }
            }
            else if (rdAT.Checked)
            {
                SqlConn.GetDbName = "SFC" + cmbProject.Text;//version 1.0.5 added

                /*//Check SN Format
                 * //Thread.Sleep(300);
                 * if (txtScan.Text.Trim().Length != SNFormat.Length || !Regex.IsMatch(txtScan.Text.Trim().Replace(" ", "A"), newFormat))
                 * {
                 *  MessageBox.Show("NG");
                 *  txtScan.Clear();
                 * }
                 * else
                 * {
                 *  MessageBox.Show("OK");
                 *  txtScan.Clear();
                 *  return;
                 * }
                 *
                 * return;*/

                if (cmbProject.Text == "" || cmbModel.Text == "" || cmbStation.Text == "")
                {
                    MessageBox.Show(this, "DỮ LIỆU CÀI ĐẶT TRỐNG/设置数据为空");
                    ResultStatus("STANDBY");
                    return;
                }
                if (toolStripStatusLabel2.Text.Contains("未设定"))
                {
                    MessageBox.Show("CHƯA CÀI ĐẶT SỐ LÔ/批次号未设置");
                    ResultStatus("STANDBY");
                    return;
                }
                string sn   = txtScan.Text.Trim();
                int    cQty = Convert.ToInt32(toolStripStatusLabel6.Text.Trim());
                int    pQty = Convert.ToInt32(toolStripStatusLabel8.Text.Trim());
                if (cQty >= Convert.ToInt32(toolStripStatusLabel4.Text.Trim()))
                {
                    MessageBox.Show("LÔ NÀY ĐÃ ĐẦY/此批次已满");
                    ResultStatus("STANDBY");
                    txtScan.Enabled = false;
                    return;
                }
                ResultStatus("RUN");
                //Check SN Format
                //if (sn.Length != SNFormat.Length || !Regex.IsMatch(sn.Replace(" ", "A"), newFormat))
                if (!Regex.IsMatch(sn.Replace(" ", "A"), newFormat))
                {
                    //MessageBox.Show("ĐỊNH DẠNG SN SAI/SN规则错误");
                    ResultStatus("FAIL");
                    label4.Text = sn + ":ĐỊNH DẠNG SN SAI/SN规则错误";
                    PwdConfirm();
                    return;
                }
                //Check tblData Result
                string    sCheckResult = string.Format("select Result from tblData WITH(NOLOCK) where SN='{0}' and StationID={1} order by CreateTime desc", sn, cmbStation.SelectedValue);
                DataTable dt1          = new DataTable();
                try
                {
                    dt1 = SqlConn.sqlDataTable(sCheckResult);
                }
                catch (Exception ex1)
                {
                    MessageBox.Show("Can not check Data: " + ex1.Message);
                    return;
                }
                if (dt1.Rows.Count > 0)
                {
                    bool tblDataResult = bool.Parse(dt1.Rows[0][0].ToString());
                    if (tblDataResult)
                    {
                        label4.Text = sn + ": TRÙNG MÃ/重码,请隔离";
                        ResultStatus("FAIL");
                        PwdConfirm();
                        return;
                    }
                }
                //Check LQ test result
                if (cbLQ.Checked)
                {
                    //check TQ test result
                    SqlConn.GetDbName = "sfcRelay";
                    string    TQCheck = string.Format("Select top 1 Result From T_SnCollection Where SN = '{0}' and Station='漏气测试'  order by ID desc", sn);
                    DataTable dt2     = new DataTable();
                    try
                    {
                        dt2 = SqlConn.sqlDataTable(TQCheck);
                    }
                    catch (Exception ex)
                    {
                        MessageBox.Show(this, "CheckSN TQ connect Fail: " + ex.Message);
                        return;
                    }
                    if (dt2.Rows.Count == 0)
                    {
                        label4.Text = sn + ":CHƯA TEST RÒ KHÍ/漏气未测试";
                        ResultStatus("FAIL");
                        PwdConfirm();
                        return;
                    }
                    else if (dt2.Rows.Count > 0)
                    {
                        string sResult = dt2.Rows[0]["Result"].ToString();
                        if (sResult != "OK")
                        {
                            label4.Text = sn + ":RÒ KHÍ TEST NG/漏气测试NG";
                            ResultStatus("FAIL");
                            PwdConfirm();
                            return;
                        }
                    }
                    SqlConn.GetDbName = "SFC" + cmbProject.Text;
                }
                //check AT test result
                string    sqlCheck = string.Format("select IsPass, PassLevel from T_SN_Test WITH(NOLOCK) where SN='{0}' and IsRepair = '4' order by [Time] desc", sn);
                DataTable dt       = new DataTable();
                try
                {
                    dt = SqlConn.sqlDataTable(sqlCheck);
                }
                catch (Exception ex)
                {
                    MessageBox.Show(this, "CheckSN connect Fail: " + ex.Message);
                    return;
                }
                if (dt.Rows.Count == 0)
                {
                    label4.Text = sn + ":CHƯA TEST ĂNG-TEN/天线未测试";
                    ResultStatus("FAIL");
                    PwdConfirm();
                    return;
                }
                else if (dt.Rows.Count > 0)
                {
                    int iResult = int.Parse(dt.Rows[0]["IsPass"].ToString());
                    if (iResult == 1)
                    {
                        if (cbType.Text.Trim() != "") // 检查产品的档位
                        {
                            string pType = dt.Rows[0]["PassLevel"].ToString();
                            //int i = pType.LastIndexOf("_") + 1;
                            //pType = pType.Substring(i, pType.LastIndexOf(".txt") - i);
                            //MessageBox.Show(pType);
                            if (pType.Trim() != "OK")
                            {
                                label4.Text = sn + ":ĂNG-TEN TEST NG/天线测试NG -- ";
                                ResultStatus("FAIL");
                                PwdConfirm();
                                return;
                            }
                        }
                        pQty++;
                        toolStripStatusLabel8.Text = pQty.ToString();
                        ResultStatus("PASS");
                    }
                    else
                    {
                        label4.Text = sn + ":ĂNG-TEN TEST NG/天线测试NG";
                        ResultStatus("FAIL");
                        PwdConfirm();
                        return;
                    }
                }
                cQty++;
                toolStripStatusLabel6.Text = cQty.ToString();
                //update pici
                string sqlUpdate = "";
                if (cQty == Convert.ToInt32(toolStripStatusLabel4.Text.Trim()))
                {
                    sqlUpdate = string.Format("update tblLotNo set FinishQty={0}, PassQty={1}, EndTime='{2}' where LotName='{3}'", cQty, pQty, DateTime.Now.ToString("yyyy/MM/dd HH:mm:ss"), toolStripStatusLabel2.Text);
                }
                else
                {
                    sqlUpdate = string.Format("update tblLotNo set FinishQty={0}, PassQty={1} where LotName='{2}'", cQty, pQty, toolStripStatusLabel2.Text);
                }
                try
                {
                    SqlConn.ExecuteNonSql(sqlUpdate);
                }
                catch (Exception ex2)
                {
                    MessageBox.Show(this, "Update LotNo Fail: " + ex2.Message);
                    return;
                }
                //insert Data
                string detail = label4.Text;
                if (detail.Contains("OK"))
                {
                    detail = "OK";
                }
                string sqlInsert = string.Format("insert into tblData (SN, Result, StationID, ModelID, CreateTime, Detail) values ('{0}', {1}, {2}, {3}, '{4}', N'{5}')", sn, iResult, cmbStation.SelectedValue, cmbModel.SelectedValue, DateTime.Now.ToString("yyyy/MM/dd HH:mm:ss"), detail);
                try
                {
                    SqlConn.ExecuteNonSql(sqlInsert);
                }
                catch (Exception ex3)
                {
                    MessageBox.Show(this, "Insert SN Fail: " + ex3.Message);
                    return;
                }
            }
            else
            {
                if (toolStripStatusLabel2.Text.Contains("未设定"))
                {
                    MessageBox.Show("CHƯA CÀI ĐẶT SỐ LÔ/批次号未设置");
                    ResultStatus("STANDBY");
                    return;
                }
                string sn   = txtScan.Text.Trim();
                int    cQty = Convert.ToInt32(toolStripStatusLabel6.Text.Trim());
                int    pQty = Convert.ToInt32(toolStripStatusLabel8.Text.Trim());
                if (cQty >= Convert.ToInt32(toolStripStatusLabel4.Text.Trim()))
                {
                    MessageBox.Show("LÔ NÀY ĐÃ ĐẦY/此批次已满");
                    ResultStatus("STANDBY");
                    txtScan.Enabled = false;
                    return;
                }
                ResultStatus("RUN");
                //Check tblData Result
                string    sCheckResult = string.Format("select Result from tblData WITH(NOLOCK) where SN='{0}' order by CreateTime desc", sn);
                DataTable dt1          = new DataTable();
                try
                {
                    dt1 = SqlConn.sqlDataTable(sCheckResult);
                }
                catch (Exception ex1)
                {
                    MessageBox.Show("Can not check Data: " + ex1.Message);
                    return;
                }
                if (dt1.Rows.Count > 0)
                {
                    bool tblDataResult = bool.Parse(dt1.Rows[0][0].ToString());
                    if (tblDataResult)
                    {
                        label4.Text = sn + ": TRÙNG MÃ/重码,请隔离";
                        ResultStatus("FAIL");
                        PwdConfirm();
                        return;
                    }
                }
                //check TQ test result
                string    sqlCheck = string.Format("Select top 1 Result From T_SnCollection Where SN = '{0}' and Station='漏气测试'  order by ID desc", sn);
                DataTable dt       = new DataTable();
                try
                {
                    dt = SqlConn.sqlDataTable(sqlCheck);
                }
                catch (Exception ex)
                {
                    MessageBox.Show(this, "CheckSN connect Fail: " + ex.Message);
                    return;
                }
                if (dt.Rows.Count == 0)
                {
                    label4.Text = sn + ":CHƯA TEST RÒ KHÍ/漏气未测试";
                    ResultStatus("FAIL");
                    PwdConfirm();
                    return;
                }
                else if (dt.Rows.Count > 0)
                {
                    string sResult = dt.Rows[0]["Result"].ToString();
                    if (sResult == "OK")
                    {
                        pQty++;
                        toolStripStatusLabel8.Text = pQty.ToString();
                        ResultStatus("PASS");
                    }
                    else
                    {
                        label4.Text = sn + ":RÒ KHÍ TEST NG/漏气测试NG";
                        ResultStatus("FAIL");
                        PwdConfirm();
                        return;
                    }
                }
                cQty++;
                toolStripStatusLabel6.Text = cQty.ToString();
                //update pici
                string sqlUpdate = "";
                if (cQty == Convert.ToInt32(toolStripStatusLabel4.Text.Trim()))
                {
                    sqlUpdate = string.Format("update tblLotNo set FinishQty={0}, PassQty={1}, EndTime='{2}' where LotName='{3}'", cQty, pQty, DateTime.Now.ToString("yyyy/MM/dd HH:mm:ss"), toolStripStatusLabel2.Text);
                }
                else
                {
                    sqlUpdate = string.Format("update tblLotNo set FinishQty={0}, PassQty={1} where LotName='{2}'", cQty, pQty, toolStripStatusLabel2.Text);
                }
                try
                {
                    SqlConn.ExecuteNonSql(sqlUpdate);
                }
                catch (Exception ex2)
                {
                    MessageBox.Show(this, "Update LotNo Fail: " + ex2.Message);
                    return;
                }
                //insert Data
                string detail = label4.Text;
                if (detail.Contains("OK"))
                {
                    detail = "OK";
                }
                string sqlInsert = string.Format("insert into tblData (SN, Result, CreateTime, Detail) values ('{0}', {1}, '{2}', N'{3}')", sn, iResult, DateTime.Now.ToString("yyyy/MM/dd HH:mm:ss"), detail);
                try
                {
                    SqlConn.ExecuteNonSql(sqlInsert);
                }
                catch (Exception ex3)
                {
                    MessageBox.Show(this, "Insert SN Fail: " + ex3.Message);
                    return;
                }
            }
        }
Esempio n. 5
0
        private void cmbModel_SelectedIndexChanged(object sender, EventArgs e)
        {
            if (cmbProject.Text == "")
            {
                MessageBox.Show(this, "CHƯA CHỌN TÊN HÀNG/项目为空");
                return;
            }
            if (cmbModel.Text.Trim() != "" && cmbModel.Text.Trim() != "System.Data.DataRowView")
            {
                string sql = string.Format("select ValidateFormat from T_SnFormat where ProductName='{0}'", cmbModel.Text.Trim());
                try
                {
                    DataTable dt = new DataTable();
                    dt = SqlConn.sqlDataTable(sql);
                    if (dt.Rows.Count > 0)
                    {
                        SNFormat = dt.Rows[0][0].ToString();
                        //MessageBox.Show(ValidateFormat);
                    }
                }
                catch (Exception ex)
                {
                    MessageBox.Show("ValidateFormat get Fail: " + ex.Message);
                    return;
                }
                //-----------------------------------------------------------------------
                newFormat = "";
                if (SNFormat.Contains(".{"))
                {
                    newFormat = SNFormat.Replace(".{", @"\w{");
                }
                else
                {
                    string[] kt    = new string[SNFormat.Length];
                    int      count = 0;
                    for (int i = 0; i < SNFormat.Length; i++)
                    {
                        kt[i] = SNFormat.Substring(i, 1);
                        if (kt[i] == "*")
                        {
                            count = count + 1;
                        }
                        else
                        {
                            if (count > 0)
                            {
                                newFormat = newFormat + @"\w{" + count + "}" + kt[i];
                                count     = 0;
                            }
                            else
                            {
                                newFormat = newFormat + kt[i];
                            }
                        }
                    }
                    if (count > 0)
                    {
                        newFormat = newFormat + @"\w{" + count + "}";
                        count     = 0;
                    }
                }
                //MessageBox.Show(newFormat);
                //--------------------------------------------------------------------------

                if (cmbStation.Text != "" && cbType.Text.Trim() != "")
                {
                    txtScan.Enabled = true;
                    txtScan.Focus();
                }
            }
        }