Beispiel #1
0
        public ActionResult Update(icb_zonaperitaje zona, int?menu)
        {
            if (ModelState.IsValid)
            {
                //consulta si el registro esta en BD teniendo en cuenta el id de consulta
                int nom = (from a in context.icb_zonaperitaje
                           where a.zonaper_nombre == zona.zonaper_nombre || a.zonaper_id == zona.zonaper_id
                           select a.zonaper_nombre).Count();
                if (nom == 1)
                {
                    zona.zonaperfec_actualizacion    = DateTime.Now;
                    zona.zonaperuserid_actualizacion = Convert.ToInt32(Session["user_usuarioid"]);
                    context.Entry(zona).State        = EntityState.Modified;
                    context.SaveChanges();
                    TempData["mensaje"] = "La actualización de la zona fue exitoso";
                }
                else
                {
                    TempData["mensaje_error"] = "El registro que ingreso no se encuentra, por favor valide!";
                }
            }

            BuscarFavoritos(menu);
            return(View(zona));
        }
Beispiel #2
0
        // GET: piezas/Edit/5
        public ActionResult Update(int?id, int?menu)
        {
            //valida si el id es null
            if (id == null)
            {
                return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
            }

            icb_zonaperitaje zona = context.icb_zonaperitaje.Find(id);

            if (zona == null)
            {
                return(HttpNotFound());
            }

            BuscarFavoritos(menu);
            return(View(zona));
        }
Beispiel #3
0
        public ActionResult Crear(icb_zonaperitaje zona, int?menu)
        {
            if (ModelState.IsValid)
            {
                icb_zonaperitaje buscarZona = context.icb_zonaperitaje.FirstOrDefault(x => x.zonaper_nombre == zona.zonaper_nombre);
                if (buscarZona == null)
                {
                    zona.zonaperfec_creacion    = DateTime.Now;
                    zona.zonaperuserid_creacion = Convert.ToInt32(Session["user_usuarioid"]);
                    context.icb_zonaperitaje.Add(zona);

                    context.SaveChanges();
                    TempData["mensaje"] = "La Zona " + zona.zonaper_nombre + " se creo correctamente";
                }
                else
                {
                    TempData["mensaje_error"] = "La zona " + zona.zonaper_nombre + " ya existe";
                }
            }

            BuscarFavoritos(menu);
            return(View());
        }