Compare commits
7 Commits
main
...
actividadH
Author | SHA1 | Date | |
---|---|---|---|
|
5f569333ba | ||
|
3c626e3c85 | ||
|
e45d0d828f | ||
|
b94ec365c7 | ||
|
e2f128c301 | ||
|
ebb5454b29 | ||
|
dee4bcaf3b |
@ -1,6 +1,19 @@
|
|||||||
package com.primefactorsolutions.model;
|
package com.primefactorsolutions.model;
|
||||||
|
|
||||||
public final class Actividad {
|
import jakarta.persistence.Entity;
|
||||||
|
import jakarta.persistence.GeneratedValue;
|
||||||
|
import jakarta.persistence.GenerationType;
|
||||||
|
import jakarta.persistence.Id;
|
||||||
|
|
||||||
|
import java.util.UUID;
|
||||||
|
|
||||||
|
|
||||||
|
@Entity
|
||||||
|
public class Actividad extends BaseEntity {
|
||||||
|
@Id
|
||||||
|
@GeneratedValue(strategy = GenerationType.UUID)
|
||||||
|
private UUID id;
|
||||||
|
|
||||||
private String nombre;
|
private String nombre;
|
||||||
private double lunes;
|
private double lunes;
|
||||||
private double martes;
|
private double martes;
|
||||||
@ -12,6 +25,8 @@ public final class Actividad {
|
|||||||
private String tarea;
|
private String tarea;
|
||||||
private double horas;
|
private double horas;
|
||||||
|
|
||||||
|
public Actividad() {}
|
||||||
|
|
||||||
public Actividad(final Builder builder) {
|
public Actividad(final Builder builder) {
|
||||||
this.nombre = builder.nombre;
|
this.nombre = builder.nombre;
|
||||||
this.lunes = builder.lunes;
|
this.lunes = builder.lunes;
|
||||||
@ -25,10 +40,59 @@ public final class Actividad {
|
|||||||
this.horas = builder.horas;
|
this.horas = builder.horas;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String setNombre(final String nombre) {
|
||||||
|
this.nombre = nombre;
|
||||||
|
return nombre;
|
||||||
|
}
|
||||||
|
|
||||||
public String getNombre() {
|
public String getNombre() {
|
||||||
return nombre;
|
return nombre;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void setLunes(double lunes) {
|
||||||
|
this.lunes = lunes;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setMartes(double martes) {
|
||||||
|
this.martes = martes;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setMiercoles(double miercoles) {
|
||||||
|
this.miercoles = miercoles;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setJueves(double jueves) {
|
||||||
|
this.jueves = jueves;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setViernes(double viernes) {
|
||||||
|
this.viernes = viernes;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setSabado(double sabado) {
|
||||||
|
this.sabado = sabado;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDomingo(double domingo) {
|
||||||
|
this.domingo = domingo;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
public void setTarea(String tarea) {
|
||||||
|
this.tarea = tarea;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setHoras(double horas) {
|
||||||
|
this.horas = horas;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
public double getLunes() {
|
public double getLunes() {
|
||||||
return lunes;
|
return lunes;
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,81 @@
|
|||||||
|
package com.primefactorsolutions.model;
|
||||||
|
|
||||||
|
import jakarta.persistence.*;
|
||||||
|
import java.time.LocalDate;
|
||||||
|
import java.util.UUID;
|
||||||
|
|
||||||
|
@Entity
|
||||||
|
@Table(name = "Actividades_hours")
|
||||||
|
public class ActividadesHours {
|
||||||
|
|
||||||
|
@Id
|
||||||
|
@GeneratedValue(strategy = GenerationType.AUTO)
|
||||||
|
private UUID id;
|
||||||
|
|
||||||
|
@ManyToOne
|
||||||
|
@JoinColumn(name = "employee_id", nullable = false)
|
||||||
|
private Employee employee;
|
||||||
|
|
||||||
|
@ManyToOne
|
||||||
|
@JoinColumn(name = "actividad_id", nullable = false)
|
||||||
|
private Actividad actividad;
|
||||||
|
|
||||||
|
@Column(nullable = false)
|
||||||
|
private double totalHours;
|
||||||
|
|
||||||
|
@Column(nullable = false)
|
||||||
|
private int weekNumber;
|
||||||
|
|
||||||
|
@Column(nullable = false)
|
||||||
|
private LocalDate fecha;
|
||||||
|
|
||||||
|
// Getters y Setters
|
||||||
|
|
||||||
|
public UUID getId() {
|
||||||
|
return id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setId(UUID id) {
|
||||||
|
this.id = id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Employee getEmployee() {
|
||||||
|
return employee;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setEmployee(Employee employee) {
|
||||||
|
this.employee = employee;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Actividad getActividad() {
|
||||||
|
return actividad;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setActividad(Actividad actividad) {
|
||||||
|
this.actividad = actividad;
|
||||||
|
}
|
||||||
|
|
||||||
|
public double getTotalHours() {
|
||||||
|
return totalHours;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTotalHours(double totalHours) {
|
||||||
|
this.totalHours = totalHours;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getWeekNumber() {
|
||||||
|
return weekNumber;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setWeekNumber(int weekNumber) {
|
||||||
|
this.weekNumber = weekNumber;
|
||||||
|
}
|
||||||
|
|
||||||
|
public LocalDate getFecha() {
|
||||||
|
return fecha;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setFecha(LocalDate fecha) {
|
||||||
|
this.fecha = fecha;
|
||||||
|
}
|
||||||
|
}
|
@ -5,7 +5,11 @@ import jakarta.persistence.GeneratedValue;
|
|||||||
import jakarta.persistence.GenerationType;
|
import jakarta.persistence.GenerationType;
|
||||||
import jakarta.persistence.Id;
|
import jakarta.persistence.Id;
|
||||||
import jakarta.persistence.ManyToOne;
|
import jakarta.persistence.ManyToOne;
|
||||||
|
import jakarta.persistence.CascadeType;
|
||||||
|
|
||||||
|
import java.time.LocalDate;
|
||||||
|
import java.time.temporal.WeekFields;
|
||||||
|
import java.util.Locale;
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
|
|
||||||
@Entity
|
@Entity
|
||||||
@ -17,11 +21,16 @@ public class HoursWorked extends BaseEntity {
|
|||||||
@ManyToOne
|
@ManyToOne
|
||||||
private Employee employee;
|
private Employee employee;
|
||||||
|
|
||||||
|
@ManyToOne(cascade = CascadeType.PERSIST) // Añadimos cascade para que persista la actividad automáticamente
|
||||||
|
private Actividad actividad;
|
||||||
|
|
||||||
private int weekNumber;
|
private int weekNumber;
|
||||||
private double totalHours;
|
private double totalHours;
|
||||||
|
private LocalDate fecha;
|
||||||
|
|
||||||
public HoursWorked() { }
|
public HoursWorked() {}
|
||||||
|
|
||||||
|
// Getters y Setters
|
||||||
public UUID getId() {
|
public UUID getId() {
|
||||||
return id;
|
return id;
|
||||||
}
|
}
|
||||||
@ -34,8 +43,16 @@ public class HoursWorked extends BaseEntity {
|
|||||||
return employee;
|
return employee;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setEmployee(final Employee value) {
|
public void setEmployee(final Employee employee) {
|
||||||
this.employee = value;
|
this.employee = employee;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Actividad getActividad() {
|
||||||
|
return actividad;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setActividad(final Actividad actividad) {
|
||||||
|
this.actividad = actividad;
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getWeekNumber() {
|
public int getWeekNumber() {
|
||||||
@ -53,4 +70,34 @@ public class HoursWorked extends BaseEntity {
|
|||||||
public void setTotalHours(final double totalHours) {
|
public void setTotalHours(final double totalHours) {
|
||||||
this.totalHours = totalHours;
|
this.totalHours = totalHours;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public LocalDate getFecha() {
|
||||||
|
return fecha;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setFecha(final LocalDate fecha) {
|
||||||
|
this.fecha = fecha;
|
||||||
|
// Actualiza el número de semana automáticamente al establecer la fecha
|
||||||
|
if (fecha != null) {
|
||||||
|
this.weekNumber = calculateWeekNumber(fecha);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Método adicional para calcular el número de semana basado en la fecha
|
||||||
|
private int calculateWeekNumber(LocalDate date) {
|
||||||
|
WeekFields weekFields = WeekFields.of(Locale.getDefault());
|
||||||
|
return date.get(weekFields.weekOfWeekBasedYear());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "HoursWorked{" +
|
||||||
|
"id=" + id +
|
||||||
|
", employee=" + (employee != null ? employee.getFirstName() : "N/A") +
|
||||||
|
", actividad=" + (actividad != null ? actividad.getNombre() : "N/A") +
|
||||||
|
", weekNumber=" + weekNumber +
|
||||||
|
", totalHours=" + totalHours +
|
||||||
|
", fecha=" + fecha +
|
||||||
|
'}';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,6 @@
|
|||||||
|
package com.primefactorsolutions.repositories;
|
||||||
|
import com.primefactorsolutions.model.ActividadesHours;
|
||||||
|
import org.springframework.data.jpa.repository.JpaRepository;
|
||||||
|
import java.util.UUID;
|
||||||
|
public interface ActividadesHoursRepository extends JpaRepository<ActividadesHours,UUID> {
|
||||||
|
}
|
@ -11,7 +11,7 @@ public interface EmployeeRepository extends JpaRepository<Employee, UUID> {
|
|||||||
Optional<Employee> findByUsername(String username);
|
Optional<Employee> findByUsername(String username);
|
||||||
|
|
||||||
Optional<Employee> findByPersonalEmail(String personalEmail);
|
Optional<Employee> findByPersonalEmail(String personalEmail);
|
||||||
Optional<Employee> findByTeamId(UUID teamId);
|
Optional<Employee> findByTeamIdAndLeadManagerTrue(UUID teamId);
|
||||||
|
|
||||||
List<Employee> findByTeamName(String teamName);
|
List<Employee> findByTeamName(String teamName);
|
||||||
}
|
}
|
||||||
|
@ -8,7 +8,5 @@ import java.util.List;
|
|||||||
|
|
||||||
@Repository
|
@Repository
|
||||||
public interface HoursWorkedRepository extends JpaRepository<HoursWorked, Long> {
|
public interface HoursWorkedRepository extends JpaRepository<HoursWorked, Long> {
|
||||||
// Puedes definir consultas personalizadas aquí si es necesario.
|
|
||||||
List<HoursWorked> findByWeekNumber(int weekNumber);
|
List<HoursWorked> findByWeekNumber(int weekNumber);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -50,7 +50,7 @@ public class EmployeeService {
|
|||||||
|
|
||||||
public String getTeamLeadName(final UUID teamId) {
|
public String getTeamLeadName(final UUID teamId) {
|
||||||
// Encuentra al empleado con el rol de lead_manager en el equipo especificado
|
// Encuentra al empleado con el rol de lead_manager en el equipo especificado
|
||||||
Optional<Employee> leadManager = employeeRepository.findByTeamId(teamId);
|
Optional<Employee> leadManager = employeeRepository.findByTeamIdAndLeadManagerTrue(teamId);
|
||||||
|
|
||||||
return leadManager.map(employee -> employee.getFirstName() + " " + employee.getLastName())
|
return leadManager.map(employee -> employee.getFirstName() + " " + employee.getLastName())
|
||||||
.orElse("No asignado");
|
.orElse("No asignado");
|
||||||
|
@ -2,10 +2,11 @@ package com.primefactorsolutions.views;
|
|||||||
import com.primefactorsolutions.model.Actividad;
|
import com.primefactorsolutions.model.Actividad;
|
||||||
import com.primefactorsolutions.model.Employee;
|
import com.primefactorsolutions.model.Employee;
|
||||||
import com.primefactorsolutions.model.HoursWorked;
|
import com.primefactorsolutions.model.HoursWorked;
|
||||||
|
import com.primefactorsolutions.repositories.ActividadesHoursRepository;
|
||||||
import com.primefactorsolutions.service.EmployeeService;
|
import com.primefactorsolutions.service.EmployeeService;
|
||||||
import com.primefactorsolutions.service.HoursWorkedService;
|
import com.primefactorsolutions.service.HoursWorkedService;
|
||||||
import com.vaadin.flow.component.datepicker.DatePicker;
|
|
||||||
import com.vaadin.flow.component.grid.Grid;
|
import com.vaadin.flow.component.grid.Grid;
|
||||||
|
import com.vaadin.flow.component.html.H2;
|
||||||
import com.vaadin.flow.component.notification.Notification;
|
import com.vaadin.flow.component.notification.Notification;
|
||||||
import com.vaadin.flow.component.orderedlayout.HorizontalLayout;
|
import com.vaadin.flow.component.orderedlayout.HorizontalLayout;
|
||||||
import com.vaadin.flow.component.textfield.TextField;
|
import com.vaadin.flow.component.textfield.TextField;
|
||||||
@ -17,11 +18,9 @@ import com.vaadin.flow.router.Route;
|
|||||||
import com.vaadin.flow.spring.annotation.SpringComponent;
|
import com.vaadin.flow.spring.annotation.SpringComponent;
|
||||||
import jakarta.annotation.security.PermitAll;
|
import jakarta.annotation.security.PermitAll;
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.beans.factory.annotation.Qualifier;
|
|
||||||
import org.springframework.context.annotation.Scope;
|
import org.springframework.context.annotation.Scope;
|
||||||
import com.vaadin.flow.component.html.Label;
|
import com.vaadin.flow.component.html.Label;
|
||||||
import org.springframework.web.servlet.HandlerMapping;
|
import org.vaadin.firitin.components.datepicker.VDatePicker;
|
||||||
import org.springframework.web.servlet.view.InternalResourceViewResolver;
|
|
||||||
|
|
||||||
|
|
||||||
import java.time.DayOfWeek;
|
import java.time.DayOfWeek;
|
||||||
@ -35,7 +34,7 @@ import java.util.Locale;
|
|||||||
@SpringComponent
|
@SpringComponent
|
||||||
@PermitAll
|
@PermitAll
|
||||||
@Scope("prototype")
|
@Scope("prototype")
|
||||||
@PageTitle("Hours Worked")
|
@PageTitle("Horas Trabajadas")
|
||||||
@Route(value = "/hours-worked/me", layout = MainLayout.class)
|
@Route(value = "/hours-worked/me", layout = MainLayout.class)
|
||||||
public class HoursWorkedView extends VerticalLayout {
|
public class HoursWorkedView extends VerticalLayout {
|
||||||
private final List<Actividad> actividades = new ArrayList<>();
|
private final List<Actividad> actividades = new ArrayList<>();
|
||||||
@ -43,8 +42,10 @@ public class HoursWorkedView extends VerticalLayout {
|
|||||||
private final Grid<Actividad> grid = new Grid<>(Actividad.class);
|
private final Grid<Actividad> grid = new Grid<>(Actividad.class);
|
||||||
private final Grid<Actividad> gridActividadesEspecificas = new Grid<>(Actividad.class);
|
private final Grid<Actividad> gridActividadesEspecificas = new Grid<>(Actividad.class);
|
||||||
|
|
||||||
private final ComboBox<Employee> employeeComboBox = new ComboBox<>("Employee");
|
private final ComboBox<Employee> employeeComboBox = new ComboBox<>("Empleado");
|
||||||
private final ComboBox<String> equipoDropdown = new ComboBox<>("Equipo");
|
private final ComboBox<String> equipoDropdown = new ComboBox<>("Equipo");
|
||||||
|
private VDatePicker fechaPicker = new VDatePicker("Selecciona una fecha");
|
||||||
|
|
||||||
|
|
||||||
private final ComboBox<String> tareasEspecificasDropdown = new ComboBox<>("Tareas Específicas");
|
private final ComboBox<String> tareasEspecificasDropdown = new ComboBox<>("Tareas Específicas");
|
||||||
private final TextField tareaEspecificaInput = new TextField("Especificar Tarea");
|
private final TextField tareaEspecificaInput = new TextField("Especificar Tarea");
|
||||||
@ -58,20 +59,16 @@ public class HoursWorkedView extends VerticalLayout {
|
|||||||
@Autowired
|
@Autowired
|
||||||
private final HoursWorkedService hoursWorkedService;
|
private final HoursWorkedService hoursWorkedService;
|
||||||
|
|
||||||
private final Label fechasLabel = new Label("Selecciona una semana para ver las fechas.");
|
|
||||||
|
@Autowired
|
||||||
|
private ActividadesHoursRepository actividadesHoursRepository;
|
||||||
|
|
||||||
|
|
||||||
|
private final H2 equipoLabel = new H2("Tareas del Cliente/Equipo");
|
||||||
|
private final H2 empresaLabel = new H2("Tareas de la Empresa");
|
||||||
private final Label totalCompletadoLabel = new Label();
|
private final Label totalCompletadoLabel = new Label();
|
||||||
private final Label horasPendientesLabel = new Label();
|
private final Label horasPendientesLabel = new Label();
|
||||||
|
|
||||||
private final Label numeroSemanaLabel = new Label("Número de la Semana: ");
|
|
||||||
|
|
||||||
private DatePicker fechaPicker = new DatePicker("Selecciona una fecha");
|
|
||||||
@Autowired
|
|
||||||
private InternalResourceViewResolver defaultViewResolver;
|
|
||||||
@Qualifier("defaultServletHandlerMapping")
|
|
||||||
@Autowired
|
|
||||||
private HandlerMapping defaultServletHandlerMapping;
|
|
||||||
|
|
||||||
|
|
||||||
public HoursWorkedView(final EmployeeService employeeService, final HoursWorkedService hoursWorkedService) {
|
public HoursWorkedView(final EmployeeService employeeService, final HoursWorkedService hoursWorkedService) {
|
||||||
this.employeeService = employeeService;
|
this.employeeService = employeeService;
|
||||||
this.hoursWorkedService = hoursWorkedService;
|
this.hoursWorkedService = hoursWorkedService;
|
||||||
@ -100,9 +97,20 @@ public class HoursWorkedView extends VerticalLayout {
|
|||||||
|
|
||||||
private void cargarDatos() {
|
private void cargarDatos() {
|
||||||
if (selectedStartOfWeek != null && weekNumber > 0) {
|
if (selectedStartOfWeek != null && weekNumber > 0) {
|
||||||
actividades.clear();
|
|
||||||
actividadesEspecificas.clear();
|
|
||||||
List<HoursWorked> listaDeHorasTrabajadas = obtenerDatos();
|
List<HoursWorked> listaDeHorasTrabajadas = obtenerDatos();
|
||||||
|
|
||||||
|
for (HoursWorked hours : listaDeHorasTrabajadas) {
|
||||||
|
LocalDate activityDate = hours.getFecha();
|
||||||
|
int activityWeek = getWeekOfYear(activityDate);
|
||||||
|
if (activityWeek == weekNumber) {
|
||||||
|
Actividad actividad = hours.getActividad();
|
||||||
|
if (actividad != null) {
|
||||||
|
DayOfWeek dayOfWeek = activityDate.getDayOfWeek();
|
||||||
|
agregarOActualizarActividad(actividad, dayOfWeek, hours.getTotalHours());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
grid.setItems(actividades);
|
grid.setItems(actividades);
|
||||||
gridActividadesEspecificas.setItems(actividadesEspecificas);
|
gridActividadesEspecificas.setItems(actividadesEspecificas);
|
||||||
calcularTotalHoras(listaDeHorasTrabajadas);
|
calcularTotalHoras(listaDeHorasTrabajadas);
|
||||||
@ -134,14 +142,12 @@ public class HoursWorkedView extends VerticalLayout {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private void configurarVista() {
|
private void configurarVista() {
|
||||||
|
fechaPicker.setMax(LocalDate.now());
|
||||||
fechaPicker.addValueChangeListener(event -> {
|
fechaPicker.addValueChangeListener(event -> {
|
||||||
LocalDate selectedDate = event.getValue();
|
LocalDate selectedDate = event.getValue();
|
||||||
if (selectedDate != null) {
|
if (selectedDate != null) {
|
||||||
selectedStartOfWeek = getStartOfWeek(selectedDate);
|
selectedStartOfWeek = getStartOfWeek(selectedDate);
|
||||||
LocalDate endOfWeek = selectedStartOfWeek.plusDays(6);
|
|
||||||
weekNumber = getWeekOfYear(selectedDate);
|
weekNumber = getWeekOfYear(selectedDate);
|
||||||
fechasLabel.setText("Semana del " + selectedStartOfWeek + " al " + endOfWeek);
|
|
||||||
numeroSemanaLabel.setText("Número de la Semana: " + weekNumber);
|
|
||||||
cargarDatos();
|
cargarDatos();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@ -178,12 +184,15 @@ public class HoursWorkedView extends VerticalLayout {
|
|||||||
HorizontalLayout buttonsLayout = new HorizontalLayout(actualizarButton, guardarButton,
|
HorizontalLayout buttonsLayout = new HorizontalLayout(actualizarButton, guardarButton,
|
||||||
cerrarButton, verMesButton);
|
cerrarButton, verMesButton);
|
||||||
|
|
||||||
VerticalLayout totalesLayout = new VerticalLayout(totalCompletadoLabel, horasPendientesLabel);
|
VerticalLayout totalesLayout = new VerticalLayout(totalCompletadoLabel,
|
||||||
|
horasPendientesLabel);
|
||||||
totalesLayout.setSpacing(true);
|
totalesLayout.setSpacing(true);
|
||||||
totalesLayout.setPadding(true);
|
totalesLayout.setPadding(true);
|
||||||
|
|
||||||
add(fechaPicker, fechasLabel, numeroSemanaLabel, filtersLayout, actividadFormLayout,
|
add(fechaPicker, filtersLayout, actividadFormLayout,
|
||||||
tareasEspecificasLayout, grid, gridActividadesEspecificas, buttonsLayout, totalesLayout);
|
equipoLabel, grid, empresaLabel, tareasEspecificasLayout,
|
||||||
|
gridActividadesEspecificas, buttonsLayout, totalesLayout);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void configurarGrid() {
|
private void configurarGrid() {
|
||||||
@ -198,6 +207,7 @@ public class HoursWorkedView extends VerticalLayout {
|
|||||||
grid.addColumn(Actividad::getSabado).setHeader("Sábado");
|
grid.addColumn(Actividad::getSabado).setHeader("Sábado");
|
||||||
grid.addColumn(Actividad::getDomingo).setHeader("Domingo");
|
grid.addColumn(Actividad::getDomingo).setHeader("Domingo");
|
||||||
grid.addColumn(this::calcularTotalPorDia).setHeader("Total Día").setKey("totalDia");
|
grid.addColumn(this::calcularTotalPorDia).setHeader("Total Día").setKey("totalDia");
|
||||||
|
grid.setItems(actividades);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void configurarGridActividadesEspecificas() {
|
private void configurarGridActividadesEspecificas() {
|
||||||
@ -228,6 +238,13 @@ public class HoursWorkedView extends VerticalLayout {
|
|||||||
Notification.show("Por favor, selecciona una fecha.");
|
Notification.show("Por favor, selecciona una fecha.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int selectedWeekNumber = getWeekOfYear(selectedDate);
|
||||||
|
if (selectedWeekNumber != weekNumber) {
|
||||||
|
Notification.show("Solo puedes agregar actividades dentro de la semana actual.");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
DayOfWeek selectedDay = selectedDate.getDayOfWeek();
|
DayOfWeek selectedDay = selectedDate.getDayOfWeek();
|
||||||
|
|
||||||
Actividad.Builder actividadBuilder = new Actividad.Builder()
|
Actividad.Builder actividadBuilder = new Actividad.Builder()
|
||||||
@ -258,6 +275,10 @@ public class HoursWorkedView extends VerticalLayout {
|
|||||||
actividades.add(nuevaActividad);
|
actividades.add(nuevaActividad);
|
||||||
grid.setItems(actividades);
|
grid.setItems(actividades);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Actividad nuevaActividad = actividadBuilder.build();
|
||||||
|
agregarOActualizarActividad(nuevaActividad, selectedDay, horas);
|
||||||
|
|
||||||
actualizarTotales();
|
actualizarTotales();
|
||||||
Notification.show("Actividad agregada correctamente");
|
Notification.show("Actividad agregada correctamente");
|
||||||
actividadNombre.clear();
|
actividadNombre.clear();
|
||||||
@ -272,6 +293,44 @@ public class HoursWorkedView extends VerticalLayout {
|
|||||||
return new HorizontalLayout(actividadNombre, horasInput, agregarActividadButton);
|
return new HorizontalLayout(actividadNombre, horasInput, agregarActividadButton);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void agregarOActualizarActividad(final Actividad nuevaActividad, final DayOfWeek dia, final double horas) {
|
||||||
|
Actividad actividadExistente = actividades.stream()
|
||||||
|
.filter(a -> a.getNombre().equals(nuevaActividad.getNombre()))
|
||||||
|
.findFirst()
|
||||||
|
.orElse(null);
|
||||||
|
|
||||||
|
if (actividadExistente != null) {
|
||||||
|
// Si la actividad ya existe, actualiza las horas para el día correspondiente
|
||||||
|
switch (dia) {
|
||||||
|
case MONDAY -> actividadExistente.setLunes(horas);
|
||||||
|
case TUESDAY -> actividadExistente.setMartes(horas);
|
||||||
|
case WEDNESDAY -> actividadExistente.setMiercoles(horas);
|
||||||
|
case THURSDAY -> actividadExistente.setJueves(horas);
|
||||||
|
case FRIDAY -> actividadExistente.setViernes(horas);
|
||||||
|
case SATURDAY -> actividadExistente.setSabado(horas);
|
||||||
|
case SUNDAY -> actividadExistente.setDomingo(horas);
|
||||||
|
default -> throw new IllegalArgumentException("Día seleccionado no válido: " + dia);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
// Si no existe, se agrega como nueva actividad
|
||||||
|
switch (dia) {
|
||||||
|
case MONDAY -> nuevaActividad.setLunes(horas);
|
||||||
|
case TUESDAY -> nuevaActividad.setMartes(horas);
|
||||||
|
case WEDNESDAY -> nuevaActividad.setMiercoles(horas);
|
||||||
|
case THURSDAY -> nuevaActividad.setJueves(horas);
|
||||||
|
case FRIDAY -> nuevaActividad.setViernes(horas);
|
||||||
|
case SATURDAY -> nuevaActividad.setSabado(horas);
|
||||||
|
case SUNDAY -> nuevaActividad.setDomingo(horas);
|
||||||
|
default -> throw new IllegalArgumentException("Día seleccionado no válido: " + dia);
|
||||||
|
}
|
||||||
|
actividades.add(nuevaActividad);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Actualiza el Grid
|
||||||
|
grid.setItems(actividades);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
private HorizontalLayout configurarTareasEspecificasLayout() {
|
private HorizontalLayout configurarTareasEspecificasLayout() {
|
||||||
|
|
||||||
Button agregarTareaButton = new Button("Agregar Tarea PFS", e -> {
|
Button agregarTareaButton = new Button("Agregar Tarea PFS", e -> {
|
||||||
@ -354,7 +413,7 @@ public class HoursWorkedView extends VerticalLayout {
|
|||||||
|
|
||||||
private LocalDate getStartOfWeek(final LocalDate date) {
|
private LocalDate getStartOfWeek(final LocalDate date) {
|
||||||
WeekFields weekFields = WeekFields.of(Locale.getDefault());
|
WeekFields weekFields = WeekFields.of(Locale.getDefault());
|
||||||
return date.with(weekFields.dayOfWeek(), DayOfWeek.MONDAY.getValue());
|
return date.with(weekFields.dayOfWeek(), DayOfWeek.FRIDAY.getValue());
|
||||||
}
|
}
|
||||||
|
|
||||||
private double calcularTotalPorDia(final Actividad actividad) {
|
private double calcularTotalPorDia(final Actividad actividad) {
|
||||||
@ -385,24 +444,69 @@ public class HoursWorkedView extends VerticalLayout {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Verificar que hay actividades para guardar
|
||||||
|
if (actividades.isEmpty()) {
|
||||||
|
Notification.show("No hay actividades para guardar.");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Sumar el total de horas para la semana
|
||||||
double totalHorasSemana = actividades.stream()
|
double totalHorasSemana = actividades.stream()
|
||||||
.mapToDouble(this::calcularTotalPorDia)
|
.mapToDouble(this::calcularTotalPorDia)
|
||||||
.sum();
|
.sum();
|
||||||
|
|
||||||
HoursWorked hoursWorked = new HoursWorked();
|
// Crear un objeto HoursWorked por cada actividad
|
||||||
hoursWorked.setEmployee(selectedEmployee);
|
List<HoursWorked> savedHoursWorked = new ArrayList<>(); // Para almacenar los objetos guardados
|
||||||
hoursWorked.setWeekNumber(weekNumber);
|
|
||||||
hoursWorked.setTotalHours(totalHorasSemana);
|
|
||||||
|
|
||||||
try {
|
// Recorrer todas las actividades y guardar un registro para cada una
|
||||||
hoursWorkedService.saveHoursWorked(hoursWorked); // Usa saveHoursWorked directamente
|
for (Actividad actividad : actividades) {
|
||||||
Notification.show("Actividades guardadas correctamente.");
|
HoursWorked hoursWorked = new HoursWorked();
|
||||||
System.out.println(hoursWorked);
|
hoursWorked.setEmployee(selectedEmployee);
|
||||||
} catch (Exception e) {
|
hoursWorked.setWeekNumber(weekNumber);
|
||||||
Notification.show("Error al guardar actividades: " + e.getMessage());
|
hoursWorked.setTotalHours(totalHorasSemana);
|
||||||
|
|
||||||
|
// Asignar cada actividad individualmente
|
||||||
|
hoursWorked.setActividad(actividad);
|
||||||
|
hoursWorked.setFecha(LocalDate.now()); // Establecer la fecha actual o la seleccionada si es otra
|
||||||
|
|
||||||
|
// Mostrar información de la actividad para depuración
|
||||||
|
System.out.println("Guardando actividad: " + actividad.getNombre() + " con " + totalHorasSemana + " horas.");
|
||||||
|
|
||||||
|
try {
|
||||||
|
// Guardar en el servicio
|
||||||
|
hoursWorkedService.saveHoursWorked(hoursWorked);
|
||||||
|
savedHoursWorked.add(hoursWorked); // Agregar a la lista de registros guardados
|
||||||
|
Notification.show("Actividad guardada correctamente: " + actividad.getNombre());
|
||||||
|
} catch (Exception e) {
|
||||||
|
Notification.show("Error al guardar la actividad: " + actividad.getNombre() + " - " + e.getMessage());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Mostrar los registros guardados
|
||||||
|
savedHoursWorked.forEach(hw -> System.out.println("Horas trabajadas guardadas: " + hw));
|
||||||
|
|
||||||
|
// Crear el Grid
|
||||||
|
Grid<HoursWorked> grid = new Grid<>();
|
||||||
|
|
||||||
|
// Configurar columnas para mostrar la información deseada
|
||||||
|
grid.addColumn(hw -> hw.getEmployee().getFirstName()).setHeader("Empleado");
|
||||||
|
grid.addColumn(hw -> hw.getEmployee().getId()).setHeader("ID Empleado");
|
||||||
|
grid.addColumn(hw -> hw.getActividad().getNombre()).setHeader("Actividad");
|
||||||
|
grid.addColumn(hw -> hw.getTotalHours()).setHeader("Horas Trabajadas");
|
||||||
|
grid.addColumn(hw -> hw.getWeekNumber()).setHeader("Número de Semana");
|
||||||
|
grid.addColumn(hw -> hw.getFecha().toString()).setHeader("Fecha");
|
||||||
|
|
||||||
|
// Llenar el Grid con los datos de savedHoursWorked
|
||||||
|
grid.setItems(savedHoursWorked);
|
||||||
|
|
||||||
|
// Agregar el Grid a la vista
|
||||||
|
add(grid);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
private double calcularTotalHoras(final List<HoursWorked> listaDeHorasTrabajadas) {
|
private double calcularTotalHoras(final List<HoursWorked> listaDeHorasTrabajadas) {
|
||||||
return listaDeHorasTrabajadas.stream()
|
return listaDeHorasTrabajadas.stream()
|
||||||
.mapToDouble(HoursWorked::getTotalHours)
|
.mapToDouble(HoursWorked::getTotalHours)
|
||||||
|
@ -50,7 +50,6 @@ public class ReporteView extends VerticalLayout {
|
|||||||
|
|
||||||
private final Span semanaInfoSpan = new Span();
|
private final Span semanaInfoSpan = new Span();
|
||||||
|
|
||||||
|
|
||||||
// Obtener el año actual
|
// Obtener el año actual
|
||||||
private int currentYear = LocalDate.now().getYear();
|
private int currentYear = LocalDate.now().getYear();
|
||||||
|
|
||||||
@ -76,22 +75,19 @@ public class ReporteView extends VerticalLayout {
|
|||||||
// Listener para actualizar `semanaInfoSpan` con la selección del usuario en `semanaComboBox`
|
// Listener para actualizar `semanaInfoSpan` con la selección del usuario en `semanaComboBox`
|
||||||
semanaComboBox.addValueChangeListener(event -> {
|
semanaComboBox.addValueChangeListener(event -> {
|
||||||
String selectedWeek = event.getValue();
|
String selectedWeek = event.getValue();
|
||||||
semanaInfoSpan.setText(selectedWeek != null
|
semanaInfoSpan.setText(selectedWeek != null ? selectedWeek : "Selecciona una semana");
|
||||||
? selectedWeek : "Selecciona una semana");
|
|
||||||
});
|
});
|
||||||
|
|
||||||
Button reportButton = new Button("Generar Reporte de Horas Trabajadas",
|
Button reportButton = new Button("Generar Reporte de Horas Trabajadas",
|
||||||
event -> generateHoursWorkedReport());
|
event -> generateHoursWorkedReport());
|
||||||
HorizontalLayout filtersLayout = new HorizontalLayout(equipoComboBox,
|
HorizontalLayout filtersLayout = new HorizontalLayout(equipoComboBox, semanaComboBox, reportButton);
|
||||||
semanaComboBox, reportButton);
|
|
||||||
add(filtersLayout);
|
add(filtersLayout);
|
||||||
|
|
||||||
// Añadir `headerLayout` al diseño principal para el encabezado dinámico
|
// Añadir `headerLayout` al diseño principal para el encabezado dinámico
|
||||||
add(headerLayout);
|
add(headerLayout);
|
||||||
updateHeaderLayout(null, null);
|
updateHeaderLayout(null, null);
|
||||||
|
|
||||||
grid.addColumn(map -> map.get("ID")).setHeader("ID")
|
grid.addColumn(map -> map.get("ID")).setHeader("ID").getElement().getStyle().set("font-weight", "bold");
|
||||||
.getElement().getStyle().set("font-weight", "bold");
|
|
||||||
grid.addColumn(map -> map.get("Employee ID")).setHeader("Employee ID");
|
grid.addColumn(map -> map.get("Employee ID")).setHeader("Employee ID");
|
||||||
grid.addColumn(map -> map.get("Empleado")).setHeader("Empleado");
|
grid.addColumn(map -> map.get("Empleado")).setHeader("Empleado");
|
||||||
grid.addColumn(map -> map.get("Horas Trabajadas")).setHeader("Horas Trabajadas");
|
grid.addColumn(map -> map.get("Horas Trabajadas")).setHeader("Horas Trabajadas");
|
||||||
@ -105,8 +101,7 @@ public class ReporteView extends VerticalLayout {
|
|||||||
int year = LocalDate.now().getYear();
|
int year = LocalDate.now().getYear();
|
||||||
LocalDate startOfYear = LocalDate.of(year, 1, 5); // Suponemos que la semana comienza el 5 de enero.
|
LocalDate startOfYear = LocalDate.of(year, 1, 5); // Suponemos que la semana comienza el 5 de enero.
|
||||||
|
|
||||||
List<String> semanas = startOfYear.datesUntil(LocalDate
|
List<String> semanas = startOfYear.datesUntil(LocalDate.of(year + 1, 1, 1),
|
||||||
.of(year + 1, 1, 1),
|
|
||||||
java.time.Period.ofWeeks(1))
|
java.time.Period.ofWeeks(1))
|
||||||
.map(date -> {
|
.map(date -> {
|
||||||
int weekNumber = date.get(WeekFields.of(DayOfWeek.MONDAY, 1)
|
int weekNumber = date.get(WeekFields.of(DayOfWeek.MONDAY, 1)
|
||||||
@ -133,27 +128,23 @@ public class ReporteView extends VerticalLayout {
|
|||||||
String selectedWeek = semanaComboBox.getValue();
|
String selectedWeek = semanaComboBox.getValue();
|
||||||
if (selectedEquipo == null || selectedWeek == null) {
|
if (selectedEquipo == null || selectedWeek == null) {
|
||||||
Notification.show("Por favor, selecciona un equipo y una semana para generar el reporte.",
|
Notification.show("Por favor, selecciona un equipo y una semana para generar el reporte.",
|
||||||
3000,
|
3000, Notification.Position.MIDDLE);
|
||||||
Notification.Position.MIDDLE);
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
int weekNumber = Integer.parseInt(selectedWeek.split(" ")[1]
|
int weekNumber = Integer.parseInt(selectedWeek.split(" ")[1].replace(":", ""));
|
||||||
.replace(":", ""));
|
LocalDate selectedDate = LocalDate.now().with(WeekFields.of(DayOfWeek.FRIDAY, 1)
|
||||||
LocalDate selectedDate = LocalDate.now()
|
.weekOfWeekBasedYear(), weekNumber);
|
||||||
.with(WeekFields.of(DayOfWeek.FRIDAY, 1)
|
|
||||||
.weekOfWeekBasedYear(), weekNumber);
|
|
||||||
updateHeaderLayout(selectedEquipo, selectedDate);
|
updateHeaderLayout(selectedEquipo, selectedDate);
|
||||||
|
|
||||||
List<HoursWorked> hoursWorkedList = hoursWorkedService.findAll().stream()
|
List<HoursWorked> hoursWorkedList = hoursWorkedService.findAll().stream()
|
||||||
.filter(hw -> hw.getEmployee().getTeam().getId()
|
.filter(hw -> hw.getEmployee().getTeam().getId().equals(selectedEquipo
|
||||||
.equals(selectedEquipo.getId()) && hw.getWeekNumber() == weekNumber)
|
.getId()) && hw.getWeekNumber() == weekNumber)
|
||||||
.collect(Collectors.toList());
|
.collect(Collectors.toList());
|
||||||
|
|
||||||
if (hoursWorkedList.isEmpty()) {
|
if (hoursWorkedList.isEmpty()) {
|
||||||
Notification.show("No hay horas trabajadas disponibles para generar el reporte.",
|
Notification.show("No hay horas trabajadas disponibles para generar el reporte.",
|
||||||
3000,
|
3000, Notification.Position.MIDDLE);
|
||||||
Notification.Position.MIDDLE);
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -188,8 +179,8 @@ public class ReporteView extends VerticalLayout {
|
|||||||
String formattedEndDate = endOfWeek.getDayOfMonth() + " de "
|
String formattedEndDate = endOfWeek.getDayOfMonth() + " de "
|
||||||
+ endOfWeek.getMonth().getDisplayName(TextStyle.FULL, Locale.getDefault());
|
+ endOfWeek.getMonth().getDisplayName(TextStyle.FULL, Locale.getDefault());
|
||||||
|
|
||||||
headerLayout.add(new Span("Informe " + String.format("%03d", weekNumber)
|
headerLayout.add(new Span("Informe "
|
||||||
+ "/" + currentYear) {{
|
+ String.format("%03d", weekNumber) + "/" + currentYear) {{
|
||||||
getStyle().set("font-size", "24px");
|
getStyle().set("font-size", "24px");
|
||||||
getStyle().set("font-weight", "bold");
|
getStyle().set("font-weight", "bold");
|
||||||
}});
|
}});
|
||||||
@ -213,14 +204,13 @@ public class ReporteView extends VerticalLayout {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void generateExcelDownloadLink(final List<Map<String, Object>> data,
|
private void generateExcelDownloadLink(final List<Map<String, Object>> data, final int weekNumber) {
|
||||||
final int weekNumber) {
|
|
||||||
try {
|
try {
|
||||||
List<String> headers = List.of("ID", "Employee ID", "Empleado",
|
List<String> headers = List.of("ID", "Employee ID", "Empleado",
|
||||||
"Horas Trabajadas", "Horas Pendientes", "Observaciones");
|
"Horas Trabajadas", "Horas Pendientes", "Observaciones");
|
||||||
String selectedTeam = equipoComboBox.getValue().getName();
|
String selectedTeam = equipoComboBox.getValue().getName();
|
||||||
byte[] excelBytes = reportService.writeAsExcel("hours_worked_report",
|
byte[] excelBytes = reportService.writeAsExcel(
|
||||||
headers, data, selectedTeam, weekNumber, currentYear);
|
"hours_worked_report", headers, data, selectedTeam, weekNumber, currentYear);
|
||||||
|
|
||||||
StreamResource excelResource = new StreamResource("hours_worked_report.xlsx",
|
StreamResource excelResource = new StreamResource("hours_worked_report.xlsx",
|
||||||
() -> new ByteArrayInputStream(excelBytes));
|
() -> new ByteArrayInputStream(excelBytes));
|
||||||
@ -241,13 +231,4 @@ public class ReporteView extends VerticalLayout {
|
|||||||
return date.get(WeekFields.of(Locale.getDefault()).weekOfWeekBasedYear());
|
return date.get(WeekFields.of(Locale.getDefault()).weekOfWeekBasedYear());
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getCurrentYear() {
|
|
||||||
return currentYear;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Opcional: Si deseas permitir cambiar el año actual manualmente, agrega un setter
|
|
||||||
public void setCurrentYear(final int currentYear) {
|
|
||||||
this.currentYear = currentYear;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user