001/* 002 * Copyright 2009 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.module.purap.document.validation.impl; 017 018import org.apache.commons.lang.StringUtils; 019import org.kuali.ole.module.purap.PurapConstants; 020import org.kuali.ole.module.purap.PurapKeyConstants; 021import org.kuali.ole.module.purap.PurapPropertyConstants; 022import org.kuali.ole.module.purap.businessobject.PurApItem; 023import org.kuali.ole.module.purap.document.PurchasingAccountsPayableDocument; 024import org.kuali.ole.sys.context.SpringContext; 025import org.kuali.ole.sys.document.validation.GenericValidation; 026import org.kuali.ole.sys.document.validation.event.AttributedDocumentEvent; 027import org.kuali.rice.core.api.parameter.ParameterEvaluatorService; 028import org.kuali.rice.core.api.util.type.KualiDecimal; 029import org.kuali.rice.coreservice.framework.parameter.ParameterService; 030import org.kuali.rice.kns.service.DataDictionaryService; 031import org.kuali.rice.krad.util.GlobalVariables; 032import org.kuali.rice.krad.util.ObjectUtils; 033 034public class PurchasingAccountsPayableBelowTheLineValuesValidation extends GenericValidation { 035 036 private DataDictionaryService dataDictionaryService; 037 private ParameterService parameterService; 038 private PurApItem itemForValidation; 039 040 /** 041 * Performs validations for below the line items. If the unit price is zero, and the system parameter indicates that the item 042 * should not allow zero, then the validation fails. If the unit price is positive and the system parameter indicates that the 043 * item should not allow positive values, then the validation fails. If the unit price is negative and the system parameter 044 * indicates that the item should not allow negative values, then the validation fails. If the unit price is entered and is not 045 * zero and the item description is empty and the system parameter indicates that the item requires user to enter description, 046 * then the validation fails. 047 */ 048 public boolean validate(AttributedDocumentEvent event) { 049 boolean valid = true; 050 PurchasingAccountsPayableDocument purapDocument = (PurchasingAccountsPayableDocument) event.getDocument(); 051 String documentType = dataDictionaryService.getDocumentTypeNameByClass(purapDocument.getClass()); 052 053 try { 054 if (ObjectUtils.isNotNull(itemForValidation.getItemUnitPrice()) && (new KualiDecimal(itemForValidation.getItemUnitPrice())).isZero()) { 055 if (parameterService.parameterExists(Class.forName(PurapConstants.PURAP_DETAIL_TYPE_CODE_MAP.get(documentType)), PurapConstants.ITEM_ALLOWS_ZERO) && !/*REFACTORME*/SpringContext.getBean(ParameterEvaluatorService.class).getParameterEvaluator(Class.forName(PurapConstants.PURAP_DETAIL_TYPE_CODE_MAP.get(documentType)), PurapConstants.ITEM_ALLOWS_ZERO, itemForValidation.getItemTypeCode()).evaluationSucceeds()) { 056 valid = false; 057 GlobalVariables.getMessageMap().putError(PurapPropertyConstants.ITEM_UNIT_PRICE, PurapKeyConstants.ERROR_ITEM_BELOW_THE_LINE, itemForValidation.getItemType().getItemTypeDescription(), "zero"); 058 } 059 } else if (ObjectUtils.isNotNull(itemForValidation.getItemUnitPrice()) && (new KualiDecimal(itemForValidation.getItemUnitPrice())).isPositive()) { 060 if (parameterService.parameterExists(Class.forName(PurapConstants.PURAP_DETAIL_TYPE_CODE_MAP.get(documentType)), PurapConstants.ITEM_ALLOWS_POSITIVE) && !/*REFACTORME*/SpringContext.getBean(ParameterEvaluatorService.class).getParameterEvaluator(Class.forName(PurapConstants.PURAP_DETAIL_TYPE_CODE_MAP.get(documentType)), PurapConstants.ITEM_ALLOWS_POSITIVE, itemForValidation.getItemTypeCode()).evaluationSucceeds()) { 061 valid = false; 062 GlobalVariables.getMessageMap().putError(PurapPropertyConstants.ITEM_UNIT_PRICE, PurapKeyConstants.ERROR_ITEM_BELOW_THE_LINE, itemForValidation.getItemType().getItemTypeDescription(), "positive"); 063 } 064 } 065 // commented negative validation 066 /* else if (ObjectUtils.isNotNull(itemForValidation.getItemUnitPrice()) && (new KualiDecimal(itemForValidation.getItemUnitPrice())).isNegative()) { 067 if (parameterService.parameterExists(Class.forName(PurapConstants.PURAP_DETAIL_TYPE_CODE_MAP.get(documentType)), PurapConstants.ITEM_ALLOWS_NEGATIVE) && !*//*REFACTORME*//*SpringContext.getBean(ParameterEvaluatorService.class).getParameterEvaluator(Class.forName(PurapConstants.PURAP_DETAIL_TYPE_CODE_MAP.get(documentType)), PurapConstants.ITEM_ALLOWS_NEGATIVE, itemForValidation.getItemTypeCode()).evaluationSucceeds()) { 068 valid = false; 069 GlobalVariables.getMessageMap().putError(PurapPropertyConstants.ITEM_UNIT_PRICE, PurapKeyConstants.ERROR_ITEM_BELOW_THE_LINE, itemForValidation.getItemType().getItemTypeDescription(), "negative"); 070 } 071 }*/ 072 if (ObjectUtils.isNotNull(itemForValidation.getItemUnitPrice()) && (new KualiDecimal(itemForValidation.getItemUnitPrice())).isNonZero() && StringUtils.isEmpty(itemForValidation.getItemDescription())) { 073 if (parameterService.parameterExists(Class.forName(PurapConstants.PURAP_DETAIL_TYPE_CODE_MAP.get(documentType)), PurapConstants.ITEM_REQUIRES_USER_ENTERED_DESCRIPTION) && /*REFACTORME*/SpringContext.getBean(ParameterEvaluatorService.class).getParameterEvaluator(Class.forName(PurapConstants.PURAP_DETAIL_TYPE_CODE_MAP.get(documentType)), PurapConstants.ITEM_REQUIRES_USER_ENTERED_DESCRIPTION, itemForValidation.getItemTypeCode()).evaluationSucceeds()) { 074 valid = false; 075 GlobalVariables.getMessageMap().putError(PurapPropertyConstants.ITEM_DESCRIPTION, PurapKeyConstants.ERROR_ITEM_BELOW_THE_LINE, "The item description of " + itemForValidation.getItemType().getItemTypeDescription(), "empty"); 076 } 077 } 078 079 //now check total amount, if positive check if they should really be negative 080 if (ObjectUtils.isNotNull(itemForValidation.getTotalAmount()) && itemForValidation.getTotalAmount().isPositive()) { 081 if (parameterService.parameterExists(Class.forName(PurapConstants.PURAP_DETAIL_TYPE_CODE_MAP.get(documentType)), PurapConstants.ITEM_ALLOWS_POSITIVE) && !/*REFACTORME*/SpringContext.getBean(ParameterEvaluatorService.class).getParameterEvaluator(Class.forName(PurapConstants.PURAP_DETAIL_TYPE_CODE_MAP.get(documentType)), PurapConstants.ITEM_ALLOWS_POSITIVE, itemForValidation.getItemTypeCode()).evaluationSucceeds()) { 082 valid = false; 083 GlobalVariables.getMessageMap().putError(PurapPropertyConstants.TOTAL_AMOUNT, PurapKeyConstants.ERROR_ITEM_BELOW_THE_LINE, itemForValidation.getItemType().getItemTypeDescription() + " Total Amount", "positive"); 084 } 085 } 086 } catch (ClassNotFoundException e) { 087 throw new RuntimeException("The valideBelowTheLineValues of PurchasingAccountsPayableDocumentRuleBase was unable to resolve a document type class: " + PurapConstants.PURAP_DETAIL_TYPE_CODE_MAP.get(documentType), e); 088 } 089 090 return valid; 091 } 092 093 public DataDictionaryService getDataDictionaryService() { 094 return dataDictionaryService; 095 } 096 097 public void setDataDictionaryService(DataDictionaryService dataDictionaryService) { 098 this.dataDictionaryService = dataDictionaryService; 099 } 100 101 public ParameterService getParameterService() { 102 return parameterService; 103 } 104 105 public void setParameterService(ParameterService parameterService) { 106 this.parameterService = parameterService; 107 } 108 109 public PurApItem getItemForValidation() { 110 return itemForValidation; 111 } 112 113 public void setItemForValidation(PurApItem itemForValidation) { 114 this.itemForValidation = itemForValidation; 115 } 116 117}