Exemplo n.º 1
0
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!IsPostBack)
            {
                // xử lý chấp nhận hồ sơ ở đây
                string s = Request.QueryString["MaHoSoKeKhaiDuBi"].ToString() ;
                XuLyDonXinCapGCN don = new XuLyDonXinCapGCN();

                if (!don.KiemTraDuDieuKienChapNhan(s))
                {
                    Response.Write("<script>alert('Hồ sơ chưa đủ điều kiện!')</script>");
                    return;
                }

                if(don.ChapNhanHoSo(s))
                {
                    if (don.XoaHoSoDuBi(s))
                    {
                        Response.Write("<script>alert('Thành công!')</script>");
                        Response.Redirect("~/VanPhong/TiepNhanDon/BaoCaoHoSoDangKyMoi.aspx");
                    }
                    else
                    {
                        Response.Write("<script>alert('LỖI! ~_~ ')</script>");
                    }
                }

            }
        }
Exemplo n.º 2
0
        protected void LoadThongTin(string MaHoSo)
        {
            try
            {
                long _maHoSo = long.Parse(MaHoSo);

                XuLyDonXinCapGCN don = new XuLyDonXinCapGCN();

                tblHoSoKeKhai kk = don.LayThongTinHoSoKeKhai(MaHoSo);
                if (kk != null)
                {
                    lblTieuDeDon.Text = kk.KinhGuiCoQuanChucNang;
                    lblNguoiVietDon.Text = kk.NguoiVietDon;
                    lblEmail.Text = kk.DiaChiMail;
                    lblDienThoai.Text = kk.SoDienThoaiLienHe;
                    lblDeNghi.Text = kk.MaLoaiDeNghi;
                    lblDeNghiKhac.Text = kk.DeNghiKhac;
                    lblNgayNhanHoSo.Text = ((DateTime)kk.NgayNhanHoSo).ToString("dd/MM/yyyy");
                    lblNguoiNhanHoSo.Text = kk.NguoiNhanHoSo;
                    lblSoVaoSo.Text = kk.SoTiepNhan;
                    lblQuyen.Text = kk.Quyen;
                    lblNghiaVuTaiChinh.Text = kk.NghiaVuTaiChinh;
                    lblGiayToKemTheo.Text = kk.GiayToKemTheo;
                }

                grvChu.DataSource = don.dsChu(MaHoSo);
                grvChu.DataBind();

                grvThuaDat.DataSource = don.dsThuaDat(MaHoSo);
                grvThuaDat.DataBind();

                grvNhaO.DataSource = don.dsNhaO(MaHoSo);
                grvNhaO.DataBind();

                // thong tin rung cay lau nam...

                // thong tin rung san xuat...

                // thong tin xet duyet cap co so
                tblXacNhanCapCoSo xd1 = don.LayThongTinXacNhanCapCoSo(MaHoSo);
                if (xd1 != null)
                {
                    lblNoiDungKeKhaiSoVoiHienTai.Text = xd1.NoiDungKeKhaiSoVoiHienTrang;
                    lblNguonGoc.Text = xd1.NguonGocSuDungDat;
                    lblThoiDiemSuDungDat.Text = ((DateTime)xd1.ThoiDiemSuDungDatVaoMucDichDangKy).ToString("dd/MM/yyyy");
                    lblThoiDiemTaoTaiSan.Text = ((DateTime)xd1.ThoiDiemTaoLapTaiSanGanLienVoiDat).ToString("dd/MM/yyyy");
                    lblTinhTrangTranhChap.Text = xd1.TinhTrangTranhChapDatDaiVaTaiSan;
                    lblPhuHopQuyHoach.Text = xd1.SuPhuHopVoiQuyHoachSuDungDatVaQuyHoachXayDung;
                    lblNoiDungKhac.Text = xd1.NoiDungKhac;
                    lblDiaChinhNgay.Text = ((DateTime)xd1.DiaChinh_NgayXacNhan).ToString("dd/MM/yyyy");
                    lblDiaChinhNguoi.Text = xd1.DiaChinh_CanBo;
                    lblDiaChinhTieuDe.Text = xd1.DiaChinh_TieuDeKy;
                    lblUBNDNgay.Text = ((DateTime)xd1.UBND_NgayKy).ToString("dd/MM/yyyy");
                    lblUBNDNguoi.Text = xd1.UBND_NguoiKy;
                    lblUBNDTieuDe.Text = xd1.UBND_TieuDeKy;
                }

                // thong tin xac nhan co quan dang ky
                tblXacNhanCoQuanDangKyDatDai xd2 = don.LayThongTinXacNhanCoQuanDangKy(MaHoSo);
                if(xd2!= null)
                {
                    lblNgayKiemTra.Text = ((DateTime)xd2.NgayKiemTra).ToString("dd/MM/yyyy");
                    lblNguoiKiemTra.Text = xd2.NguoiKiemTra;
                    lblChucVuNguoiKiemTra.Text = xd2.ChucVuNguoiKiemTra;
                    lblNoiDungYKien.Text = xd2.NoiDungYKien;
                    lblGhiChuYKien.Text = xd2.GhiChu;
                    lblNgayKyVPDK.Text = ((DateTime)xd2.NgayKy).ToString("dd/MM/yyyy");
                    lblGiamDocVPDK.Text = xd2.GiamDoc;
                }

            }
            catch (Exception)
            {
                return;
            }
        }