Esempio n. 1
0
        private void btnDangNhap_Click(object sender, EventArgs e)
        {
            int    username = (int)cbxNhanVien.SelectedValue;
            string password = txtMatKhau.Text;

            if (Login(username, password))
            {
                Program.sAccount = AccountBUS.GetAccount(username);
                if (Program.sAccount.Status == 1)
                {
                    Program.sAccount = AccountBUS.GetAccount(username);
                    if (Program.sAccount.Right == 0)
                    {
                        XoaTruongDangNhap();

                        frm_TrangChu n = new frm_TrangChu();
                        this.Hide();
                        n.ShowDialog();
                        this.Show();

                        LoadAccount();
                    }
                    else if (Program.sAccount.Right == 1)
                    {
                        XoaTruongDangNhap();
                        frm_YeuCauGoiThucUong y = new frm_YeuCauGoiThucUong();
                        this.Hide();
                        y.ShowDialog();
                        this.Show();
                        LoadAccount();
                    }
                    else
                    {
                        this.Close();
                    }
                }
                else
                {
                    Program.sAccount     = null;
                    lblNotification.Text = "Tài khoản của bạn đã bị khóa bởi người quản trị.";
                }
            }
            else
            {
                lblNotification.Text = "Bạn nhập sai tài khoản hoặc mật khẩu. Vui lòng nhập lại!";
            }
        }
Esempio n. 2
0
        private void btnOrder_Click(object sender, EventArgs e)
        {
            frm_YeuCauGoiThucUong frm_Order = new frm_YeuCauGoiThucUong();

            this.Hide();
            frm_Order.ShowDialog();
            if (Program.sAccount.Right == 1)
            {
                btnAdmin.Visible = false;
            }
            if (Program.sAccount.Status == 0)
            {
                btnAdmin.Visible = false;
                btnOrder.Visible = false;
                MessageBox.Show("Tài khoản của bạn đã bị khóa vui lòng đăng xuất khỏi hệ thống!");
            }
            this.Show();
        }