@TransactionAttribute public String guardar() { String salida = ""; System.out.println("Guardar__________"); Date now = Calendar.getInstance().getTime(); getInstance().setLastUpdate(now); getInstance().setTiempoConsulta(FechasUtil.sumarRestaMinutosFecha(now, 5)); try { if (getInstance().isPersistent()) { // System.out.println("Guardar__________1" + getInstance().getId()); getInstance().setCode("REALIZADA"); getInstance().setResponsable(profileS.getProfileByIdentityKey(identity.getUser().getKey())); getInstance().getSignosVitales().setFechaActual(now); // System.out.println("Guardar__________ 2"); save(getInstance()); if (turno.isPersistent()) { turno.setEstado("Realizada"); save(turno); } FacesMessage msg = new FacesMessage( "Se actualizo Consulta Odontológica: " + getInstance().getId() + " con éxito"); FacesContext.getCurrentInstance().addMessage("", msg); System.out.println("Guardar__________3"); } else { getInstance().setCode("REALIZADA"); getInstance().setFichaOdontologica(fichaOdontolog); getInstance().setResponsable(profileS.getProfileByIdentityKey(identity.getUser().getKey())); getInstance().getSignosVitales().setFechaActual(now); create(getInstance().getSignosVitales()); create(getInstance()); save(getInstance()); if (turno.isPersistent()) { turno.setEstado("Realizada"); save(turno); } FacesMessage msg = new FacesMessage( "Se creo nueva Consulta Odontológica: " + getInstance().getId() + " con éxito"); FacesContext.getCurrentInstance().addMessage("", msg); salida = "/pages/depSalud/odontologia/consultaOdontologica.xhtml?faces-redirect=true" + "&fichaMedicaId=" + getFichaMedicaId() + "&consultaOdontId=" + getInstance().getId() + "&backView=" + getBackView(); } } catch (Exception e) { e.printStackTrace(); FacesMessage msg = new FacesMessage("Error al guardar: " + getInstance().getId()); FacesContext.getCurrentInstance().addMessage("", msg); } return salida; }
@TransactionAttribute public ConsultaOdontologica load() { if (isIdDefined()) { wire(); } // log.info("sgssalud --> cargar instance " + getInstance()); if (getInstance().isPersistent()) { if (getInstance().getResponsable() == null) { getInstance().setResponsable(profileS.getProfileByIdentityKey(identity.getUser().getKey())); } } return getInstance(); }
@PostConstruct public void init() { setEntityManager(em); bussinesEntityService.setEntityManager(em); consultaOdontServicio.setEntityManager(em); fichaMedicaServicio.setEntityManager(em); fichaOdontServicio.setEntityManager(em); profileS.setEntityManager(em); tratamientoServicio.setEntityManager(em); recetaMedicamentoServicio.setEntityManager(em); recetasServicio.setEntityManager(em); receta = new Receta(); resultadosExamenesService.setEntityManager(em); settingService.setEntityManager(em); setting = settingService.findByName("consultaActiva"); // if (getInstance().isPersistent()) { //// this.IniciarDientes(); // Odontograma o = new Odontograma(); // // o.setDientes(listaDientes); //// log.info("Init Dientes " + fichaOdontolog.toString()); // //fichaOdontolog.setOdontograma(o); // //fichaOdontolog.setOdontogramaInicial(o); // } // getInstance().setTiempoConsulta(FechasUtil.sumarRestaMinutosFecha(getInstance().getHoraConsulta(), 30)); // log.info("Odont Inicial " + fichaOdontolog.getOdontogramaInicial()); // log.info("Odont " + fichaOdontolog.getOdontograma()); /*if (!fichaOdontolog.getOdontograma().isPersistent()) { fichaOdontolog.setOdontograma(o); } if (!fichaOdontolog.getOdontogramaInicial().isPersistent()) { fichaOdontolog.setOdontogramaInicial(o); }*/ examenLabService.setEntityManager(em); pedidoServicio.setEntityManager(em); listaExamenLab = examenLabService.getExamenesLab(); pedido = new PedidoExamenLaboratorio(); turnoS.setEntityManager(em); }
@TransactionAttribute public String agregarPedido() { Date now = Calendar.getInstance().getTime(); System.out.println("INGRESo a Guardar _________"); String salida = null; boolean ning = false; for (ExamenLabClinico ex : listaExamenLab) { if (ex.isSelect()) { ning = true; break; } } try { if (!ning) { // save(getInstance()); FacesMessage msg = new FacesMessage(FacesMessage.SEVERITY_WARN, "Debe seleccionar minimo un examen", null); FacesContext.getCurrentInstance().addMessage("", msg); // return null; } else { // this.listaPedidoExamenLabC = pickListExamenesLab.getTarget(); pedido.setFichaOdontologica(fichaOdontolog); pedido.setPaciente(fichaOdontolog.getFichaMedica().getPaciente()); pedido.setEstado("Nuevo"); pedido.setResponsableEmision(profileS.getProfileByIdentityKey(identity.getUser().getKey())); pedido.setFechaPedido(now); create(pedido); save(pedido); update(); // System.out.println("Guardo Con exito 0_________"); ResultadoExamenLabClinico resultadoExa; List<Parametros> pl = null; // for (ExamenLabClinico ex : this.listaExamenLab) { if (ex.isSelect()) { resultadoExa = new ResultadoExamenLabClinico(); resultadoExa.setExamenLab(ex); resultadoExa.setPedidoExamenLab(pedido); pl = examenLabService.getParametrosPorExamen(ex); resultadoExa.agregarValoresResultados(pl); save(resultadoExa); // update(); } } FacesMessage msg = new FacesMessage( "Se agrego nuevo Pedido de Examenes: " + getInstance().getId() + " con éxito"); FacesContext.getCurrentInstance().addMessage("", msg); pedido = new PedidoExamenLaboratorio(); // hc = hcs.buscarPorFichaMedica(fms.getFichaMedicaPorId(fichaMedicaId)); RequestContext.getCurrentInstance().update(":form:tabOpc:tablaPedidos :form:growl"); RequestContext.getCurrentInstance().execute("pedidoDlg.hide();"); salida = "/pages/depSalud/odontologia/consultaOdontologica.xhtml?faces-redirect=true" + "&fichaMedicaId=" + getFichaMedicaId() + "&consultaOdontId=" + getInstance().getId() + "&backView=" + getBackView(); } } catch (Exception e) { e.printStackTrace(); FacesMessage msg = new FacesMessage("Error al guardar: " + getInstance().getId()); FacesContext.getCurrentInstance().addMessage("", msg); } return salida; }