Package org.libreplan.business.reports.dtos

Examples of org.libreplan.business.reports.dtos.WorkingProgressPerTaskDTO


        reattachLabels();
        final List<Task> tasks = commonQueries.filteredTaskElements(order,
                labels, criterions);
        final List<Task> sortTasks = sortTasks(order, tasks);
        for (Task task : sortTasks) {
            workingHoursPerWorkerList.add(new WorkingProgressPerTaskDTO(task,
                    referenceLocalDate));
        }
        if (!workingHoursPerWorkerList.isEmpty()) {
            return new JRBeanCollectionDataSource(workingHoursPerWorkerList);
        } else {
View Full Code Here

TOP

Related Classes of org.libreplan.business.reports.dtos.WorkingProgressPerTaskDTO

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.