/* * 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.module.purap.document.validation.impl; import java.util.HashMap; import java.util.Map; import org.kuali.kfs.module.purap.PurapKeyConstants; import org.kuali.kfs.module.purap.businessobject.VendorStipulation; import org.kuali.rice.kns.document.MaintenanceDocument; import org.kuali.rice.kns.maintenance.rules.MaintenanceDocumentRuleBase; import org.kuali.rice.krad.service.BusinessObjectService; /** * Business rule(s) applicable to Purchase Order Contract Language maintenance document. */ public class VendorStipulationRule extends MaintenanceDocumentRuleBase { private VendorStipulation newStipulation; private VendorStipulation oldStipulation; private BusinessObjectService boService; /** * @see org.kuali.rice.kns.maintenance.rules.MaintenanceDocumentRuleBase#setupConvenienceObjects() */ @Override public void setupConvenienceObjects() { // setup newDelegateChange convenience objects, make sure all possible sub-objects are populated newStipulation = (VendorStipulation) super.getNewBo(); oldStipulation = (VendorStipulation) super.getOldBo(); boService = (BusinessObjectService) super.getBoService(); super.setupConvenienceObjects(); } /** * @see org.kuali.rice.kns.maintenance.rules.MaintenanceDocumentRuleBase#processCustomApproveDocumentBusinessRules(org.kuali.rice.kns.document.MaintenanceDocument) */ protected boolean processCustomApproveDocumentBusinessRules(MaintenanceDocument document) { LOG.info("processCustomApproveDocumentBusinessRules called"); this.setupConvenienceObjects(); boolean success = this.checkForDuplicate(); return success && super.processCustomApproveDocumentBusinessRules(document); } /** * @see org.kuali.rice.kns.maintenance.rules.MaintenanceDocumentRuleBase#processCustomRouteDocumentBusinessRules(org.kuali.rice.kns.document.MaintenanceDocument) */ protected boolean processCustomRouteDocumentBusinessRules(MaintenanceDocument document) { LOG.info("processCustomRouteDocumentBusinessRules called"); this.setupConvenienceObjects(); boolean success = this.checkForDuplicate(); return success && super.processCustomRouteDocumentBusinessRules(document); } /** * @see org.kuali.rice.kns.maintenance.rules.MaintenanceDocumentRuleBase#processCustomSaveDocumentBusinessRules(org.kuali.rice.kns.document.MaintenanceDocument) */ protected boolean processCustomSaveDocumentBusinessRules(MaintenanceDocument document) { LOG.info("processCustomSaveDocumentBusinessRules called"); this.setupConvenienceObjects(); boolean success = this.checkForDuplicate(); return success && super.processCustomSaveDocumentBusinessRules(document); } /** * Check to see if data duplicates existing data. * * @return boolean indicating if validation succeeded. */ protected boolean checkForDuplicate() { LOG.info("checkForDuplicate called"); boolean success = true; Map fieldValues = new HashMap(); if (oldStipulation.getVendorStipulationIdentifier() != null && newStipulation.getVendorStipulationIdentifier() != null && oldStipulation.getVendorStipulationIdentifier().equals(newStipulation.getVendorStipulationIdentifier()) && oldStipulation.getVendorStipulationName().equals(newStipulation.getVendorStipulationName())){ return true; }else{ fieldValues.put("vendorStipulationName", newStipulation.getVendorStipulationName()); if (boService.countMatching(newStipulation.getClass(), fieldValues) != 0) { success &= false; putGlobalError(PurapKeyConstants.PURAP_GENERAL_POTENTIAL_DUPLICATE); } } return success; } }