public static string AddDepartment(string name, string code, string note) { AjaxResponse response = new AjaxResponse(); try { Sys_DanhMucDonViRepository repository = new Sys_DanhMucDonViRepository(); bool isExistCode = repository.IsExistDepartmentCode(code); if (isExistCode) { response.IsSuccess = false; response.Message = "Mã đơn vị đã tồn tại, vui lòng chọn mã khác."; } else { Sys_DanhMucDonVi department = new Sys_DanhMucDonVi(); department.TenDonVi = name; department.MaHieuDonVi = code; department.MaDonViCapTren = 0; department.KichHoat = true; department.NgayTao = DateTime.Now; department.NgayThayDoi = DateTime.Now; department.CapDo = 0; repository.Add(department); repository.SubmitChanges(); response.IsSuccess = true; response.Message = "Cập nhật thành công"; } } catch (Exception ex) { response.IsSuccess = false; response.Message = (ex.Message + ex.StackTrace).EncodeJsString(); } return(JsonConvert.SerializeObject(response)); }
protected void btnSave_Click(object sender, EventArgs e) { try { int groupdID = 0; string name = txtCode.Text; string role = string.Empty; bool isExistName = false;// Sys_DanhMucDonVi entity = new Sys_DanhMucDonVi(); Sys_DanhMucDonViRepository repository = new Sys_DanhMucDonViRepository(); if (id != "0") { entity = repository.GetById(int.Parse(id)); if (entity.MaHieuDonVi != txtCode.Text) { isExistName = repository.IsExistDepartmentCode(name); } } else { isExistName = repository.IsExistDepartmentCode(name); } if (isExistName) { ClientScriptManager cs = Page.ClientScript; String cstext1 = "alert('Tên nhóm đã tồn tại, vui lòng chọn tên khác');"; cs.RegisterStartupScript(this.GetType(), "alert", cstext1, true); return; } entity.MaHieuDonVi = txtCode.Text; entity.NgayThayDoi = DateTime.Now; entity.NgayTao = DateTime.Now; entity.TenDonVi = txtName.Text; entity.GhiChu = txtNote.Text; int temp = 0; int.TryParse(Request.Form["ddlDepartment"], out temp); entity.MaDonViCapTren = temp; if (id == "0") { repository.Add(entity); } repository.SubmitChanges(); groupdID = entity.ID; Response.Redirect("default.aspx?page=department"); } catch (Exception ex) { //lblMessage.CssClass = "error"; //lblMessage.Visible = true; //lblMessage.Text = "Lỗi trong quá trình cập nhật, lỗi: " + ex.Message; string message = "Lỗi trong quá trình cập nhật, lỗi: " + ex.Message; String cstext2 = "alert('" + message + "');"; Page.ClientScript.RegisterStartupScript(this.GetType(), "alert", cstext2, true); } }