/* * 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.List; import org.kuali.kfs.module.purap.PurapKeyConstants; import org.kuali.kfs.module.purap.PurapPropertyConstants; import org.kuali.kfs.module.purap.businessobject.PurchaseOrderItem; import org.kuali.kfs.module.purap.document.PurchaseOrderDocument; import org.kuali.kfs.module.purap.document.VendorCreditMemoDocument; import org.kuali.kfs.module.purap.document.service.CreditMemoService; import org.kuali.kfs.module.purap.document.service.PurchaseOrderService; import org.kuali.kfs.sys.KFSPropertyConstants; import org.kuali.kfs.sys.document.validation.GenericValidation; import org.kuali.kfs.sys.document.validation.event.AttributedDocumentEvent; import org.kuali.rice.krad.util.GlobalVariables; public class VendorCreditMemoPurchaseOrderForInvoicedItemsValidation extends GenericValidation { private PurchaseOrderService purchaseOrderService; private CreditMemoService creditMemoService; /** * Verifies the purchase order for the credit memo has at least one invoiced item. If no invoiced items are found, a credit memo * cannot be processed against the document. */ public boolean validate(AttributedDocumentEvent event) { boolean hasInvoicedItems = true; VendorCreditMemoDocument cmDocument = (VendorCreditMemoDocument) event.getDocument(); if(cmDocument.isSourceDocumentPurchaseOrder()){ GlobalVariables.getMessageMap().clearErrorPath(); GlobalVariables.getMessageMap().addToErrorPath(KFSPropertyConstants.DOCUMENT); PurchaseOrderDocument poDocument = purchaseOrderService.getCurrentPurchaseOrder(cmDocument.getPurchaseOrderIdentifier()); List<PurchaseOrderItem> invoicedItems = creditMemoService.getPOInvoicedItems(poDocument); if (invoicedItems == null || invoicedItems.isEmpty()) { GlobalVariables.getMessageMap().putError(PurapPropertyConstants.PURCHASE_ORDER_IDENTIFIER, PurapKeyConstants.ERROR_CREDIT_MEMO_PURCAHSE_ORDER_NOITEMS); hasInvoicedItems = false; } GlobalVariables.getMessageMap().clearErrorPath(); } return hasInvoicedItems; } public PurchaseOrderService getPurchaseOrderService() { return purchaseOrderService; } public void setPurchaseOrderService(PurchaseOrderService purchaseOrderService) { this.purchaseOrderService = purchaseOrderService; } public CreditMemoService getCreditMemoService() { return creditMemoService; } public void setCreditMemoService(CreditMemoService creditMemoService) { this.creditMemoService = creditMemoService; } }