Examples of DiplomaSupplementRequest


Examples of org.fenixedu.academic.domain.serviceRequests.documentRequests.DiplomaSupplementRequest

        if (!getDocumentRequest().getRequestedCycle().equals(CycleType.SECOND_CYCLE)) {
            professionalStatus =
                    BundleUtil.getString(Bundle.ACADEMIC, getLocale(), "diploma.supplement.professionalstatus.notapplicable");
        } else {
            DiplomaSupplementRequest request = (DiplomaSupplementRequest) getDocumentRequest();
            String degreeSigla = request.getRegistration().getDegree().getSigla();

            if (degreeSigla.equals("MA")) {
                professionalStatus =
                        BundleUtil.getString(Bundle.ACADEMIC, getLocale(),
                                "diploma.supplement.professionalstatus.credited.arquitect.withintership");
View Full Code Here

Examples of org.fenixedu.academic.domain.serviceRequests.documentRequests.DiplomaSupplementRequest

    }

    final public DiplomaSupplementRequest getDiplomaSupplementRequest(final CycleType cycleType) {
        for (DocumentRequest documentRequest : getDocumentRequests()) {
            if (documentRequest.isDiplomaSupplement() && !documentRequest.finishedUnsuccessfully()) {
                DiplomaSupplementRequest supplement = (DiplomaSupplementRequest) documentRequest;
                if (cycleType == supplement.getRequestedCycle()) {
                    return supplement;
                }
            }
        }
        return null;
View Full Code Here

Examples of org.fenixedu.academic.domain.serviceRequests.documentRequests.DiplomaSupplementRequest

        } else if (getChosenDocumentRequestType().isPastDiploma()) {
            return CreatePastDiplomaRequest.create(this);

        } else if (getChosenDocumentRequestType().isDiplomaSupplement()) {
            return new DiplomaSupplementRequest(this);

        } else if (getChosenDocumentRequestType() == DocumentRequestType.UNDER_23_TRANSPORTS_REQUEST) {
            return new Under23TransportsDeclarationRequest(this);
        }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.