001/* 002 * Copyright 2008 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.fp.document.validation.impl; 017 018import org.kuali.ole.sys.OLEConstants; 019import org.kuali.ole.sys.OLEKeyConstants; 020import org.kuali.ole.sys.businessobject.AccountingLine; 021import org.kuali.ole.sys.document.validation.GenericValidation; 022import org.kuali.ole.sys.document.validation.event.AttributedDocumentEvent; 023import org.kuali.rice.core.api.util.type.KualiDecimal; 024import org.kuali.rice.krad.util.GlobalVariables; 025 026/** 027 * Validation that validates the amounts on accounting lines for the Cash Receipt family of documents. 028 */ 029public class CashReceiptFamilyAccountingLineAmountValidation extends GenericValidation { 030 private AccountingLine accountingLineForValidation; 031 032 /** 033 * Cash Receipt documents allow both positive and negative values, so we only need to check for zero amounts. 034 * @see org.kuali.ole.sys.document.validation.Validation#validate(org.kuali.ole.sys.document.validation.event.AttributedDocumentEvent) 035 */ 036 public boolean validate(AttributedDocumentEvent event) { 037 KualiDecimal amount = getAccountingLineForValidation().getAmount(); 038 039 if (KualiDecimal.ZERO.compareTo(amount) == 0) { // amount == 0 040 GlobalVariables.getMessageMap().putError(OLEConstants.AMOUNT_PROPERTY_NAME, OLEKeyConstants.ERROR_ZERO_AMOUNT, "an accounting line"); 041 return false; 042 } 043 044 return true; 045 } 046 047 /** 048 * Gets the accountingLineForValidation attribute. 049 * @return Returns the accountingLineForValidation. 050 */ 051 public AccountingLine getAccountingLineForValidation() { 052 return accountingLineForValidation; 053 } 054 055 /** 056 * Sets the accountingLineForValidation attribute value. 057 * @param accountingLineForValidation The accountingLineForValidation to set. 058 */ 059 public void setAccountingLineForValidation(AccountingLine accountingLineForValidation) { 060 this.accountingLineForValidation = accountingLineForValidation; 061 } 062}