Пример #1
0
        private void AssignNG()
        {
            string resultMsg = string.Empty;
            string resultID  = string.Empty;

            try
            {
                //CHECK VALIDATION USER
                DialogResult diaResult;
                using (frmCheckUser fCheckUser = new frmCheckUser(this))
                {
                    diaResult = fCheckUser.ShowDialog();
                    resultID  = fCheckUser.USER_ID;
                }

                if (diaResult == DialogResult.OK)
                {
                    base.ShowWaitProcess();
                    resultMsg = ServiceProvider.Instance.Proxy.CheckValidationUser(resultID);
                    base.HideWaitProcess();

                    if (!string.IsNullOrEmpty(resultMsg))
                    {
                        using (frmAssignNG fasNG = new frmAssignNG())
                        {
                            fasNG.JOB_NO       = string.Empty;
                            fasNG.LINE_NO      = -1;
                            fasNG.USER_ID      = resultID;
                            fasNG.IsFinishProd = false;

                            diaResult = fasNG.ShowDialog();
                        }
                    }
                    else
                    {
                        base.ShowErrorBox("User : \"" + resultID + "\"\nAuthentication Fail!!",
                                          "Warning");
                    }
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }
        }
Пример #2
0
        private void QcProcess(eQCStatus status)
        {
            string resultMsg = string.Empty;
            string resultID  = string.Empty;

            try
            {
                //CHECK VALIDATION USER
                DialogResult diaResult;
                using (frmCheckUser fCheckUser = new frmCheckUser(this))
                {
                    diaResult = fCheckUser.ShowDialog();
                    resultID  = fCheckUser.USER_ID;
                }

                if (diaResult == DialogResult.OK)
                {
                    base.ShowWaitProcess();
                    resultMsg = ServiceProvider.Instance.Proxy.CheckValidationUser(resultID);
                    base.HideWaitProcess();

                    if (!string.IsNullOrEmpty(resultMsg))
                    {
                        using (frmOKCargo fQcCheck = new frmOKCargo())
                        {
                            fQcCheck.USER_ID   = resultID;
                            fQcCheck.QC_STATUS = status;
                            fQcCheck.ShowDialog();
                        }
                    }
                    else
                    {
                        MessageBox.Show("User : \"" + resultID + "\"\nAuthentication Fail!!", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Exclamation, MessageBoxDefaultButton.Button1);
                    }
                }
            }
            catch (Exception ex)
            {
                base.HideWaitProcess();
                MessageBox.Show(ex.Message);
            }
        }
Пример #3
0
        private void ProductionProcess(eProcessMode process)
        {
            string resultMsg = string.Empty;
            string resultID  = string.Empty;

            try
            {
                //CHECK VALIDATION USER
                DialogResult diaResult;
                using (frmCheckUser fCheckUser = new frmCheckUser(this))
                {
                    diaResult = fCheckUser.ShowDialog();
                    resultID  = fCheckUser.USER_ID;
                }

                if (diaResult == DialogResult.OK)
                {
                    base.ShowWaitProcess();
                    resultMsg = ServiceProvider.Instance.Proxy.CheckValidationUser(resultID);
                    base.HideWaitProcess();

                    if (!string.IsNullOrEmpty(resultMsg))
                    {
                        using (frmProductFinish fProdFinish = new frmProductFinish())
                        {
                            fProdFinish.USER_ID      = resultID;
                            fProdFinish.PROCESS_MODE = process;
                            fProdFinish.ShowDialog();
                        }
                    }
                    else
                    {
                        MessageBox.Show("User : \"" + resultID + "\"\nAuthentication Fail!!", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Exclamation, MessageBoxDefaultButton.Button1);
                    }
                }
            }
            catch (Exception ex)
            {
                base.HideWaitProcess();
                MessageBox.Show(ex.Message);
            }
        }