/* * The Kuali Financial System, a comprehensive financial management system for higher education. * * Copyright 2005-2014 The Kuali Foundation * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program 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 Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package org.kuali.kfs.fp.businessobject; import java.sql.Date; import java.util.LinkedHashMap; import org.kuali.kfs.fp.document.AdvanceDepositDocument; import org.kuali.kfs.sys.KFSPropertyConstants; import org.kuali.kfs.sys.businessobject.Bank; import org.kuali.kfs.sys.context.SpringContext; import org.kuali.kfs.sys.service.BankService; import org.kuali.rice.core.api.util.type.KualiDecimal; import org.kuali.rice.krad.bo.PersistableBusinessObjectBase; /** * This business object represents the advance deposit detail business object that is used by the Advance Deposit Document. */ public class AdvanceDepositDetail extends PersistableBusinessObjectBase { private String documentNumber; private String financialDocumentTypeCode; private Integer financialDocumentLineNumber; private Date financialDocumentAdvanceDepositDate; private String financialDocumentAdvanceDepositReferenceNumber; private String financialDocumentAdvanceDepositDescription; private KualiDecimal financialDocumentAdvanceDepositAmount; private String financialDocumentBankCode; /* NOTE * The following reference to AdvanceDepositDocument is removed, as it won't get properly populated when the document is loaded from DB, * and that causes NPE when copying the document, as well as in any other circumstance when the reference is used. * Research has been done to confirm that this reference is not currently used anywhere in KFS; and if any institution intends to use it * somehow, they can put it back, and meanwhile, uncomment the overriden method AdvanceDepositAction.copy, which populates the referenced * document properly (or even better, move the logic into AdvanceDepositAction.execute). */ //private AdvanceDepositDocument advanceDepositDocument; private Bank bank; /** * Default constructor. */ public AdvanceDepositDetail() { bank = new Bank(); } /** * Sets the bank code for a new AdvanceDepositDetail to the setup default for the Advance Deposit document. */ public void setDefaultBankCode() { Bank defaultBank = SpringContext.getBean(BankService.class).getDefaultBankByDocType(AdvanceDepositDocument.ADVANCE_DEPOSIT_DOCUMENT_TYPE_CODE); if (defaultBank != null) { this.financialDocumentBankCode = defaultBank.getBankCode(); this.bank = defaultBank; } } /** * Gets the documentNumber attribute. * * @return Returns the documentNumber */ public String getDocumentNumber() { return documentNumber; } /** * Sets the documentNumber attribute. * * @param documentNumber The documentNumber to set. */ public void setDocumentNumber(String documentNumber) { this.documentNumber = documentNumber; } /** * Gets the financialDocumentTypeCode attribute. * * @return Returns the financialDocumentTypeCode */ public String getFinancialDocumentTypeCode() { return financialDocumentTypeCode; } /** * Sets the financialDocumentTypeCode attribute. * * @param financialDocumentTypeCode The financialDocumentTypeCode to set. */ public void setFinancialDocumentTypeCode(String financialDocumentTypeCode) { this.financialDocumentTypeCode = financialDocumentTypeCode; } /** * Gets the financialDocumentLineNumber attribute. * * @return Returns the financialDocumentLineNumber */ public Integer getFinancialDocumentLineNumber() { return financialDocumentLineNumber; } /** * Sets the financialDocumentLineNumber attribute. * * @param financialDocumentLineNumber The financialDocumentLineNumber to set. */ public void setFinancialDocumentLineNumber(Integer financialDocumentLineNumber) { this.financialDocumentLineNumber = financialDocumentLineNumber; } /** * Gets the financialDocumentAdvanceDepositDate attribute. * * @return Returns the financialDocumentAdvanceDepositDate */ public Date getFinancialDocumentAdvanceDepositDate() { return financialDocumentAdvanceDepositDate; } /** * Sets the financialDocumentAdvanceDepositDate attribute. * * @param financialDocumentAdvanceDepositDate The financialDocumentAdvanceDepositDate to set. */ public void setFinancialDocumentAdvanceDepositDate(Date financialDocumentAdvanceDepositDate) { this.financialDocumentAdvanceDepositDate = financialDocumentAdvanceDepositDate; } /** * Gets the financialDocumentAdvanceDepositReferenceNumber attribute. * * @return Returns the financialDocumentAdvanceDepositReferenceNumber */ public String getFinancialDocumentAdvanceDepositReferenceNumber() { return financialDocumentAdvanceDepositReferenceNumber; } /** * Sets the financialDocumentAdvanceDepositReferenceNumber attribute. * * @param financialDocumentAdvanceDepositReferenceNumber The financialDocumentAdvanceDepositReferenceNumber to set. */ public void setFinancialDocumentAdvanceDepositReferenceNumber(String financialDocumentAdvanceDepositReferenceNumber) { this.financialDocumentAdvanceDepositReferenceNumber = financialDocumentAdvanceDepositReferenceNumber; } /** * Gets the financialDocumentAdvanceDepositDescription attribute. * * @return Returns the financialDocumentAdvanceDepositDescription */ public String getFinancialDocumentAdvanceDepositDescription() { return financialDocumentAdvanceDepositDescription; } /** * Sets the financialDocumentAdvanceDepositDescription attribute. * * @param financialDocumentAdvanceDepositDescription The financialDocumentAdvanceDepositDescription to set. */ public void setFinancialDocumentAdvanceDepositDescription(String financialDocumentAdvanceDepositDescription) { this.financialDocumentAdvanceDepositDescription = financialDocumentAdvanceDepositDescription; } /** * Gets the financialDocumentAdvanceDepositAmount attribute. * * @return Returns the financialDocumentAdvanceDepositAmount */ public KualiDecimal getFinancialDocumentAdvanceDepositAmount() { return financialDocumentAdvanceDepositAmount; } /** * Sets the financialDocumentAdvanceDepositAmount attribute. * * @param financialDocumentAdvanceDepositAmount The financialDocumentAdvanceDepositAmount to set. */ public void setFinancialDocumentAdvanceDepositAmount(KualiDecimal financialDocumentAdvanceDepositAmount) { this.financialDocumentAdvanceDepositAmount = financialDocumentAdvanceDepositAmount; } /** * Gets the financialDocumentBankCode attribute. * * @return Returns the financialDocumentBankCode */ public String getFinancialDocumentBankCode() { return financialDocumentBankCode; } /** * Sets the financialDocumentBankCode attribute. * * @param financialDocumentBankCode The financialDocumentBankCode to set. */ public void setFinancialDocumentBankCode(String financialDocumentBankCode) { this.financialDocumentBankCode = financialDocumentBankCode; } /* NOTE * The following reference to AdvanceDepositDocument is removed, as it won't get properly populated when the document is loaded from DB, * and that causes NPE when copying the document, as well as in any other circumstance when the reference is used. * Research has been done to confirm that this reference is not currently used anywhere in KFS; and if any institution intends to use it * somehow, they can put it back, and meanwhile, uncomment the overriden method AdvanceDepositAction.copy, which populates the referenced * document properly (or even better, move the logic into AdvanceDepositAction.execute). */ /** * @return AdvanceDepositDocument * public AdvanceDepositDocument getAdvanceDepositDocument() { return advanceDepositDocument; } /** * @param advanceDepositDocument * public void setAdvanceDepositDocument(AdvanceDepositDocument advanceDepositDocument) { this.advanceDepositDocument = advanceDepositDocument; } */ /** * @return Bank */ public Bank getBank() { return bank; } /** * @param bank */ public void setBank(Bank bank) { this.bank = bank; } /** * @see org.kuali.rice.krad.bo.BusinessObjectBase#toStringMapper() */ protected LinkedHashMap toStringMapper_RICE20_REFACTORME() { LinkedHashMap m = new LinkedHashMap(); m.put(KFSPropertyConstants.DOCUMENT_NUMBER, this.documentNumber); m.put("financialDocumentTypeCode", this.financialDocumentTypeCode); if (this.financialDocumentLineNumber != null) { m.put("financialDocumentLineNumber", this.financialDocumentLineNumber.toString()); } return m; } }