Package org.fenixedu.academic.dto

Examples of org.fenixedu.academic.dto.InfoDepartment


                });
                request.setAttribute("detailedProfessorShipsListofLists", detailedProfessorShipsListofLists);
            }

            InfoDepartment department = ReadDepartmentByOID.run(departmentId);

            request.setAttribute("searchType", "Consulta Por Departmento");
            request.setAttribute("searchTarget", department.getName());
            request.setAttribute("searchDetails", searchDetails);
            request.setAttribute("semester", semester);
            request.setAttribute("teacherType", teacherType);
        } catch (FenixServiceException e) {
            throw new FenixActionException(e);
View Full Code Here


                }
                return false;
            }
        });
        Person person = (Person) FenixFramework.getDomainObject(infoPerson.getExternalId());
        InfoDepartment teacherDepartment = null;
        if (person.getTeacher() != null) {
            Department department = person.getTeacher().getDepartment();
            teacherDepartment = InfoDepartment.newInfoFromDomain(department);
            final Collection<Department> departmentList = userView.getPerson().getManageableDepartmentCreditsSet();
            request.setAttribute("isDepartmentManager", (departmentList.contains(department) || department == null));
View Full Code Here

TOP

Related Classes of org.fenixedu.academic.dto.InfoDepartment

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.