001/*
002 * Copyright 2006 The Kuali Foundation
003 *
004 * Licensed under the Educational Community License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 * http://www.opensource.org/licenses/ecl2.php
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016package org.kuali.ole.coa.document.validation.impl;
017
018import org.kuali.ole.coa.businessobject.Chart;
019import org.kuali.ole.coa.service.ChartService;
020import org.kuali.ole.sys.OLEKeyConstants;
021import org.kuali.ole.sys.context.SpringContext;
022import org.kuali.ole.sys.service.FinancialSystemUserService;
023import org.kuali.rice.kim.api.identity.Person;
024import org.kuali.rice.kim.api.identity.PersonService;
025import org.kuali.rice.kns.document.MaintenanceDocument;
026import org.kuali.rice.kns.maintenance.rules.MaintenanceDocumentRuleBase;
027
028/**
029 * Business rule(s) applicable to {@link ChartMaintenance} documents.
030 */
031public class ChartRule extends MaintenanceDocumentRuleBase {
032
033    /**
034     * This method calls specific rules for routing on Chart Maintenance documents Specifically it checks to make sure that
035     * reportsToChart exists if it is not the same code as the newly created Chart and it checks to make sure that the chart manager
036     * is valid for the Chart Module
037     *
038     * @see org.kuali.rice.kns.maintenance.rules.MaintenanceDocumentRuleBase#processCustomRouteDocumentBusinessRules(org.kuali.rice.kns.document.MaintenanceDocument)
039     * @return false if reports to chart code doesn't exist or user is invalid for this module
040     */
041    @Override
042    protected boolean processCustomRouteDocumentBusinessRules(MaintenanceDocument document) {
043
044        boolean result = true;
045
046        Chart chart = (Chart) document.getNewMaintainableObject().getBusinessObject();
047        ChartService chartService = SpringContext.getBean(ChartService.class);
048        PersonService personService = SpringContext.getBean(PersonService.class);
049
050
051        String chartCode = chart.getChartOfAccountsCode();
052
053        String reportsToChartCode = chart.getReportsToChartOfAccountsCode();
054
055        if (chartCode != null && !chartCode.equals(reportsToChartCode)) { // if not equal to this newly created chart, then must
056                                                                            // exist
057            Chart reportsToChart = chartService.getByPrimaryId(reportsToChartCode);
058            if (reportsToChart == null) {
059                result = false;
060                putFieldError("reportsToChartOfAccountsCode", OLEKeyConstants.ERROR_DOCUMENT_CHART_REPORTS_TO_CHART_MUST_EXIST);
061            }
062        }
063
064        Person chartManager = personService.getPerson(chart.getFinCoaManagerPrincipalId());
065        if ( chartManager == null ) {
066            result = false;
067            putFieldError("finCoaManagerUniversal.principalName", OLEKeyConstants.ERROR_DOCUMENT_CHART_MANAGER_MUST_EXIST);
068        }
069
070        if (chartManager != null && !SpringContext.getBean(FinancialSystemUserService.class).isActiveFinancialSystemUser(chartManager)) {
071            result = false;
072            putFieldError("finCoaManagerUniversal.principalName", OLEKeyConstants.ERROR_DOCUMENT_CHART_MANAGER_MUST_BE_KUALI_USER);
073        }
074
075
076        return result;
077
078    }
079
080}
081