001    /*
002     * Copyright 2011 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     */
016    package org.kuali.kfs.coa.document.validation.impl;
017    
018    import java.util.List;
019    
020    import org.kuali.kfs.coa.businessobject.ObjectCodeGlobal;
021    import org.kuali.kfs.coa.businessobject.ObjectCodeGlobalDetail;
022    import org.kuali.kfs.sys.context.SpringContext;
023    import org.kuali.rice.kns.document.MaintenanceDocument;
024    import org.kuali.rice.kns.service.MaintenanceDocumentDictionaryService;
025    
026    /**
027     * PreRules checks for the {@link ObjectCodeGlobal} that needs to occur while still in the Struts processing. This includes defaults
028     */
029    public class ObjectCodeGlobalPreRules extends MaintenancePreRulesBase {
030    
031    
032        /**
033         * Updates the university fiscal year when it is not already set.
034         * 
035         * @see org.kuali.kfs.coa.document.validation.impl.MaintenancePreRulesBase#doCustomPreRules(org.kuali.rice.kns.document.MaintenanceDocument)
036         */
037        protected boolean doCustomPreRules(MaintenanceDocument maintenanceDocument) {
038            ObjectCodeGlobal bo = (ObjectCodeGlobal) maintenanceDocument.getNewMaintainableObject().getBusinessObject();
039    
040            List<ObjectCodeGlobalDetail> details = bo.getObjectCodeGlobalDetails();
041    
042            for (ObjectCodeGlobalDetail detail : details) {
043                if (detail.getUniversityFiscalYear() == null) {
044                    if (LOG.isDebugEnabled()) {
045                        LOG.debug("setting fiscal year on ObjectCodeGlobalDetail: " + detail);
046                    }
047                    detail.setUniversityFiscalYear(new Integer(SpringContext.getBean(MaintenanceDocumentDictionaryService.class).getCollectionFieldDefaultValue(maintenanceDocument.getDocumentHeader().getWorkflowDocument().getDocumentType(), "objectCodeGlobalDetails", "universityFiscalYear")));
048                }
049            }
050    
051            return true;
052        }
053    }