Exemplo n.º 1
0
        private void LoadPhieuGui()
        {
            List <PhieuGuiDTO> lstPhieuGui = PhieuGuiBLL.LoadPhieuGui();

            dgvPhieuGui.DataSource = lstPhieuGui;
            dgvPhieuGui.Columns["IMaPG"].HeaderText     = "Mã Phiếu Gửi";
            dgvPhieuGui.Columns["IMaPG"].Visible        = false;
            dgvPhieuGui.Columns["DtNgayGui"].HeaderText = "Ngày Gửi";
            dgvPhieuGui.Columns["SNguoiGui"].HeaderText = "Người Gửi";
            //dgvPhieuGui.Columns["IMaCQ"].HeaderText = " Mã Cơ Quan";
            dgvPhieuGui.Columns["IMaCQ"].Visible     = false;
            dgvPhieuGui.Columns["STenCQ"].HeaderText = "Tên Cơ Quan";
        }
Exemplo n.º 2
0
        private void btnSua_Click(object sender, EventArgs e)
        {
            PhieuGuiDTO pgDTO = new PhieuGuiDTO();

            pgDTO.IMaPG     = int.Parse(txtMaPG.Text);
            pgDTO.DtNgayGui = DateTime.Parse(dtpNgayGui.Text);
            pgDTO.SNguoiGui = txtNguoiGui.Text;
            pgDTO.IMaCQ     = int.Parse(cbCoQuan.SelectedValue.ToString());
            if (PhieuGuiBLL.SuaPhieuGui(pgDTO))
            {
                MessageBox.Show("Sửa thành công.", "Thông báo!");
                LoadPhieuGui();
                return;
            }
            MessageBox.Show("Sửa thất bại.", "Thông báo!");
        }
Exemplo n.º 3
0
        private void btnXoa_Click(object sender, EventArgs e)
        {
            if (txtMaPG.Text == "")
            {
                MessageBox.Show("Hãy chọn đơn vị nhận cần xóa.", "Thông báo!");
                return;
            }
            PhieuGuiDTO pgDTO = new PhieuGuiDTO();

            pgDTO.IMaPG = int.Parse(txtMaPG.Text);
            if (PhieuGuiBLL.XoaPhieuGui(pgDTO))
            {
                MessageBox.Show("Xóa thành công.", "Thông báo!");
                LoadPhieuGui();
                return;
            }
            MessageBox.Show("Xóa thất bại.", "Thông báo!");
        }
Exemplo n.º 4
0
        private void btnThem_Click(object sender, EventArgs e)
        {
            if (txtNguoiGui.Text == "")
            {
                MessageBox.Show("Bạn phải nhập đày đủ thông tin.", "Thông báo!");
                return;
            }
            PhieuGuiDTO pgDTO = new PhieuGuiDTO();

            pgDTO.DtNgayGui = DateTime.Parse(dtpNgayGui.Text);
            pgDTO.SNguoiGui = txtNguoiGui.Text;
            pgDTO.IMaCQ     = int.Parse(cbCoQuan.SelectedValue.ToString());
            if (PhieuGuiBLL.ThemPhieuGui(pgDTO))
            {
                MessageBox.Show("Thêm thành công.", "Thông báo!");
                LoadPhieuGui();
                return;
            }
            MessageBox.Show("Thêm thất bại.", "Thông báo!");
        }