/*
* The MIT License
*
* Copyright 2012 Universidad de Montemorelos A. C.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package mx.edu.um.mateo.rh.web;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.validation.Valid;
import mx.edu.um.mateo.general.model.Usuario;
import mx.edu.um.mateo.general.utils.Constantes;
import mx.edu.um.mateo.general.utils.ObjectRetrievalFailureException;
import mx.edu.um.mateo.general.utils.ReporteException;
import mx.edu.um.mateo.general.web.BaseController;
import mx.edu.um.mateo.rh.model.Concepto;
import mx.edu.um.mateo.rh.service.ConceptoManager;
import org.apache.commons.lang.StringUtils;
import org.hibernate.exception.ConstraintViolationException;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.transaction.annotation.Transactional;
import org.springframework.ui.Model;
import org.springframework.validation.BindingResult;
import org.springframework.validation.Errors;
import org.springframework.validation.ObjectError;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.servlet.mvc.support.RedirectAttributes;
/**
*
* @author AMDA
*/
@Controller
@RequestMapping(Constantes.PATH_CONCEPTO)
public class ConceptoController extends BaseController {
@Autowired
private ConceptoManager conceptoManager;
public ConceptoController() {
log.info("Se ha creado una nueva instancia de ConceptoController");
}
@RequestMapping
public String lista(HttpServletRequest request, HttpServletResponse response,
@RequestParam(required = false) String filtro,
@RequestParam(required = false) Long pagina,
@RequestParam(required = false) String tipo,
@RequestParam(required = false) String correo,
@RequestParam(required = false) String order,
@RequestParam(required = false) String sort,
Model modelo) {
log.debug("Mostrando lista de conceptos");
Map<String, Object> params = new HashMap<>();
Long empresaId = (Long) request.getSession().getAttribute("empresaId");
params.put("empresa", empresaId);
if (StringUtils.isNotBlank(filtro)) {
params.put("filtro", filtro);
}
if (StringUtils.isNotBlank(order)) {
params.put("order", order);
params.put("sort", sort);
}
if (pagina != null) {
params.put("pagina", pagina);
}
if (StringUtils.isNotBlank(tipo)) {
params.put("reporte", true);
params = conceptoManager.lista(params);
try {
generaReporte(tipo, (List<Concepto>) params.get(Constantes.CONCEPTO_LIST), response, "conceptos", Constantes.EMP, empresaId);
return null;
} catch (ReporteException e) {
log.error("No se pudo generar el reporte", e);
}
}
if (StringUtils.isNotBlank(correo)) {
params.put("reporte", true);
params = conceptoManager.lista(params);
params.remove("reporte");
try {
enviaCorreo(correo, (List<Concepto>) params.get(Constantes.CONCEPTO_LIST), request, "conceptos", Constantes.EMP, empresaId);
modelo.addAttribute("message", "lista.enviada.message");
modelo.addAttribute("messageAttrs", new String[]{messageSource.getMessage("concepto.lista.label", null, request.getLocale()), ambiente.obtieneUsuario().getUsername()});
} catch (ReporteException e) {
log.error("No se pudo enviar el reporte por correo", e);
}
}
params = conceptoManager.lista(params);
modelo.addAttribute(Constantes.CONCEPTO_LIST, params.get(Constantes.CONCEPTO_LIST));
this.pagina(params, modelo, Constantes.CONCEPTO_LIST, pagina);
return Constantes.PATH_CONCEPTO_LISTA;
}
@RequestMapping("/ver/{id}")
public String ver(@PathVariable Long id, Model modelo) throws ObjectRetrievalFailureException {
log.debug("Mostrando concepto {}", id);
Concepto concepto = conceptoManager.obtiene(id);
log.debug("Mostrando concepto {}", concepto);
modelo.addAttribute(Constantes.CONCEPTO_KEY, concepto);
return Constantes.PATH_CONCEPTO_VER;
}
@RequestMapping("/nuevo")
public String nuevo(Model modelo) {
log.debug("Nuevo concepto");
Concepto concepto = new Concepto();
modelo.addAttribute(Constantes.CONCEPTO_KEY, concepto);
return Constantes.PATH_CONCEPTO_NUEVO;
}
@Transactional
@RequestMapping(value = "/graba", method = RequestMethod.POST)
public String graba(HttpServletRequest request, HttpServletResponse response, @Valid Concepto concepto, BindingResult bindingResult, Errors errors, Model modelo, RedirectAttributes redirectAttributes) {
for (String nombre : request.getParameterMap().keySet()) {
log.debug("Param: {} : {}", nombre, request.getParameterMap().get(nombre));
}
if (bindingResult.hasErrors()) {
log.debug("Hubo algun error en la forma, regresando");
for (ObjectError error : bindingResult.getAllErrors()) {
log.debug("Error: {}", error);
}
return Constantes.PATH_CONCEPTO_NUEVO;
}
try {
Usuario usuario = ambiente.obtieneUsuario();
conceptoManager.graba(concepto, usuario);
log.debug("concepto{}", concepto);
ambiente.actualizaSesion(request.getSession(), usuario);
} catch (ConstraintViolationException e) {
log.error("No se pudo crear al concepto", e);
/**
* TODO CORREGIR MENSAJE DE ERROR
*/
errors.rejectValue("nombre", "concepto.errors.creado", e.toString());
return Constantes.PATH_CONCEPTO_NUEVO;
}
redirectAttributes.addFlashAttribute("message", "concepto.creado.message");
redirectAttributes.addFlashAttribute("messageAttrs", new String[]{concepto.getNombre()});
//return "redirect:/rh/concepto/ver/" + concepto.getId();
log.debug("concepto{}",concepto);
return "redirect:" + Constantes.PATH_CONCEPTO;
}
@RequestMapping("/edita/{id}")
public String edita(@PathVariable Long id, Model modelo) {
log.debug("Edita concepto {}", id);
Concepto concepto;
try {
concepto = conceptoManager.obtiene(id);
} catch (ObjectRetrievalFailureException ex) {
log.error("No se pudo obtener al concepto", ex);
// errors.rejectValue("concepto", "registro.noEncontrado", new String[]{"concepto"}, null);
return Constantes.PATH_CONCEPTO;
}
modelo.addAttribute(Constantes.CONCEPTO_KEY, concepto);
return Constantes.PATH_CONCEPTO_EDITA;
}
@RequestMapping(value = "/elimina", method = RequestMethod.POST)
public String elimina(HttpServletRequest request, @RequestParam Long id, Model modelo, @ModelAttribute Concepto concepto, BindingResult bindingResult, RedirectAttributes redirectAttributes) {
log.debug("Elimina concepto");
try {
Long empresaId = (Long) request.getSession().getAttribute("empresaId");
//String nombre = conceptoManager.elimina(id, empresaId);
String nombre = conceptoManager.elimina(id);
ambiente.actualizaSesion(request.getSession());
redirectAttributes.addFlashAttribute("message", "concepto.eliminado.message");
redirectAttributes.addFlashAttribute("messageAttrs", new String[]{nombre});
}
catch (Exception e) {
log.error("No se pudo eliminar el concepto " + id, e);
bindingResult.addError(new ObjectError("concepto", new String[]{"concepto.no.eliminado.message"}, null, null));
return Constantes.PATH_CONCEPTO_VER;
}
return "redirect:" + Constantes.PATH_CONCEPTO;
}
}