//add private void button1_Click(object sender, EventArgs e) { if (string.IsNullOrWhiteSpace(textBox1.Text)) { MessageBox.Show("Bạn chưa nhập mã phiếu"); textBox1.Focus(); return; } PhieubaocaoDoanhThuDTO dt = new PhieubaocaoDoanhThuDTO(); dt.maphieuBCDT = textBox1.Text; dt.ngayLapPhieu = DateTime.Today; dt.tongdt = 0; if (bcdtBUS.CheckExist(DateTime.Today.Month, DateTime.Today.Year)) { MessageBox.Show("Thêm hồ sơ thất bại. Tháng này đã có phiếu báo cáo doanh thu"); return; } bool kq = bcdtBUS.Them(dt); if (kq == false) { MessageBox.Show("Thêm hồ sơ thất bại. Vui lòng kiểm tra lại dũ liệu"); } else { MessageBox.Show("Thêm hồ sơ thành công"); textBox1.Text = ""; ChitietBaoCaoDoanhThu frm = new ChitietBaoCaoDoanhThu(dt, true); frm.ShowDialog(); } loadData_Vao_GridView(); }
//xem chi tiet private void xemChiTiếtToolStripMenuItem_Click(object sender, EventArgs e) { int currentRowIndex = dataGridView1.CurrentCellAddress.Y;// 'current row selected //'Verify that indexing OK if (-1 < currentRowIndex && currentRowIndex < dataGridView1.RowCount) { PhieubaocaoDoanhThuDTO ma = (PhieubaocaoDoanhThuDTO)dataGridView1.Rows[currentRowIndex].DataBoundItem; if (ma != null) { ChitietBaoCaoDoanhThu frm = new ChitietBaoCaoDoanhThu(ma, false); frm.ShowDialog(); loadData_Vao_GridView(); } } }