private void GUI_CTCN_FormClosing(object sender, FormClosingEventArgs e) { if (tt.Equals("Create")) { DialogResult dlr = MessageBox.Show("Bạn có chắc chắn Hủy Phiếu nhập hàng này?", "Thông báo", MessageBoxButtons.OKCancel, MessageBoxIcon.Question); if (dlr == DialogResult.OK) { if (ctl.deletePN(PN)) { MessageBox.Show("Hủy phiếu nhập hàng thành công!"); GUI_DX form = new GUI_DX(TK); this.Hide(); form.ShowDialog(); e.Cancel = false; } else { e.Cancel = true; MessageBox.Show("Hủy phiếu nhập hàng thất bại!"); } } else { e.Cancel = true; } } else if (tt.Equals("Cancel")) { GUI_DX form = new GUI_DX(TK); this.Hide(); form.ShowDialog(); e.Cancel = false; } }
private void btnSave_Click(object sender, EventArgs e) { List <CTPHIEUNHAPHANGCHINHANH> ctpn = new List <CTPHIEUNHAPHANGCHINHANH>(); for (int i = 0; i < lst.Rows.Count; i++) { CTPHIEUNHAPHANGCHINHANH tmp = new CTPHIEUNHAPHANGCHINHANH(); tmp.SOPHIEUNHCN = lst.Rows[i].Cells[0].Value.ToString(); tmp.MASP = lst.Rows[i].Cells[2].Value.ToString(); tmp.SOLUONG = int.Parse(lst.Rows[i].Cells[3].Value.ToString()); tmp.TINHTRANG = lst.Rows[i].Cells[4].Value.ToString(); ctpn.Add(tmp); } if (ctl.addListCTNHCN(ctpn)) { if (ctl.updatePNHTS(PN, cbTS.Text, cbCN.Text)) { GUI_DX form = new GUI_DX(TK); tt = "Cancel"; this.Close(); } else { MessageBox.Show("Thất bại!"); } } else { MessageBox.Show("Thất bại!"); } }
private void GUI_CTCN_Update_FormClosing(object sender, FormClosingEventArgs e) { GUI_DX form = new GUI_DX(TK); this.Hide(); form.ShowDialog(); e.Cancel = false; }
private void btnCancel_Click(object sender, EventArgs e) { string sTmp = ""; bool flg = true; if (!vl.Required(txtUser.Text)) { sTmp = sTmp + "Vui lòng điền tên đăng nhập!\n"; flg = false; } if (!vl.Required(txtPass.Text)) { sTmp = sTmp + "Vui lòng điền mật khẩu!\n"; flg = false; } if (flg) { try { TK = db.TAIKHOANs.Single(st => st.TENDANGNHAP.Equals(txtUser.Text) && st.MATKHAU.Equals(txtPass.Text)); if (TK.QUYEN.Equals("Giám đốc")) { GUI_Thongke tk = new GUI_Thongke(TK); this.Hide(); tk.ShowDialog(); this.Close(); } else if (TK.QUYEN.Equals("Nhân viên bán hàng")) { QLHD.GUI_POS sp = new QLHD.GUI_POS(TK, "Login"); this.Hide(); sp.ShowDialog(); this.Close(); } else if (TK.QUYEN.Equals("Quản lý chi nhánh")) { QLNH.GUI_DX sp = new QLNH.GUI_DX(TK); this.Hide(); sp.ShowDialog(); this.Close(); } else if (TK.QUYEN.Equals("Nhân viên kiểm kho")) { QLNH.GUI_NHTS sp = new QLNH.GUI_NHTS(TK); this.Hide(); sp.ShowDialog(); this.Close(); } else if (TK.QUYEN.Equals("Thư ký")) { Dexuat.GUI_DX sp = new Dexuat.GUI_DX(TK); this.Hide(); sp.ShowDialog(); this.Close(); } } catch { MessageBox.Show("Tên đăng nhập hoặc mật khẩu không chính xác!"); txtPass.Text = ""; } } else { MessageBox.Show(sTmp); } }