/* * 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 java.util.Iterator; import java.util.List; import org.kuali.kfs.coa.businessobject.AccountingPeriod; import org.kuali.kfs.sys.KFSKeyConstants; import org.kuali.kfs.sys.businessobject.SystemOptions; import org.kuali.kfs.sys.context.SpringContext; import org.kuali.rice.kns.document.MaintenanceDocument; import org.kuali.rice.kns.maintenance.rules.MaintenanceDocumentRuleBase; import org.kuali.rice.krad.service.KeyValuesService; /** * Business rule(s) applicable to AccountingPeriodMaintence documents. */ public class AccountingPeriodRule extends MaintenanceDocumentRuleBase { protected static org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(AccountingPeriodRule.class); protected static final String GENERAL_FUND_CD = "GF"; protected static final String RESTRICTED_FUND_CD = "RF"; protected static final String ENDOWMENT_FUND_CD = "EN"; protected static final String PLANT_FUND_CD = "PF"; protected static final String RESTRICTED_CD_RESTRICTED = "R"; protected static final String RESTRICTED_CD_UNRESTRICTED = "U"; protected static final String RESTRICTED_CD_TEMPORARILY_RESTRICTED = "T"; protected static final String SUB_FUND_GROUP_MEDICAL_PRACTICE_FUNDS = "MPRACT"; protected static final String BUDGET_RECORDING_LEVEL_MIXED = "M"; protected AccountingPeriod oldAccountingPeriod; protected AccountingPeriod newAccountingPeriod; public AccountingPeriodRule() { } /** * 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 */ public void setupConvenienceObjects() { // setup oldAccountingPeriod convenience objects, make sure all possible sub-objects are populated oldAccountingPeriod = (AccountingPeriod) super.getOldBo(); // setup newAccountingPeriod convenience objects, make sure all possible sub-objects are populated newAccountingPeriod = (AccountingPeriod) super.getNewBo(); } /** * This method checks the following rules: calls processCustomRouteDocumentBusinessRules but does not fail if any of them fail * (this only happens on routing) * * @see org.kuali.rice.kns.maintenance.rules.MaintenanceDocumentRuleBase#processCustomSaveDocumentBusinessRules(org.kuali.rice.kns.document.MaintenanceDocument) */ protected boolean processCustomSaveDocumentBusinessRules(MaintenanceDocument document) { LOG.info("processCustomSaveDocumentBusinessRules called"); // call the route rules to report all of the messages, but ignore the result processCustomRouteDocumentBusinessRules(document); // Save always succeeds, even if there are business rule failures return true; } /** * This method checks to see if the fiscal year for any of {@link Options} is the same as the {@link AccountingPeriod}'s fiscal * year * * @see org.kuali.rice.kns.maintenance.rules.MaintenanceDocumentRuleBase#processCustomRouteDocumentBusinessRules(org.kuali.rice.kns.document.MaintenanceDocument) */ protected boolean processCustomRouteDocumentBusinessRules(MaintenanceDocument document) { LOG.info("processCustomRouteDocumentBusinessRules called"); setupConvenienceObjects(); Boolean foundYear = false; KeyValuesService boService = SpringContext.getBean(KeyValuesService.class); List optionList = (List) boService.findAll(SystemOptions.class); if ( newAccountingPeriod.getUniversityFiscalYear() != null) { for (Iterator iter = optionList.iterator(); iter.hasNext();) { SystemOptions options = (SystemOptions) iter.next(); if (options.getUniversityFiscalYear().compareTo(newAccountingPeriod.getUniversityFiscalYear()) == 0) { foundYear = true; break; } } } if (!foundYear) { // display an error putFieldError("universityFiscalYear", KFSKeyConstants.ERROR_DOCUMENT_FISCAL_PERIOD_YEAR_DOESNT_EXIST); } return foundYear; } }