protected void ucConfirmDialog_Yes(object sender)
        {
            ucConfirmDialog.Hide();
            Admins vcontroller = new Admins();
            string errMsg = string.Empty;
            try
            {
                int result = vcontroller.duyet_hoadon(Convert.ToString(ucConfirmDialog.Key), true, ref  errMsg);

                if (result > 0)
                {
                    DataTable dt = new DataTable();
                    dt = vcontroller.getall_chitiet_hd(Convert.ToString(ucConfirmDialog.Key), ref  errMsg);
                    //foreach (DataRow row in dt.Rows)
                    //{
                    //    vcontroller.capnhap_soluong(row["masanpham"].ToString(), Convert.ToInt32(row["soluong"].ToString()), ref  errMsg);
                    //}
                    ucNotificationDialog.MessageContent = "duyệt hóa đơn thành công!";
                    ucNotificationDialog.MessageType = 1;
                    ucNotificationDialog.RedirectUrl = "~/Admin/hoadons.aspx";
                    ucNotificationDialog.Show();
                }
                else
                {
                    if (result == -1) { ucNotificationDialog.MessageContent = "Bản ghi không tồn tại!<br/>Vui lòng kiểm tra lại."; }
                    else { ucNotificationDialog.MessageContent = "Hệ thống gặp sự cố!<br/>Vui lòng liên hệ @ để được hỗ trợ."; }

                    ucNotificationDialog.MessageType = 0;
                    ucNotificationDialog.Show();
                }
            }
            catch (Exception ex)
            {
                Response.Write(ex.Message);
                ucNotificationDialog.MessageContent = "Hệ thống gặp sự cố!<br/>Vui lòng liên hệ @ để được hỗ trợ.";
                ucNotificationDialog.MessageType = 0;
                ucNotificationDialog.Show();
            }
            finally
            {
                vcontroller = null;
            }
        }