/* * 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.coa.document.validation.impl; import org.apache.commons.lang.StringUtils; import org.kuali.kfs.coa.businessobject.Account; import org.kuali.kfs.coa.businessobject.IndirectCostRecoveryExclusionAccount; import org.kuali.rice.kns.document.MaintenanceDocument; import org.kuali.rice.krad.util.ObjectUtils; /** * PreRules checks for the {@link IndirectCostRecoveryExclusionAccount} that needs to occur while still in the Struts processing. * This checks for continuation accounts */ public class IndirectCostRecoveryExclusionAccountPreRules extends MaintenancePreRulesBase { protected IndirectCostRecoveryExclusionAccount indirectCostRecoveryExclusionAccount; public IndirectCostRecoveryExclusionAccountPreRules() { } /** * This sets up the convenience objects and calls * {@link IndirectCostRecoveryExclusionAccountPreRules#checkForContinuationAccounts()} * * @see org.kuali.kfs.coa.document.validation.impl.MaintenancePreRulesBase#doCustomPreRules(org.kuali.rice.kns.document.MaintenanceDocument) */ protected boolean doCustomPreRules(MaintenanceDocument document) { setupConvenienceObjects(document); checkForContinuationAccounts(); // run this first to avoid side effects LOG.debug("done with continuation account, proceeeding with remaining pre rules"); return true; } /** * This method checks for continuation accounts and presents the user with a question regarding their use on this account. */ protected void checkForContinuationAccounts() { LOG.debug("entering checkForContinuationAccounts()"); if (StringUtils.isNotBlank(indirectCostRecoveryExclusionAccount.getAccountNumber())) { Account account = checkForContinuationAccount("Account Number", indirectCostRecoveryExclusionAccount.getChartOfAccountsCode(), indirectCostRecoveryExclusionAccount.getAccountNumber(), ""); if (ObjectUtils.isNotNull(account)) { // override old user inputs indirectCostRecoveryExclusionAccount.setAccountNumber(account.getAccountNumber()); indirectCostRecoveryExclusionAccount.setChartOfAccountsCode(account.getChartOfAccountsCode()); } } } /** * This method sets the convenience objects like newAccount and oldAccount, so you have short and easy handles to the new and * old objects contained in the maintenance document. It also calls the BusinessObjectBase.refresh(), which will attempt to load * all sub-objects from the DB by their primary keys, if available. * * @param document - the maintenanceDocument being evaluated */ protected void setupConvenienceObjects(MaintenanceDocument document) { // setup newAccount convenience objects, make sure all possible sub-objects are populated indirectCostRecoveryExclusionAccount = (IndirectCostRecoveryExclusionAccount) document.getNewMaintainableObject().getBusinessObject(); } }