private void btXoa_Click(object sender, EventArgs e) { /// List<ChiTietPhieuNhap> _DSCTPN = PhieuNhapManager.ChiTiet.getAll(); /// kiểm trạng trạng thái DialogResult dialogResult = MessageBox.Show("Bạn có muốn xóa", "Thông báo", MessageBoxButtons.YesNo); if (dialogResult == DialogResult.Yes) { if (!txbMaPhieuNhap.Text.Equals("")) { PhieuNhap pn = new PhieuNhap(); int x = int.Parse(txbMaPhieuNhap.Text.ToString()); var phieu = PhieuNhapManager.find(x); if (phieu.TrangThai != 1) { if (PhieuNhapManager.delete(phieu.MaSoPhieuNhap)) { MessageBox.Show("Đã xóa thành công"); LoadDSPM(); } else { MessageBox.Show("Không xóa được"); } } else { MessageBox.Show("Không tìm thấy"); } } else { MessageBox.Show("Chọn phiếu nhập cần xóa"); } } else if (dialogResult == DialogResult.No) { return; } }
public ActionResult Delete(int id, FormCollection collection) { try { if (PhieuNhapManager.delete((int)id)) { putSuccessMessage("Xóa thành công"); return(RedirectToAction("All")); } else { putErrorMessage("Xóa thất bại"); } return(RedirectToAction("Delete", new { id })); } catch (Exception ex) { putErrorMessage(ex.Message); return(RedirectToAction("Delete", new { id })); } }