/*
* Created on 5/Jan/2004
*
*/
package net.sourceforge.fenixedu.domain;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.List;
import net.sourceforge.fenixedu.domain.accounting.PaymentCodeType;
import net.sourceforge.fenixedu.domain.accounting.paymentCodes.GratuitySituationPaymentCode;
import net.sourceforge.fenixedu.domain.exceptions.DomainException;
import net.sourceforge.fenixedu.domain.student.Student;
import net.sourceforge.fenixedu.domain.studentCurricularPlan.Specialization;
import net.sourceforge.fenixedu.domain.transactions.GratuityTransaction;
import net.sourceforge.fenixedu.domain.transactions.PaymentType;
import net.sourceforge.fenixedu.domain.transactions.TransactionType;
import net.sourceforge.fenixedu.injectionCode.AccessControl;
import net.sourceforge.fenixedu.util.Money;
import org.joda.time.DateTime;
import org.joda.time.Period;
import org.joda.time.YearMonthDay;
/**
* @author Shezad Anavarali
* @author Nadir Tarmahomed
* @author Tânia Pousão
*/
public class GratuitySituation extends GratuitySituation_Base {
// TODO: this should be configurable
private static final BigDecimal PENALTY_PERCENTAGE = new BigDecimal("0.01");
public GratuitySituation() {
super();
setRootDomainObject(RootDomainObject.getInstance());
}
public GratuitySituation(GratuityValues gratuityValues, StudentCurricularPlan studentCurricularPlan) {
this();
setGratuityValues(gratuityValues);
setStudentCurricularPlan(studentCurricularPlan);
setWhenDateTime(new DateTime());
updateValues();
}
public void delete() {
removeStudentCurricularPlan();
removeRootDomainObject();
deleteDomainObject();
}
public void updateValues() {
updateTotalValue();
updateRemainingValue();
}
private void updateTotalValue() {
super.setTotalValue(calculateTotalAmountWithPenalty());
}
private double calculateTotalAmountWithPenalty() {
return calculateOriginalTotalValue() + calculatePenalty(calculateOriginalTotalValue());
}
private double calculateOriginalTotalValue() {
double totalValue = 0.0;
Specialization specialization = getStudentCurricularPlan().getSpecialization();
if (specialization.equals(Specialization.STUDENT_CURRICULAR_PLAN_SPECIALIZATION)) {
totalValue = this.getGratuityValues().calculateTotalValueForSpecialization(this.getStudentCurricularPlan());
} else if (specialization.equals(Specialization.STUDENT_CURRICULAR_PLAN_MASTER_DEGREE)) {
totalValue = this.getGratuityValues().calculateTotalValueForMasterDegree();
}
return totalValue;
}
private void updateRemainingValue() {
super.setRemainingValue(getTotalValue() - calculatePayedValue() - calculateExemptionValue());
}
private double calculateExemptionValue() {
double exemptionValue = 0;
if (this.getExemptionPercentage() != null) {
exemptionValue = getTotalValue() * (this.getExemptionPercentage().doubleValue() / 100.0);
}
if (this.getExemptionValue() != null) {
exemptionValue += this.getExemptionValue().doubleValue();
}
return exemptionValue;
}
public double calculatePayedValue() {
return calculatePayedValue(null);
}
public double calculatePayedValue(final YearMonthDay date) {
final List transactions = (date == null ? getTransactionList() : getTransactionsUntil(date));
BigDecimal result = BigDecimal.ZERO;
for (final GratuityTransaction transaction : transactions) {
result = result.add(transaction.getValueWithAdjustment());
}
return result.doubleValue();
}
private List getTransactionsUntil(final YearMonthDay date) {
final List result = new ArrayList();
for (final GratuityTransaction gratuityTransaction : getTransactionList()) {
if (gratuityTransaction.getTransactionDateDateTime().toYearMonthDay().compareTo(date) <= 0) {
result.add(gratuityTransaction);
}
}
return result;
}
public GratuitySituationPaymentCode calculatePaymentCode() {
updateValues();
if (!hasPaymentCode()) {
createPaymentCode();
} else {
updatePaymentCode();
}
return super.getPaymentCode();
}
private void updatePaymentCode() {
super.getPaymentCode().update(new YearMonthDay(), calculatePaymentCodeEndDate(), new Money(getRemainingValue()),
new Money(getRemainingValue()));
}
private void createPaymentCode() {
GratuitySituationPaymentCode
.create(PaymentCodeType.PRE_BOLONHA_MASTER_DEGREE_TOTAL_GRATUITY, new YearMonthDay(),
calculatePaymentCodeEndDate(), new Money(getRemainingValue()), new Money(getRemainingValue()),
getStudent(), this);
}
private Student getStudent() {
return getStudentCurricularPlan().getRegistration().getStudent();
}
private Person getPerson() {
return getStudent().getPerson();
}
@Override
public GratuitySituationPaymentCode getPaymentCode() {
throw new DomainException("error.GratuitySituation.paymentCode.cannot.be.accessed.directly");
}
@Override
public boolean hasPaymentCode() {
return (super.getPaymentCode() != null);
}
private double calculatePenalty(final double remainingValue) {
if (hasPenalty() && getGratuityValues().isPenaltyApplicable()) {
int monthsToChargePenalty = 0;
final YearMonthDay now = new YearMonthDay();
if (getEndPaymentDate().getMonthOfYear() == now.getMonthOfYear()) {
monthsToChargePenalty += 1;
} else {
monthsToChargePenalty = calculateMonthsToChargePenalty(calculateCloseDate());
}
return new Money(remainingValue).multiply(PENALTY_PERCENTAGE).multiply(new BigDecimal(monthsToChargePenalty))
.getAmount().doubleValue();
}
return 0;
}
private int calculateMonthsToChargePenalty(final YearMonthDay when) {
final YearMonthDay endPaymentDate = getEndPaymentDate();
final YearMonthDay endOfMonth = endPaymentDate.plusMonths(1).withDayOfMonth(1).minusDays(1);
final int numberOfDaysLeftInMonth = new Period(endPaymentDate, endOfMonth).getDays();
int monthsToChargePenalty = 0;
if (numberOfDaysLeftInMonth > 0) {
monthsToChargePenalty += 1;
}
final Period period = new Period(endPaymentDate.plusMonths(1).withDayOfMonth(1), when);
monthsToChargePenalty += period.getMonths() + 1;
return monthsToChargePenalty;
}
private YearMonthDay calculateCloseDate() {
for (final GratuityTransaction transaction : getTransactionListSet()) {
if (canClose(transaction.getTransactionDateDateTime().toYearMonthDay())) {
return transaction.getTransactionDateDateTime().toYearMonthDay();
}
}
return new YearMonthDay();
}
private boolean canClose(final YearMonthDay when) {
if (calculatePayedAmountUntil(when) > calculateOriginalValueWithExemption()) {
return true;
} else {
final int monthsToChargePenalty = calculateMonthsToChargePenalty(when);
final double penaltyAmount = new Money(calculateOriginalValueWithExemption()).multiply(PENALTY_PERCENTAGE).multiply(
new BigDecimal(monthsToChargePenalty)).getAmount().doubleValue();
return calculatePayedAmountUntil(when) > (penaltyAmount + calculateOriginalValueWithExemption());
}
}
private double calculatePayedAmountUntil(final YearMonthDay endDate) {
Money result = Money.ZERO;
final DateTime limit = endDate.toDateTimeAtMidnight().plusDays(1).minusMinutes(1);
for (final GratuityTransaction transaction : getTransactionListSet()) {
if (!transaction.getTransactionDateDateTime().isAfter(limit)) {
result = result.add(transaction.getValueWithAdjustment());
}
}
return result.getAmount().doubleValue();
}
private boolean hasPenalty() {
if (!getHasPenaltyExemption() && new YearMonthDay().isAfter(getEndPaymentDate())) {
final double payedValue = calculatePayedValue(getEndPaymentDate());
return payedValue < calculateOriginalValueWithExemption();
}
return false;
}
private double calculateOriginalValueWithExemption() {
return (calculateOriginalTotalValue() - calculateExemptionValue());
}
@Override
public Boolean getHasPenaltyExemption() {
return super.getHasPenaltyExemption() != null && super.getHasPenaltyExemption();
}
private YearMonthDay calculatePaymentCodeEndDate() {
final YearMonthDay now = new YearMonthDay();
final YearMonthDay endPaymentDate = getEndPaymentDate();
return now.isAfter(endPaymentDate) ? calculateNextEndDate(now) : endPaymentDate;
}
protected YearMonthDay calculateNextEndDate(final YearMonthDay yearMonthDay) {
final YearMonthDay nextMonth = yearMonthDay.plusMonths(1);
return new YearMonthDay(nextMonth.getYear(), nextMonth.getMonthOfYear(), 1).minusDays(1);
}
private boolean isPayedUsingPhases() {
return getGratuityValues().hasAnyPaymentPhaseList();
}
private YearMonthDay getEndPaymentDate() {
if (isPayedUsingPhases()) {
final YearMonthDay lastPaymentPhaseDate = getLastPaymentPhaseDate();
if (getGratuityValues().getEndPaymentYearMonthDay() == null) {
return lastPaymentPhaseDate;
}
return lastPaymentPhaseDate.isAfter(getGratuityValues().getEndPaymentYearMonthDay()) ? lastPaymentPhaseDate
: getGratuityValues().getEndPaymentYearMonthDay();
}
if (getGratuityValues().getEndPaymentYearMonthDay() == null) {
throw new DomainException(
"error.net.sourceforge.fenixedu.domain.GratuitySituation.paymentMode.is.not.correctly.defined");
}
return getGratuityValues().getEndPaymentYearMonthDay();
}
private YearMonthDay getLastPaymentPhaseDate() {
final PaymentPhase paymentPhase = getGratuityValues().getLastPaymentPhase();
return paymentPhase == null ? null : paymentPhase.getEndDateYearMonthDay();
}
public boolean isPayed() {
return new Money(getRemainingValue()).lessOrEqualThan(Money.ZERO);
}
public GratuityTransaction processAmount(final Person responsiblePerson, final Money amount, final DateTime whenRegistered,
final PaymentType paymentType) {
final GratuityTransaction transaction = new GratuityTransaction(amount.getAmount(), whenRegistered, paymentType,
TransactionType.GRATUITY_ADHOC_PAYMENT, responsiblePerson, getOrCreatePersonAccount(), this);
updateRemainingValue();
return transaction;
}
private PersonAccount getOrCreatePersonAccount() {
return getPerson().hasAssociatedPersonAccount() ? getPerson().getAssociatedPersonAccount() : new PersonAccount(
getPerson());
}
@Override
public void setTotalValue(Double value) {
throw new DomainException("error.net.sourceforge.fenixedu.domain.GratuitySituation.cannot.modify.value");
}
@Override
public void setRemainingValue(Double value) {
throw new DomainException("error.net.sourceforge.fenixedu.domain.GratuitySituation.cannot.modify.value");
}
public void editPenaltyExemption(final Boolean hasPenaltyExemption, final String justification) {
setHasPenaltyExemption(hasPenaltyExemption);
if (hasPenaltyExemption != null && hasPenaltyExemption) {
setPenaltyExemptionDate(new YearMonthDay());
setPenaltyExemptionEmployee(AccessControl.getPerson().getEmployee());
setPenaltyExemptionJustification(justification);
} else {
setPenaltyExemptionDate(null);
setPenaltyExemptionEmployee(null);
setPenaltyExemptionJustification(null);
}
}
public Money getPayedAmountBetween(DateTime startDate, DateTime endDate) {
Money result = Money.ZERO;
for (final GratuityTransaction transaction : getTransactionList()) {
if (!transaction.getTransactionDateDateTime().isBefore(startDate)
&& !transaction.getTransactionDateDateTime().isAfter(endDate)) {
result = result.add(transaction.getValueWithAdjustment());
}
}
return result;
}
}