/* * 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.sys; import org.kuali.kfs.fp.businessobject.InternalBillingItem; import org.kuali.rice.core.api.util.type.KualiDecimal; import org.kuali.rice.kew.api.exception.WorkflowException; import org.kuali.rice.krad.bo.DocumentHeader; import org.kuali.rice.krad.document.Document; import org.kuali.rice.krad.service.DocumentService; /** * DocumentTestUtils */ public class DocumentTestUtils { /** * @param quantity * @param stockDescription * @param stockNumber * @param unitAmount * @param unitOfMeasureCode * @return new InternalBillingItem initialized with the given values */ public static InternalBillingItem createBillingItem(Integer quantity, String stockDescription, String stockNumber, Double unitAmount, String unitOfMeasureCode) { InternalBillingItem item = new InternalBillingItem(); item.setItemQuantity(quantity); // item.setItemServiceDate( timestamp ); item.setItemStockDescription(stockDescription); item.setItemStockNumber(stockNumber); item.setItemUnitAmount(new KualiDecimal(unitAmount.toString())); item.setUnitOfMeasureCode(unitOfMeasureCode); return item; } public static <D extends Document> D createDocument(DocumentService documentService, Class<D> docmentClass) throws WorkflowException { D document = (D) documentService.getNewDocument(docmentClass); document.getDocumentHeader().setExplanation("unit test created document"); DocumentHeader documentHeader = document.getDocumentHeader(); documentHeader.setDocumentDescription("unit test created document"); return document; } }