public ActionResult FacturasPendientes() { if (Session["VenCod"] == null) { return(RedirectToAction("SesionExpirada", "Error")); } var vendCodi = Session["ID"].ToString().Trim(); UsuariosModels usr6 = new UsuariosModels(); usr6.id = int.Parse(vendCodi); List <UsuariosModels> CorreoUsuario = new List <UsuariosModels>(); CorreoUsuario = UsuariosDAO.ValidaCorreo(usr6); if (CorreoUsuario[0].email == null || CorreoUsuario[0].email == "") { TempData["Mensaje"] = "<div class='alert alert-warning alert - dismissable'>" + "<strong>Usuario no tiene correo configurado</strong></div>"; return(RedirectToAction("Index", "Index")); } List <NotadeVentaCabeceraModels> doc = new List <NotadeVentaCabeceraModels>(); var docPendientes = ReporteDAO.listarDocPendientes(); if (docPendientes != null) { doc = docPendientes; } ViewBag.doc = doc; return(View()); }
public ActionResult FacturasPendientes(FormCollection frm) { NotadeVentaCabeceraModels notaVenta = new NotadeVentaCabeceraModels(); notaVenta.NVNumero = Int32.Parse(Request.Form["nvnumero"]); List <NotadeVentaCabeceraModels> proceso = ReporteDAO.actualizaEstado(notaVenta); List <NotadeVentaCabeceraModels> doc = ReporteDAO.listarDocPendientes(); ViewBag.doc = doc; VerificationEmail(notaVenta.NVNumero); return(Json(proceso)); }
public ActionResult FacturasPendientes() { List <NotadeVentaCabeceraModels> doc = new List <NotadeVentaCabeceraModels>(); var docPendientes = ReporteDAO.listarDocPendientes(); if (docPendientes != null) { doc = docPendientes; } ViewBag.doc = doc; return(View()); }