Exemplo n.º 1
0
        public ActionResult DeleteConfirmed(int id)
        {
            tbPuesto tbPuesto = db.tbPuesto.Find(id);

            db.tbPuesto.Remove(tbPuesto);
            db.SaveChanges();
            return(RedirectToAction("Index"));
        }
Exemplo n.º 2
0
 public ActionResult Edit([Bind(Include = "pto_Id,are_Id,pto_Descripcion,pto_UsuarioCrea,pto_FechaCrea,pto_UsuarioModifica,pto_FechaModifica")] tbPuesto tbPuesto)
 {
     if (ModelState.IsValid)
     {
         db.Entry(tbPuesto).State = EntityState.Modified;
         db.SaveChanges();
         return(RedirectToAction("Index"));
     }
     return(View(tbPuesto));
 }
Exemplo n.º 3
0
        // GET: Cargos/Delete/5
        public ActionResult Delete(int?id)
        {
            if (id == null)
            {
                return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
            }
            tbPuesto tbPuesto = db.tbPuesto.Find(id);

            if (tbPuesto == null)
            {
                return(HttpNotFound());
            }
            return(View(tbPuesto));
        }
Exemplo n.º 4
0
        public ActionResult Create([Bind(Include = "pto_Id,are_Id,pto_Descripcion,pto_UsuarioCrea,pto_FechaCrea,pto_UsuarioModifica,pto_FechaModifica")] tbPuesto tbPuesto)
        {
            string UserName = "";

            ViewBag.are_Id = new SelectList(db.tbArea, "are_Id", "are_Descripcion", tbPuesto.are_Id);
            try
            {
                int EmployeeID = Function.GetUser(out UserName);
                if (ModelState.IsValid)
                {
                    IEnumerable <Object> List = null;
                    string ErrorMessage       = "";
                    List = db.UDP_Gral_tbPuesto_Insert(tbPuesto.are_Id, tbPuesto.pto_Descripcion, EmployeeID, Function.DatetimeNow());
                    foreach (UDP_Gral_tbPuesto_Insert_Result Puesto in List)
                    {
                        ErrorMessage = Puesto.MensajeError;
                    }
                    if (ErrorMessage.StartsWith("-1"))
                    {
                        Function.BitacoraErrores("Cargos", "CreatePost", UserName, ErrorMessage);
                        ModelState.AddModelError("", "No se pudo insertar el registro, favor contacte al administrador.");
                        return(View());
                    }
                    if (ErrorMessage.StartsWith("-2"))
                    {
                        ModelState.AddModelError("", "Este cargo ya éxiste para esta área.");
                        return(View());
                    }
                    else
                    {
                        TempData["swalfunction"] = "true";

                        return(RedirectToAction("Index"));
                    }
                }
            }
            catch (Exception Ex)
            {
                Function.BitacoraErrores("Cargos", "CreatePost", UserName, Ex.Message.ToString());
                ModelState.AddModelError("", "No se pudo insertar el registro, favor contacte al administrador.");
                return(View());
            }

            return(View(tbPuesto));
        }
Exemplo n.º 5
0
        public bool isDuplicated(tbPuesto tbPuesto)
        {
            bool _boolExist = false;

            try
            {
                int _Exist = (from _tbM in db.tbPuesto where _tbM.pto_Descripcion == tbPuesto.pto_Descripcion && _tbM.pto_Id != tbPuesto.pto_Id && _tbM.are_Id == tbPuesto.are_Id select _tbM).Count();
                if (_Exist >= 1)
                {
                    return(_boolExist = true);
                }
            }
            catch (Exception Ex)
            {
                throw;
            }
            return(_boolExist);
        }
Exemplo n.º 6
0
 // GET: Cargos/Edit/5
 public ActionResult Edit(int?id)
 {
     try
     {
         if (id == null)
         {
             return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
         }
         tbPuesto tbPuesto = db.tbPuesto.Find(id);
         if (tbPuesto == null)
         {
             return(HttpNotFound());
         }
         ViewBag.are_Id = new SelectList(db.tbArea, "are_Id", "are_Descripcion", tbPuesto.are_Id);
         return(View(tbPuesto));
     }
     catch (Exception Ex)
     {
         return(RedirectToAction("Error500", "Home"));
     }
 }
Exemplo n.º 7
0
        // GET: Cargos/Details/5
        public ActionResult Details(int?id)
        {
            try
            {
                if (id == null)
                {
                    return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
                }
                tbPuesto tbPuesto = db.tbPuesto.Find(id);
                if (tbPuesto == null)
                {
                    return(HttpNotFound());
                }
                return(View(tbPuesto));
            }

            catch (Exception Ex)
            {
                //throw;
                return(RedirectToAction("Error500", "Home"));
            }
        }