public ActionResult List() { // Início: Proteção de rota if (Session["usuario_nivel"] == null) { TempData["msg"] = "Necessário estar logado!"; TempData["msg_type"] = "warning"; return(RedirectToAction("Index", "Home")); } if (Convert.ToInt32(Session["usuario_nivel"]) > 1) { TempData["msg"] = "Você não tem autorização para acessar esta área!"; TempData["msg_type"] = "danger"; return(RedirectToAction("Index", "Home")); } // Fim: Proteção de Rota try { LocalidadeDAO.AtualizaLocalidades(); ItemCategoriaDAO.AtualizaCategorias(); ItemStatusDAO.AtualizaTiposStatus(); List <Item> lista = ItemDAO.GetAll(); TempData["lista_status"] = ItemStatusDAO.lista_status; return(View(lista)); } catch { TempData["msg"] = "Erro ao buscar dados!"; TempData["msg_type"] = "danger"; return(View()); } }
public ActionResult UpdateViaJS() { // Início: Proteção de rota if (Session["usuario_nivel"] == null) { TempData["msg"] = "Necessário estar logado!"; TempData["msg_type"] = "warning"; return(RedirectToAction("Index", "Home")); } // Fim: Proteção de Rota Localidade local = LocalidadeDAO.GetByID(Convert.ToInt32(Request["localidade_id"])); try { ItemStatusDAO.AtualizaTiposStatus(); TempData["localidade"] = LocalidadeDAO.GetByID(local.ID); TempData["itens"] = ItemDAO.GetByLocalidade(local.ID); TempData["todos_itens"] = ItemDAO.GetAll(); TempData["lista_status"] = ItemStatusDAO.lista_status; return(View("Update")); } catch (Exception) { TempData["msg"] = "Ocorreu um erro!"; TempData["msg_type"] = "danger"; return(RedirectToAction("Index", "Home")); } }
public ActionResult Edit(int id) { // Início: Proteção de rota if (Session["usuario_nivel"] == null) { TempData["msg"] = "Necessário estar logado!"; TempData["msg_type"] = "warning"; return(RedirectToAction("Index", "Home")); } if (Convert.ToInt32(Session["usuario_nivel"]) > 1) { TempData["msg"] = "Você não tem autorização para acessar esta área!"; TempData["msg_type"] = "danger"; return(RedirectToAction("Index", "Home")); } // Fim: Proteção de Rota try { ItemStatus cat = ItemStatusDAO.GetByID(id); if (cat != null) { return(View(cat)); } } catch { } TempData["msg"] = "Erro ao buscar dados"; TempData["msg_type"] = "danger"; return(View()); }
public ActionResult Create(ItemStatus cat) { // Início: Proteção de rota if (Session["usuario_nivel"] == null) { TempData["msg"] = "Necessário estar logado!"; TempData["msg_type"] = "warning"; return(RedirectToAction("Index", "Home")); } if (Convert.ToInt32(Session["usuario_nivel"]) > 1) { TempData["msg"] = "Você não tem autorização para acessar esta área!"; TempData["msg_type"] = "danger"; return(RedirectToAction("Index", "Home")); } // Fim: Proteção de Rota try { if (ItemStatusDAO.Create(cat) != null) { TempData["msg"] = "Criado com sucesso!"; TempData["msg_type"] = "success"; return(RedirectToAction("Index")); } } catch { } TempData["msg"] = "Erro ao criar"; TempData["msg_type"] = "danger"; return(View()); }
public ActionResult List() { // Início: Proteção de rota if (Session["usuario_nivel"] == null) { TempData["msg"] = "Necessário estar logado!"; TempData["msg_type"] = "warning"; return(RedirectToAction("Index", "Home")); } if (Convert.ToInt32(Session["usuario_nivel"]) > 1) { TempData["msg"] = "Você não tem autorização para acessar esta área!"; TempData["msg_type"] = "danger"; return(RedirectToAction("Index", "Home")); } // Fim: Proteção de Rota try { return(View(ItemStatusDAO.GetAll())); } catch { return(View()); } }
// GET: Relatorio public ActionResult Index() { LocalidadeDAO.AtualizaLocalidades(); ItemCategoriaDAO.AtualizaCategorias(); ItemStatusDAO.AtualizaTiposStatus(); LocalidadeCategoriaDAO.AtualizaCategorias(); return(View()); }
public ActionResult Create() { // Início: Proteção de rota if (Session["usuario_nivel"] == null) { TempData["msg"] = "Necessário estar logado!"; TempData["msg_type"] = "warning"; return(RedirectToAction("Index", "Home")); } if (Convert.ToInt32(Session["usuario_nivel"]) > 1) { TempData["msg"] = "Você não tem autorização para acessar esta área!"; TempData["msg_type"] = "danger"; return(RedirectToAction("Index", "Home")); } // Fim: Proteção de Rota LocalidadeDAO.AtualizaLocalidades(); ItemCategoriaDAO.AtualizaCategorias(); ItemStatusDAO.AtualizaTiposStatus(); return(View()); }
public ActionResult Edit(int id) { // Início: Proteção de rota if (Session["usuario_nivel"] == null) { TempData["msg"] = "Necessário estar logado!"; TempData["msg_type"] = "warning"; return(RedirectToAction("Index", "Home")); } if (Convert.ToInt32(Session["usuario_nivel"]) > 1) { TempData["msg"] = "Você não tem autorização para acessar esta área!"; TempData["msg_type"] = "danger"; return(RedirectToAction("Index", "Home")); } // Fim: Proteção de Rota try { LocalidadeDAO.AtualizaLocalidades(); ItemCategoriaDAO.AtualizaCategorias(); ItemStatusDAO.AtualizaTiposStatus(); Item item = ItemDAO.GetByID(id); if (item != null) { return(View(item)); } } catch (Exception) { } TempData["msg"] = "Erro ao buscar dados!"; TempData["msg_type"] = "danger"; return(View()); }