Skip to main content

< p : schedule con filtros>

Mostrare como implementar un < p: schedule > de Primefaces con filtros usando jmoordbcore


Se cuenta con una pagina Jakarta Server Faces



En el Controller en el init definimos una operacion

 @PostConstruct

    public void init() {

        try {

 }

}


MĆ©todo refresh() , obtiene el primer dĆ­a de la semana y el ultimo dĆ­a de la semana actual, se invoca al loadSchedule()



    public String refresh() {

        try {   

            Date start = DateUtil.convertirLocalDateToJavaDate(DateUtil.primerDiaSemanaActual(Boolean.FALSE));

            Date end = DateUtil.convertirLocalDateToJavaDate(DateUtil.ultimoDiaSemanaActual(Boolean.FALSE));

             tarjetaFinalizadoList = new ArrayList<>();

            tarjetaPendienteList = new ArrayList<>();

            tarjetaProgresoList = new ArrayList<>();

            loadSchedule();

            PrimeFaces.current().ajax().update(":form:schedule");

        } catch (Exception e) {

            FacesUtil.errorMessage(FacesUtil.nameOfClassAndMethod() + " " + e.getLocalizedMessage());

        }

        return "";

    }


    private Boolean loadTarjetaPendiente(Date start, Date end) {

        Boolean result = Boolean.FALSE;

        tarjetaPendienteList = new ArrayList<>();

        try {

            Integer page = 0;

            Integer size = 0;

            Document sortTarjeta = new Document("idtarjeta", 1).append("prioridad", 1);

             Bson filterDate = DocumentUtil.createBsonBetweenDateWithoutHours(

                    "fechainicial", start, "fechainicial", end);

            if (isPropietario) {

                Bson filter0 = eq("idproyecto", proyectoSelected.getIdproyecto());


                Bson filter = and(filter0,

                        filterDate,

                        eq("active", Boolean.TRUE),

                        eq("columna", "pendiente"));

              


                tarjetaPendienteList = tarjetaServices.lookup(filter, sortTarjeta, page, size);

            } else {

                Bson filter0 = eq("idproyecto", proyectoSelected.getIdproyecto());

                Bson filter = and(filter0,

                        filterDate,

                        eq("active", Boolean.TRUE),

                        eq("columna", "pendiente"),

                        eq("user.iduser", userLogged.getIduser()));


                tarjetaPendienteList = tarjetaServices.lookup(filter, sortTarjeta, page, size);

            }

        } catch (Exception e) {

            FacesUtil.errorMessage(FacesUtil.nameOfClassAndMethod() + " " + e.getLocalizedMessage());

        }

        return result;

    }




Cree el mĆ©todo loadSchedule()

Procesa el evento loadEvents del schedule mediante la implementaciĆ³n de lazyEventModel


    public void loadSchedule() {

        try {

            lazyEventModel = new LazyScheduleModel() {

                List<Tarjeta> list = new ArrayList<>();

                @Override

                public void loadEvents(LocalDateTime start, LocalDateTime end) {

                    loadTarjetaPendiente(DateUtil.convertLocalDateTimeToJavaDate(start), DateUtil.convertLocalDateTimeToJavaDate(end));

                    loadTarjetaProgreso(DateUtil.convertLocalDateTimeToJavaDate(start), DateUtil.convertLocalDateTimeToJavaDate(end));

                    loadTarjetaFinalizado(DateUtil.convertLocalDateTimeToJavaDate(start), DateUtil.convertLocalDateTimeToJavaDate(end));

                    tarjetaPendienteList.forEach((a) -> {

                        if (!a.getBacklog()) {

                            DefaultScheduleEvent event = DefaultScheduleEvent.builder()

                                    .title(a.getTarjeta() + " / " + siglasColaboradores(a.getUserView()))

                                    .startDate(JmoordbCoreDateUtil.convertToLocalDateTimeViaInstant(a.getFechainicial()))

                                    .endDate(JmoordbCoreDateUtil.convertToLocalDateTimeViaInstant(a.getFechafinal()))

                                    .description(a.getDescripcion())

                                    .id(a.getIdtarjeta().toString())

                                    .backgroundColor("red")

                                    .build();


                            addEvent(event);

                        } else {

                            DefaultScheduleEvent event = DefaultScheduleEvent.builder()

                                    .title("(R) " + a.getTarjeta() + " / " + siglasColaboradores(a.getUserView()))

                                    .startDate(JmoordbCoreDateUtil.convertToLocalDateTimeViaInstant(a.getFechainicial()))

                                    .endDate(JmoordbCoreDateUtil.convertToLocalDateTimeViaInstant(a.getFechafinal()))

                                    .description(a.getDescripcion())

                                    .id(a.getIdtarjeta().toString())

                                    .backgroundColor("blue")

                                    .build();

                            addEvent(event);

                        }

                    });

               }

            };

        } catch (Exception e) {

            FacesUtil.errorMessage(FacesUtil.nameOfClassAndMethod() + " " + e.getLocalizedMessage());

        }

    }


El mĆ©todo actionCommandButton() se invoca desde el botĆ³n


    public String actionCommandButton() {

        try {

            showSchedule = Boolean.TRUE;

            refresh();

        } catch (Exception e) {

            FacesUtil.errorMessage(FacesUtil.nameOfClassAndMethod() + " " + e.getLocalizedMessage());

        }

        return "";

    }

  

Comments

Popular posts from this blog

Tutorial bƔsico de aplicaciones Web con NetBeans parte 1

NetBeans ofrece un excelente soporte para el desarrollo de aplicaciones Web, en esta ocasiĆ³n lo haremos utilizando el Framework Java Server Faces 2.0. En el Menu Seleccionamos Nuevo->Proyecto y luego en Categorias Java Web y en tipo de Proyectos Web  Application indicamos el nombre del proyecto Seleccinamos el servidor Web, usamos GlassFish ya que este soporta EJB3.0 y JSF 2.0 Framework Java Server Faces El IDE genera el esquelto del proyecto Web Pages   almacenamos las paginas .html, xhtml, jsf, los archivos de recursos, los scripts .js, imagenes Source Packages    Son las clases Java  Test Packages    Son las clases que usamos para los Test Libraries     Tenemos las bibliotecas de Java y GlassFish necesarias para ejecutar la aplicaciĆ³n Web. Test Libraries     EstĆ”n las bibliotecas usadas para los test  Configuration Files    Archivos de configuraciĆ³n de la aplicaciĆ³n. Ejecutamos la...

Incrementar Memoria NetBeans

Algunas veces necesitamos incrementar la memoria para un mejor rendimiento. http://www.netbeans.org/community/releases/55/uml-download.html Este es un ejemplo para UML. DescripciĆ³n en ingles. Increasing Memory Settings (applicable to all builds) The default memory settings for NetBeans should be increased for UML projects. If you have the available memory, Locate your NetBeans installation directory ($install_dir). This can be found by starting up NetBeans and selecting Help -> About then select the Detail tab. Edit the $install_dir/etc/netbeans.conf file. Find the line defining netbeans_default_options . Increase the maximum memory attribute to -J-Xmx512m. If you experience heap overflows while working with larger files, you should increase this value further.

Cambiando el estado de un checkbox

Cambiando el Estado de un CheckBox Algunas veces deseamos controlar el estado de un checkbox o cambiarlo segĆ¹n determinadas condiciones. Pasos: 1. Creamos un proyecto Web. 2. En el diseƱador agregamos un checkbox y dos botones. * Dar click derecho en el checkbox y luego seleccionar Add Binding Attribute, para agregar los atributos al checkbox, de manera que los podamos usar en nuestro cĆ³digo. Generando automĆ”ticamente private Checkbox checkbox1 = new Checkbox(); public Checkbox getCheckbox1() { return checkbox1; } public void setCheckbox1(Checkbox c) { this.checkbox1 = c; } 3.Damos click derecho en el botĆ³n Habilitar, y seleccionamos Edit Action Event Handler. A continuaciĆ³n, agregamos el cĆ³digo: this.checkbox1.setSelected(true);, el mĆ©todo setSelected con valor true, marca el checkbox como seleccionado, y un valor de false, quita la marca. public String button1_action() { // TODO: Process the action. Return value is a navigation // ...