Package org.fenixedu.academic.domain.accounting.events.candidacy

Examples of org.fenixedu.academic.domain.accounting.events.candidacy.IndividualCandidacyEvent


                newSCICSeriesGrade.setDegree(degree);
                getIndividualCandidacySeriesGradeSet().add(newSCICSeriesGrade);
            }
        }

        IndividualCandidacyEvent individualCandidacyEvent = getEvent();
        if (individualCandidacyEvent != null && individualCandidacyEvent.getAmountToPay().isPositive() && getEvent().isClosed()) {
            individualCandidacyEvent.open();

            Collection<AccountingEventPaymentCode> paymentCodes = individualCandidacyEvent.getAllPaymentCodes();

            for (AccountingEventPaymentCode accountingEventPaymentCode : paymentCodes) {
                accountingEventPaymentCode.setState(PaymentCodeState.NEW);
            }
View Full Code Here


                newSCICSeriesGrade.setDegree(degree);
                getIndividualCandidacySeriesGradeSet().add(newSCICSeriesGrade);
            }
        }

        IndividualCandidacyEvent individualCandidacyEvent = getEvent();
        if (individualCandidacyEvent != null && individualCandidacyEvent.getAmountToPay().isPositive() && getEvent().isClosed()) {
            individualCandidacyEvent.open();

            Collection<AccountingEventPaymentCode> paymentCodes = individualCandidacyEvent.getAllPaymentCodes();

            for (AccountingEventPaymentCode accountingEventPaymentCode : paymentCodes) {
                accountingEventPaymentCode.setState(PaymentCodeState.NEW);
            }
View Full Code Here

    public boolean isSecondCycle() {
        return true;
    }

    public boolean isEventClosedButWithDebt() {
        IndividualCandidacyEvent event = getEvent();

        return !event.getNonAdjustingTransactions().isEmpty() && event.getAmountToPay().isPositive();
    }
View Full Code Here

TOP

Related Classes of org.fenixedu.academic.domain.accounting.events.candidacy.IndividualCandidacyEvent

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.