/** * Copyright © 2002 Instituto Superior Técnico * * This file is part of FenixEdu Academic. * * FenixEdu Academic is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * FenixEdu Academic is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with FenixEdu Academic. If not, see <http://www.gnu.org/licenses/>. */ package org.fenixedu.academic.domain.reports; import org.apache.commons.lang.StringUtils; import org.fenixedu.academic.domain.CourseLoad; import org.fenixedu.academic.domain.ExecutionCourse; import org.fenixedu.academic.domain.ExecutionSemester; import org.fenixedu.academic.domain.Shift; import org.fenixedu.commons.spreadsheet.Spreadsheet; import org.fenixedu.commons.spreadsheet.Spreadsheet.Row; public class CourseLoadReportFile extends CourseLoadReportFile_Base { public CourseLoadReportFile() { super(); } @Override public String getJobName() { return "Listagem de tipos de aula e carga horária"; } @Override public String getDescription() { return getJobName() + " no formato " + getType().toUpperCase(); } @Override protected String getPrefix() { return "carga_horaria"; } @Override public void renderReport(Spreadsheet spreadsheet) { spreadsheet.setHeader("Semestre"); spreadsheet.setHeader("Código disciplina execução"); spreadsheet.setHeader("Código turno"); spreadsheet.setHeader("Nome turno"); spreadsheet.setHeader("Tipo aula"); spreadsheet.setHeader("Carga horas aula inseridas"); spreadsheet.setHeader("Horas aula sistema"); spreadsheet.setHeader("Total turnos"); for (ExecutionSemester executionSemester : getExecutionYear().getExecutionPeriodsSet()) { for (ExecutionCourse executionCourse : executionSemester.getAssociatedExecutionCoursesSet()) { for (CourseLoad courseLoad : executionCourse.getCourseLoadsSet()) { for (Shift shift : courseLoad.getShiftsSet()) { if (!shift.hasSchoolClassForDegreeType(getDegreeType())) { continue; } Row row = spreadsheet.addRow(); row.setCell(executionSemester.getSemester()); row.setCell(GepReportFile.getExecutionCourseCode(executionCourse)); row.setCell(GepReportFile.getShiftCode(shift)); row.setCell(shift.getNome()); row.setCell(courseLoad.getType().name()); row.setCell(courseLoad.getTotalQuantity() != null ? courseLoad.getTotalQuantity().toPlainString() .replace('.', ',') : StringUtils.EMPTY); row.setCell(shift.getTotalHours() != null ? shift.getTotalHours().toPlainString().replace('.', ',') : StringUtils.EMPTY); row.setCell(courseLoad.getShiftsSet().size()); } } } } } }